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
25
UltrawinGrid checkbox selection changes selected row
posted

I am new to ultrawingrid and have a problem to implement a functionality ,

My UltraWinGrid has around 10 column and one of them is a checkbox column,

when ever user selects a row, lot of stuff is happening. actually  AfterRowActivate gets called

and it load other control of the page with data of the selected row. All the

column are non editable except the checkBox Column. Now I want that user should be able to check

one or more checkboxes without changing the selection of the row. suppose if Row 1 is selected and then

user checks a checkbox on row 4 and 5 then they should get selected but the Row 1 should remain selected

because i donot want AfterRowActivate event to get fired as it will load the data from row 4 and 5 to the other control of the page

which i dont want, where as if user clicks on some other column (having no checkbox) in that case AfterRowactivate should get called.

One more thing i noticed that it took me two clicks to check the checkBox (first click activates the row and the second one checks the checkbox)

Thanks in advance