Hi!
Is it possible to configure the UltraWebGrid control in a way that only a row, not a single cell selection is possible?
I want the Grid to select the entire row when a single cell is clicked.
Is there a way to do that?
Thanks in advance!
Hello,
You can set the property CellClickActionDefault ="RowSelect" and then you can select row when a single cell is clicked.
<DisplayLayout Name="UltraWebGrid1" AllowColSizingDefault="Free" AllowColumnMovingDefault="OnServer"
AllowDeleteDefault="Yes" AllowSortingDefault="OnClient" AllowUpdateDefault="Yes"
BorderCollapseDefault="Separate" HeaderClickActionDefault="SortMulti" RowHeightDefault="20px"
RowSelectorsDefault="No" SelectTypeRowDefault="Extended" CellClickActionDefault="RowSelect"
StationaryMargins="Header" StationaryMarginsOutlookGroupBy="True" TableLayout="Fixed"
Version="4.00" ViewType="OutlookGroupBy">
That is just what I wanted - thank you so much!