How do I force the GridView Control to use swap feedback inside the update bar?

I have a GridView control that needs to be inside the refresh bar for other functionality. The site is using the Ajax Control Toolkit and the EnableSortingAndPagingCallbacks property on the Grid is false. However, when I do the swap call, it still does it as a callback instead of a postback. How do I fix this and trigger the paging calls as a postback?

0


source to share


1 answer


You can specify in the Triggers collection of the refresh pane to create a trigger for your gridview that is a full postback instead of an asynchronous one. This is especially useful when other locations have update panels that you can only update at certain times, but not others. You can also change the code to tell him when to update.



+1


source







All Articles