custom server control values lost in callback - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T06:02:53Z http://stackoverflow.com/feeds/question/123144 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/123144/custom-server-control-values-lost-in-callback 1 custom server control values lost in callback Mike 2008-09-23T19:13:57Z 2008-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#123192 1 Answer by Jasmine for custom server control values lost in callback Jasmine 2008-09-23T19:22:44Z 2008-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#123213 1 Answer by Greg Ogle for custom server control values lost in callback Greg Ogle 2008-09-23T19:25:44Z 2008-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#123254 0 Answer by Mike for custom server control values lost in callback Mike 2008-09-23T19:32:03Z 2008-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>