<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>ASP.NET AJAX Discussion and Suggestions</title><link>http://forums.asp.net/1007.aspx</link><description>This forum is the place for ASP.NET AJAX 'getting started' questions, general questions that don't fit in one of the other forums about AJAX </description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: Atlas causing javascript conflicts?</title><link>http://forums.asp.net/thread/1349131.aspx</link><pubDate>Sun, 23 Jul 2006 21:54:55 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1349131</guid><dc:creator>Luis Abreu</dc:creator><author>Luis Abreu</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1349131.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1349131</wfw:commentRss><description>&lt;p&gt;hello guys,.&lt;/p&gt;
&lt;p&gt;the javascript problem is related with the fact that currently the head section content (ie, everything that's placed inside the &amp;lt;head&amp;gt; element) is packaged on the xml response that is sent from the server during a partial postback (that is, if the head has the runat="server" attribute applied to it). unfortunatelly, this content isn't escaped by using a cdata section. so what happens is that wehn you put invalid xml, the xml error will be silently handled by the client side and you won't get any update (though i think that now you 'll get an error message that says unknown error).&lt;/p&gt;
&lt;p&gt;if you look at your script block, you'll see a for cicle where you're using a &amp;lt; operator. this is a forbidden xml char and you must escape it so that you don't get an error. another option is removing the script from the head element or putting it in an external file.&lt;/p&gt;</description></item><item><title>Re: Atlas causing javascript conflicts?</title><link>http://forums.asp.net/thread/1348531.aspx</link><pubDate>Sat, 22 Jul 2006 04:16:50 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1348531</guid><dc:creator>yendi</dc:creator><author>yendi</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1348531.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1348531</wfw:commentRss><description>&lt;font face="Verdana" size="2"&gt;Yes, I'm having the same problem. &lt;/font&gt;&lt;font face="Verdana" size="2"&gt;I'm trying to use this js: http://www.huddletogether.com/projects/lightbox2/&amp;nbsp; &lt;br /&gt;without ANY luck.&lt;br /&gt;&lt;/font&gt;&lt;font face="Verdana" size="2"&gt;&lt;br /&gt;Is there any way to accomplish running a javascript script inside an Update Panel?&lt;br /&gt;&lt;br /&gt;Help is really appreciated. I really need this to work!&lt;br /&gt;&lt;br /&gt;THANKS!&lt;br /&gt;&lt;/font&gt;</description></item><item><title>Re: Atlas causing javascript conflicts?</title><link>http://forums.asp.net/thread/1318976.aspx</link><pubDate>Tue, 20 Jun 2006 03:56:47 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1318976</guid><dc:creator>singcall</dc:creator><author>singcall</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1318976.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1318976</wfw:commentRss><description>&lt;p&gt;I also have similar problems. I have javascripts inside the master page and obviously it conflicts with Atlas.&lt;/p&gt;
&lt;p&gt;But as Atlas is too powerful I have finally test every pieces of javascripts and throw away those that have conflicts! &lt;/p&gt;
&lt;p&gt;For example, I need to throw away the following code which is used to check/uncheck all checkboxes in the Gridview. My opinion is that there are often conflicts for new techs and I am already very satisfied with what I can get for now as lots of people are already putting efforts for this and it's totally free.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;pre class=coloredcode&gt;&lt;span class=cmt&gt;//SelectAllCheckboxes: function to select all the checkboxes in the GridView&lt;/span&gt;

function SelectAllCheckboxes(spanChk){

&lt;span class=cmt&gt;// Added as ASPX uses SPAN for checkbox&lt;/span&gt;

var oItem = spanChk.children;

var theBox= (spanChk.type==&lt;span class=st&gt;"checkbox"&lt;/span&gt;) ? 

spanChk : spanChk.children.item[0];

xState=theBox.&lt;span class=kwd&gt;checked&lt;/span&gt;;

elm=theBox.form.elements;

&lt;span class=kwd&gt;for&lt;/span&gt;(i=0;i&lt;span&gt;if(elm[i].type==&lt;span class=st&gt;"checkbox"&lt;/span&gt; &amp;amp;&amp;amp; 

elm[i].id!=theBox.id)

{ 

&lt;span class=kwd&gt;if&lt;/span&gt;(elm[i].&lt;span class=kwd&gt;checked&lt;/span&gt;!=xState)

elm[i].click();


}

}
&lt;/pre&gt;&amp;nbsp;</description></item><item><title>Re: Atlas causing javascript conflicts?</title><link>http://forums.asp.net/thread/1284343.aspx</link><pubDate>Fri, 12 May 2006 15:34:38 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1284343</guid><dc:creator>vivus</dc:creator><author>vivus</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1284343.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1284343</wfw:commentRss><description>&amp;nbsp;&lt;pre class="coloredcode"&gt;&amp;lt;&lt;span class="tag"&gt;script&lt;/span&gt;&lt;span class="attr"&gt; type=&lt;/span&gt;&lt;span class="attrv"&gt;"text/javascript"&lt;/span&gt;&amp;gt;
  /* &amp;lt;&lt;span class="tag"&gt;!CDATA[[&lt;/span&gt; */
function sayHello() {
  for(var i=0; i &amp;lt; 5; i++) {
      alert("heya i should have used the firefox javascript console =)");
  }
}
/* ]]&amp;gt; */
&amp;lt;/&lt;span class="tag"&gt;script&lt;/span&gt;&amp;gt;&lt;/pre&gt;&amp;nbsp;</description></item><item><title>Re: Atlas causing javascript conflicts?</title><link>http://forums.asp.net/thread/1270872.aspx</link><pubDate>Fri, 28 Apr 2006 11:57:19 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1270872</guid><dc:creator>JohnRock</dc:creator><author>JohnRock</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1270872.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1270872</wfw:commentRss><description>&lt;font face=Arial&gt;Still, Atlas and javascript problems... here's how to recreate.&amp;nbsp; As you can see, I added a simple javascript function that is not being called from anywhere on my page. When I comment out the javascript function, the&amp;nbsp;code mysteriously works. What gives? Any suggestions?&lt;br /&gt;&lt;br /&gt;VS 2005 version 8.0.50727.42&lt;br /&gt;.NET Framework version 2.0.50727&lt;br /&gt;Atlas&lt;br /&gt;&lt;br /&gt;&lt;/font&gt;&lt;strong&gt;&lt;br /&gt;&lt;font face=Arial size=2&gt;A simple javascript function in the&amp;nbsp;head of the html document&lt;/font&gt;&lt;br /&gt;&lt;/strong&gt;&lt;pre class=coloredcode&gt;&amp;lt;&lt;span class=tag&gt;script&lt;/span&gt;&lt;span class=attr&gt; language="javascript"&lt;/span&gt;&lt;span class=attrv&gt;&lt;/span&gt;&amp;gt;
function sayHelloAlex(){
  for(i = 0; i &amp;lt; 5; i++){
    alert('Hello Alex');
  } 
}
&amp;lt;/&lt;span class=tag&gt;script&lt;/span&gt;&amp;gt;&lt;/pre&gt;&amp;nbsp;&amp;nbsp;--------------------------------------------&lt;pre class=coloredcode&gt;&amp;lt;&lt;span class=tag&gt;atlas:ScriptManager&lt;/span&gt;&lt;span class=attr&gt; ID=&lt;/span&gt;&lt;span class=attrv&gt;"ScriptManager1"&lt;/span&gt;&lt;span class=attr&gt; runat=&lt;/span&gt;&lt;span class=attrv&gt;"server"&lt;/span&gt;&lt;span class=attr&gt; EnablePartialRendering=&lt;/span&gt;&lt;span class=attrv&gt;"True"&lt;/span&gt;&amp;gt;&amp;lt;/&lt;span class=tag&gt;atlas:ScriptManager&lt;/span&gt;&amp;gt;

&amp;lt;&lt;span class=tag&gt;atlas:UpdatePanel&lt;/span&gt;&lt;span class=attr&gt; ID=&lt;/span&gt;&lt;span class=attrv&gt;"upComments"&lt;/span&gt;&lt;span class=attr&gt; runat=&lt;/span&gt;&lt;span class=attrv&gt;"server"&lt;/span&gt;&amp;gt;
&amp;lt;&lt;span class=tag&gt;ContentTemplate&lt;/span&gt;&amp;gt;
&amp;lt;&lt;span class=tag&gt;div&lt;/span&gt;&amp;gt;
&amp;lt;&lt;span class=tag&gt;asp:Button&lt;/span&gt;&lt;span class=attr&gt; ID=&lt;/span&gt;&lt;span class=attrv&gt;"btnAddComment"&lt;/span&gt;&lt;span class=attr&gt; runat=&lt;/span&gt;&lt;span class=attrv&gt;"server"&lt;/span&gt;&lt;span class=attr&gt; Text=&lt;/span&gt;&lt;span class=attrv&gt;"Click Me!"&lt;/span&gt;&lt;span class=attr&gt; &lt;/span&gt;&lt;span class=attr&gt;OnClick=&lt;/span&gt;&lt;span class=attrv&gt;"btnAddComment_Click"&lt;/span&gt; /&amp;gt;&amp;nbsp;

&amp;lt;&lt;span class=tag&gt;asp:Label&lt;/span&gt;&lt;span class=attr&gt; ID=&lt;/span&gt;&lt;span class=attrv&gt;"Label1"&lt;/span&gt;&lt;span class=attr&gt; runat=&lt;/span&gt;&lt;span class=attrv&gt;"server"&lt;/span&gt;&lt;span class=attr&gt; Text=&lt;/span&gt;&lt;span class=attrv&gt;"Label"&lt;/span&gt;&amp;gt;&amp;lt;/&lt;span class=tag&gt;asp:Label&lt;/span&gt;&amp;gt;
&amp;lt;/&lt;span class=tag&gt;div&lt;/span&gt;&amp;gt;
&amp;lt;/&lt;span class=tag&gt;ContentTemplate&lt;/span&gt;&amp;gt; 
&amp;lt;/&lt;span class=tag&gt;atlas:UpdatePanel&lt;/span&gt;&amp;gt;
&lt;/pre&gt;&amp;nbsp;&lt;br /&gt;&amp;nbsp;&amp;nbsp;--------------------------------------------&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;font face=Arial&gt;&amp;nbsp;Code-behind:&lt;/font&gt;&lt;/strong&gt;&lt;pre class=coloredcode&gt;Protected Sub btnAddComment_Click(ByVal sender As Object, ByVal e As System.EventArgs)
    Label1.Text = "You just clicked the button"
End Sub&lt;/pre&gt;&amp;nbsp;</description></item><item><title>Re: Atlas causing javascript conflicts?</title><link>http://forums.asp.net/thread/1181818.aspx</link><pubDate>Fri, 27 Jan 2006 19:28:27 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1181818</guid><dc:creator>bleroy</dc:creator><author>bleroy</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1181818.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1181818</wfw:commentRss><description>Sorry, I can't look at their source code. Maybe you should contact the author of the library. From the documentation, it seems like they're doing a lot at load time, and when we update the page, this script does not re-run. So the updated grid did not get the initialization phase that happened on the first request. So maybe all you need to do is re-trigger that initialization phase somehow.</description></item><item><title>Re: Atlas causing javascript conflicts?</title><link>http://forums.asp.net/thread/1181103.aspx</link><pubDate>Fri, 27 Jan 2006 05:05:29 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1181103</guid><dc:creator>EricAppel</dc:creator><author>EricAppel</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1181103.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1181103</wfw:commentRss><description>I'm still having issues with my orginal situation.&amp;nbsp; The javascript file that I'm trying to use can be found at http://ericappel.net/Groupr/scripts/wz_tooltip.js&amp;nbsp; It does not make use of the prototype library or anything else that would cause a conflict as far as I can tell.&amp;nbsp; Would you be able to look at it and see if anything in it would conflict with Atlas?&amp;nbsp; Again, they co-exist fine until Atlas updates the GridView, however, after the GridView is updated the tooltips stop working.&amp;nbsp; The page source is identical before and after the update happens (According to firefox anyways).&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Eric&lt;br /&gt;</description></item><item><title>Re: Atlas causing javascript conflicts?</title><link>http://forums.asp.net/thread/1180895.aspx</link><pubDate>Fri, 27 Jan 2006 00:20:37 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1180895</guid><dc:creator>bleroy</dc:creator><author>bleroy</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1180895.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1180895</wfw:commentRss><description>&lt;p&gt;There sure is a lot of duplication of effort here but you should also know that the design decisions we have to put into Atlas are often far-reaching as there are many constraints that may not be initially visible&amp;nbsp;and that may not exist for other frameworks (like consistency with the .NET framework wherever possible, MSN using our stuff, etc.). So even if it was possible for us to stand on top of things like Prototype, it would probably not fit our needs.&lt;/p&gt;
&lt;p&gt;While it may seem a little silly to say that we can't look at the source code whereas it's plain text that's downloaded by the browser, it doesn't matter from a legal standpoint. We just can't look at it, let alone use it. No more than we can use Reflector on third party .NET libraries to look at their source code. The technical aspect of it does not matter.&lt;/p&gt;
&lt;p&gt;I hope this clarifies.&lt;/p&gt;</description></item><item><title>Re: Atlas causing javascript conflicts?</title><link>http://forums.asp.net/thread/1180880.aspx</link><pubDate>Fri, 27 Jan 2006 00:02:48 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1180880</guid><dc:creator>portman</dc:creator><author>portman</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1180880.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1180880</wfw:commentRss><description>"and we just can't look at the source code for obvious legal reasons"&lt;br /&gt;&lt;br /&gt;I agree that there is no way to maintain compatibility between two JavaScript libraries if you can't look at the source code for one of them, particularly if they both have the same intent (bringing OOP principles to JavaScript 1.5). I withdrawal my request for Atlas-Prototype compatibility.&lt;br /&gt;&lt;br /&gt;However, if it somday becomes legally permissible look through the source (http://dev.rubyonrails.org/browser/spinoffs/prototype/), then I think you'll find it possible -- maybe not a piece of cake but definitely possible -- to avoid incompatibilities. &lt;br /&gt;&lt;br /&gt;Also, I feel sorry for you gusy! I've been looking at Atlas.js and AtlasRuntime.js and all the while I thought you were modeling Prototype or Rico or X or one of those frameworks. It's a shame that there has had to be so much "recreating of the wheel". &lt;br /&gt;&lt;br /&gt;There's a compelling business case to recreate the wheel when you're dealing with licensed, compiled code. But with a JavaScript framework, your entire source is exposed. Just seems like the perfect opportunity to "stand on the shoulders of giants" instead of writing a bunch of plumbing for extending Object and Array. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description></item><item><title>Re: Atlas causing javascript conflicts?</title><link>http://forums.asp.net/thread/1180854.aspx</link><pubDate>Thu, 26 Jan 2006 23:35:08 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1180854</guid><dc:creator>bleroy</dc:creator><author>bleroy</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1180854.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1180854</wfw:commentRss><description>&lt;p&gt;How do you maintain compatibility between two libraries that essentially extend the *same* objects? Prototype is not a browser, and it's not a standard either. There is no official documentation that I could find, and we just can't look at the source code for obvious legal reasons. From some of the unofficial documentation that's floating around on the web, I can confirm that it extends the same objects that Atlas is extending, like for example Array.&lt;/p&gt;
&lt;p&gt;Asking for compatibility between Atlas and Prototype is like asking for compatibility between ASP and PHP. I don't see that happening. Sorry.&lt;/p&gt;</description></item><item><title>Re: Atlas causing javascript conflicts?</title><link>http://forums.asp.net/thread/1180827.aspx</link><pubDate>Thu, 26 Jan 2006 23:13:03 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1180827</guid><dc:creator>portman</dc:creator><author>portman</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1180827.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1180827</wfw:commentRss><description>"I don't think there's a way we can ensure the compatibility with every other library out there."&lt;br /&gt;&lt;br /&gt;That's an extremely unfair statement in response to the original question. Prototype is not just "some library", it's a very popular, well-tested, and well respected library that is the underpinning of virtually all of today's Ajax-like web sites. &lt;br /&gt;&lt;br /&gt;It a website doesn't render correctly on IE6, you can't say "Oh there is no way for me to ensure the compatibility with every single browser out there". Sure you can... you test with IE6 because it is the market leader. Prototype is the same way.&lt;br /&gt;&lt;br /&gt;I found this thread because I am researching an incompatibility between Prototype (which I use for pretty little animation effects) and ATLAS (which I use for core updatepanel kind of stuff). I think the ASP.NET and Atlas teams really need to take into account Prototype compatibility.&lt;br /&gt;</description></item><item><title>Re: Atlas causing javascript conflicts?</title><link>http://forums.asp.net/thread/1180636.aspx</link><pubDate>Thu, 26 Jan 2006 20:26:32 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1180636</guid><dc:creator>bleroy</dc:creator><author>bleroy</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1180636.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1180636</wfw:commentRss><description>&lt;p&gt;Well, you could also say that script.aculo.us is causing conflicts ;). We really can't ensure compatibility with other libraries that act on a very fundamental level (like extending Object and Function). We use namespaces to avoid the risk of collision, but there's really no way around the fundamental OOP stuff that we do. I think script.aculo.us relies on the prototype library that's similar to our atlasruntime.js&amp;nbsp;and that's probably where the incompatibility really is.&lt;/p&gt;
&lt;p&gt;I can see what scenarios would need such compatibility: using ASP.NET with UpdatePanel on the server and a third party library on the client, but I don't think there's a way we can ensure the compatibility with every other library out there.&lt;/p&gt;</description></item><item><title>Re: Atlas causing javascript conflicts?</title><link>http://forums.asp.net/thread/1179906.aspx</link><pubDate>Thu, 26 Jan 2006 08:45:51 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1179906</guid><dc:creator>sarpmg</dc:creator><author>sarpmg</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1179906.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1179906</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;The new Atlas javscript&amp;nbsp;definetly causing&amp;nbsp;conflicts&lt;br /&gt;I tried using script.aculo.us (&lt;a href="http://script.aculo.us"&gt;http://script.aculo.us&lt;/a&gt;) with atlas, and i'm getting javscript&amp;nbsp;errors too...&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;When i remove the atlas script manager javascript tag:&lt;br /&gt;&lt;font color=#0000ff size=2&gt;&amp;lt;&lt;/font&gt;&lt;font color=#800000 size=2&gt;script&lt;/font&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;font color=#ff0000 size=2&gt;src&lt;/font&gt;&lt;font color=#0000ff size=2&gt;="ScriptLibrary/Atlas/Debug/Atlas.js"&lt;/font&gt;&lt;font size=2&gt; &lt;/font&gt;&lt;font color=#ff0000 size=2&gt;type&lt;/font&gt;&lt;font color=#0000ff size=2&gt;="text/javascript"&amp;gt;&amp;lt;/&lt;/font&gt;&lt;font color=#800000 size=2&gt;script&lt;/font&gt;&lt;font color=#0000ff size=2&gt;&amp;gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font color=#0000ff&gt;&lt;font color=#000000&gt;The &lt;/font&gt;&lt;font color=#000000&gt;script.aculo.us&amp;nbsp;scripts just works fine&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;</description></item><item><title>Re: Atlas causing javascript conflicts?</title><link>http://forums.asp.net/thread/1179829.aspx</link><pubDate>Thu, 26 Jan 2006 05:09:42 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1179829</guid><dc:creator>EricAppel</dc:creator><author>EricAppel</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1179829.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1179829</wfw:commentRss><description>Thanks for the response.&amp;nbsp; I'm somewhat of a newbie to javascript so I'm not sure how to reinitialize the javascript after the UpdatePanel has been refreshed?&amp;nbsp; What you are saying makes sense though, as the library requires that you put the link to the script at the bottom of the document.&amp;nbsp; I tried moving the reference to the tooltip script into the ContentTemplate of the UpdatePanel and this resulted in Atlas working correctly at first but then the page goes completely blank and seems to hang.&amp;nbsp; I also diffed the page source before and after I clicked the LinkButton in the UpdatePanel and the source was identical.&amp;nbsp; Nothing changes between the pages except for checkbox selection.&amp;nbsp; What part of my source would be useful for you to see?&amp;nbsp; It's really just a pretty standard Gridview inside of an UpdatePanel.&amp;nbsp; The javascript tooltip library that I am using can be found here http://www.walterzorn.com/tooltip/tooltip_e.htm&lt;br /&gt;&lt;br /&gt;Thanks,&lt;br /&gt;Eric&lt;br /&gt;</description></item><item><title>Re: Atlas causing javascript conflicts?</title><link>http://forums.asp.net/thread/1179803.aspx</link><pubDate>Thu, 26 Jan 2006 03:43:49 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1179803</guid><dc:creator>bleroy</dc:creator><author>bleroy</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1179803.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1007&amp;PostID=1179803</wfw:commentRss><description>&lt;p&gt;It's really hard to say without seeing your code. It kind of looks like your tooltips library is initializing at some point using the ids on the page, but it's not expecting the page to change in a major way after it's initialized. Maybe this tooltip library needs to be reinitialized after an Atlas update panel has been refreshed?&lt;/p&gt;
&lt;p&gt;So I don't think it's a conflict as much as this other library not expecting the kind of stuff Atlas does (Atlas uses namespaces to minimize the chances of conflict). For tooltip, did you look at the popup behavior?&lt;/p&gt;</description></item></channel></rss>