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
250
UltraWebGrid - Allow only row selection
posted

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!

Parents
No Data
Reply
  • 7694
    posted

     

    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">

Children