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
140
selecting only updated rows in ig:gridView
posted

Hi All,

First of all i would like to thank you all for your previous valuable suggestions. Currently i am working on JSF application where we used infragistics gridView component. The problem concern is initially when the JSF page is loaded we will display a list of records by specifying the datasource of the ig:gridView.

Now my question is, when the user updates a specific record from the list how to capture only those updated specific records??

Currently i am using gridView.getDataSource(...) method which is returning all the rows in the list which is wrong. I need to get only those records which are updated by the user.

 

Thanks in Advance

Vijay

 

Parents
  • 1324
    posted

    Hello Vijay,

    If you  are using cell editing feature then you can use the cell value change listener or row value chnage listener to get the index of operative row. You can get this information by using the event argument of the listener. Once you have index of the chanded row, you can fetch it from the underlying data model.

    Hope it helps you.

Reply Children