Rank: Member Groups: Member
Joined: 8/16/2009 Posts: 13
|
I have a standard ASP.Net Gridview housed inside the EO Update Panel. I have set up the EO.Update Panel Trigger as the Click from the Gridview, however there is one Link button in the Gridview that I would like to force a Postback and not Trigger the Update Panel. As it is now all click events from the inside the Gridview Trigger the Update Panel and I am not able to get a Postback.
Is there any way I can selectively indicate which click events or buttons inside the Gridview will cause a Postback?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
There is no direct way to do that. You will have to code the LinkButton to call some JavaScript so that it triggers a post back as something else. For example, you can call use an EO ScriptEvent control and then call eo_TriggerServerEvent to trigger a server event through the ScriptEvent control. If the ScriptEvent control is not inside the UpdatePanel, then that will go through as a normal post back.
Thanks!
|