custom server control values lost in callback - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T06:02:53Zhttp://stackoverflow.com/feeds/question/123144http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/123144/custom-server-control-values-lost-in-callback1custom server control values lost in callbackMike2008-09-23T19:13:57Z2008-09-23T19:32:03Z
<p>I have a custom server control that loads data from a web service into a GridView. Works fine on my page. I want to be able to click on a row and pop a popupcontrol with more detail on the clicked row. I am using the client side events of the DevExpress gridview to handle the onclick. And from JavaScript I am calling a callbackpanel to access my custom server control to get properties to use in the popupcontrol. In the callback, the properties on my server control (which were previously set in order to display the data) are not set, yet any of the other standard controls on the page still have their property settings. Am I missing a setting in my customer server control that will persist my property settings into a callback?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/123144/custom-server-control-values-lost-in-callback/123192#1231921Answer by Jasmine for custom server control values lost in callbackJasmine2008-09-23T19:22:44Z2008-09-23T19:22:44Z<p>There are a few methods for persisting values through a postback. The method you pick will depend on your exact situation, which you didn't elaborate enough. Personally, I think it sounds like a good place for AJAX...</p>
<p>Here's a great article with some options:
<a href="http://msdn.microsoft.com/en-us/magazine/cc300437.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc300437.aspx</a></p>
http://stackoverflow.com/questions/123144/custom-server-control-values-lost-in-callback/123213#1232131Answer by Greg Ogle for custom server control values lost in callbackGreg Ogle2008-09-23T19:25:44Z2008-09-23T19:25:44Z<p>I've had very similar issues. The problem seemed to resolved by tweaking the timing of when the Data is bound. </p>
http://stackoverflow.com/questions/123144/custom-server-control-values-lost-in-callback/123254#1232540Answer by Mike for custom server control values lost in callbackMike2008-09-23T19:32:03Z2008-09-23T19:32:03Z<p>Jasmine:
I am using vs2008 with .net 3.5 framework. Do I need to add the ViewState[] to my properties or should I be using Control State?</p>
<p>Oglester: What do you mean by 'tweaking the timing of when the Data is bound'?</p>