Rank: Advanced Member Groups: Member
Joined: 10/20/2008 Posts: 75
|
I should trigger a callback when my user change the value in a maskedit and the masledit is in a maskeditcolumns in a grid in the calbackpannel! the callback pannel permit to me to set only grid1 and not maskedit1 And, how can I the Grid1_ItemChanged event fired?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
You will not be able to do that. Our Grid is much more a client side Grid than a server side Grid, so it is designed to allow you to make multiple changes until the page submits. Standard ASP.NET Grid on the other hand gives you the ability to trigger a post back immediately after you change something. So I believe that should work better for you.
ItemChanged is fired when the page submits after changes are made to the Grid.
Hope this helps.
Thanks!
|