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
145
How to stop multiselection of Row and select only one which is active
posted

I have set property of Grid CellClickAction = RowSelect;

 I am able to unselect multiple row by writing small code on Mouseclick event

foreach (UltraGridRow row in ugAgtState.Selected.Rows)

{row.Selected = false;

}

//after I will select single row where mouse is located

Is there any property saying MultiSelect = false? if yes, Please let me know where it is in Grid Properties as I am unable to found it.