Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
312
ultrawebgrid cell editing
posted

How can i get the edited cell value using C# ?

Parents
No Data
Reply
  • 28464
    posted

    Hello,

    Thanks for your interest in our products. Getting edited cell value is easy and can be done both on the server and/or on the client, depending on your scenario.

    If you want to obtain the new cell value on the server, you can take a look at the UpdateCell and UpdateRow events of the grid - they get fired whenever cell value is changed. You can obtain the new value from the parameters of the events. One good forum thread to get you started is the following:

    http://forums.infragistics.com/forums/p/7859/31700.aspx#31700

    On the clients-side, the place to look at is the client-side evens collection and partocularly the AfterCellUpdateHandler -you can get a reference to the updated cell

    <ClientSideEvents AfterCellUpdateHandler="afterCellUpdate" />          

    You can get full information on our clientside API (CSOM) if you check out our great online documentation (the CSOM - ClientSideObjectModel documentation is the last one from the navigational tree on the left)

    http://help.infragistics.com/NetAdvantage/NET/2008.2/CLR2.0/

Children
No Data