vote up 0 vote down star

I am instantiating/using the gridview only programmatically ie code behind only.

Also, the grid is bound to a datasource, and I am only showing select columns from it by hooking rowdatabound event of the gridview.

Please suggest a way for doing it WITHOUT design view(aspx).

EDIT: Is there any way to do this using UpdatePanels?

flag
Found the answer, Not only did I have to register the gridview as Asyn PostBack control but I also had to add the gridview as a control to the AsyncPostBackTrigger for the updatepanel – Sloane Oct 8 at 10:43

2 Answers

vote up 0 vote down

try using...

ScriptManager.GetCurrent(this).RegisterAsyncPostBackControl(yourControl);
link|flag
I have used a scriptmanager(instance) to register the grid as AsyncPostbackControl. Its not working, possibly due to the fact that I am using Select Button property which employs a javascript function __doPostback() which explicitly forces a Postback. May this info might help others too – Sloane Oct 6 at 12:41
vote up 0 vote down

Try this one --> http://www.netomatix.com/development/gridviewrowselectedevent.aspx

link|flag
The gridviews SelectButton generates similar javascript which does a full postback(page refresh), which is what I want to avoid – Sloane Oct 6 at 14:50
try using the update panel to avoid postbacks – solairaja Oct 7 at 4:04
apparently the Update Panel can only handle the server side code but not the javascript with forces a postback – Sloane Oct 7 at 8:34
Nope you can add your own javascript in the update panel also. – solairaja Oct 7 at 12:50
can you please elaborate.. how do I prevent the postback.. the following javacript (autogenerated for gridivew) on the page forces the postback. function __doPostBack(eventTarget, eventArgument) { if (!theForm.onsubmit || (theForm.onsubmit() != false)) { theForm.__EVENTTARGET.value = eventTarget; theForm.__EVENTARGUMENT.value = eventArgument; theForm.submit(); } } Please let me know – Sloane Oct 8 at 10:16
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.