Showing posts with label element. Show all posts
Showing posts with label element. Show all posts

Monday, March 26, 2012

Atlas UpdatePanel, EnablePartialRendering, and a custom javascript problem.

Hi all,

I have a javascript that renders custom tooltips on onmouseover events of objects on my pages, for example an A element. The custom javascript points the elements onmouseover event to delegates. This works fine except however when an UpdatePanel is render after the page has initially loaded. The function pointers are lost by objects within the UpdatePanel.

How can I setup an client side event procedure that can be run everytime the UpdatePanel renders something so that I can reinstate the lost function pointers?

Or, is there a better way to do this?

Thanks,

Andeezle

Please allow me to simplify my question. In other words, how can i run a client side script after an updatepanel updates?

also, i need a reference to the updatepanel that updated.

-Thanks,

Andeezle


Hi,

please check theUpdateProgressSignup written bySimone Busoli.

Thank you. Very cool. And it worked too!!!

-Andy

Saturday, March 24, 2012

Atlas TextBox

Hi,
Just tried the textbox sample from HOL and realized if we have a HTML SELECT element under the auto-completed result list, the SELECT element will show through it.
I know this is a browser issue but as there are several AJAX toolkits around these days, do you expect to have a solution for this problem by RTM time?
Thank you,
António CruzYes, you're absolutely right. That's a very well known problem on IE browsers. It's something we already had to deal with in the ASP.NET 2.0 menu control but that we didn't have time to fix in the PDC Atlas build. Here's a blog post explaining how it was fixed in ASP.NET 2.0:
http://weblogs.asp.net/bleroy/archive/2005/08/09/422047.aspx
We're probably going to apply the same fix in a future build of Atlas right in the popup control.
The same fix will cover flash and other active content, in IE, however in firefox if there is movment, on your active content it will redraw the active content over the covered area untill you cause the document to redraw. ie: alt - tabing back and forth.
can anyone say annoying :)
Just a heads up.
-Adam
I'm not sure I understand thar: Firefox does not need this fix as it already covers selects and other similar contents.

Wednesday, March 21, 2012

Atlas Problem

I am using atlas updatepanel.But it not works in some pages only.If i invoke the Event i get the following error called

Error: element has no properties
Source File:http://localhost:1922/V1.5/WebResource.axd?d=76cvup_o6D5oq67FJRJ3lWFGXAOxalxDLDfhjEshy7rTmGT1wgioOjBBazTacAsXaJvLmuPSxaQ96h73WKTgYJPI_6yrvF_ItQBwDvIVAxY1&t=632894223780000000
Line: 10845

What is the error .& how to solve this problem...P

first the link u have provided is not working

try to copy and paste ur markup to help u

but any way try to check with me the syntax here:

<atlas:ScriptManager runat="srever" ID="scriptManager1" EnablePartialRendering="true"/>

<atlas:UpdatePanel runat="srever" ID="updatePanel1" Mode="Always" >

<ContentTemplate>

//here u add ur controls

</ContentTemplate>

</atlas:UpdatePanel>

or if u make it conditional mode

<atlas:ScriptManager runat="srever" ID="scriptManager1" EnablePartialRendering="true"/>

<atlas:UpdatePanel runat="srever" ID="updatePanel1" Mode="Conditional" >

<ContentTemplate>

//here u add ur controls

</ContentTemplate>

<Triggers>

// here u add ur triggers may be upon event or a change in property as u wish

</Triggers>

</atlas:UpdatePanel>