Rank: Member Groups: Member
Joined: 12/23/2012 Posts: 10
|
hi
we have read remarks of grid control feature of edit grid excel style and this what we have found "All changes items can be accessed through ChangedItems property. ItemChanged event is also fired for each changed item. Even though both ItemChanged and ChangedItems are based on the whole GridItem"
We need to get itemchanged event based on the individual cell GridItem so that corresponding Postback event is fired like the Datagrideview in VB.Net
We are an emergency need for this event and its our biggest reason behind purchasing your controls
looking forward to your replay
thanks
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,201
|
Hi,
You can use the GridColumn's ClientSideAfterEdit event to capture the modified event on the client side. You do need to somehow pass this information to the server side if you need to process this event on the server side. As you have already noticed, the built-in ChangedItems is based on items, not cells.
Thanks!
|
Rank: Member Groups: Member
Joined: 12/23/2012 Posts: 10
|
hi
can i use the GridColumn's ClientSideAfterEdit event to capture the modified event on the client side Using Vb.net or C# with out using JavaScript
|