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
2235
firing RowSelectionChanged event manually
posted

Hi folks,

using 11.2

I have some buttons on my web form, one of them sets the SelectedRowCollection,  the following code snippet should explain.

 Dim selectedRows As SelectedRowCollection = webdatagrid1.Behaviors.Selection.SelectedRows
        selectedRows.Clear()
        selectedRows.Add(data_grid1.Rows(0))

After this code snippet I want to call the RowSelectionChanged property, as it isn't firing on the selectedRows.Add event.

Is there a way to call the webdatagrid1.RowSelectionChanged event?