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
435
Displaying checkbox in Listbox
posted

Hi,

How can I display two columns like Allowed and Name in list box.

Allowed column should display check boxes. Thanks

Parents
No Data
Reply
  • 69832
    Offline posted

    The 'List' view does not use SubItemColumns, but 'Details' view does. The caviat there is that you will have column headers in that view. To do this in that view, add a boolean column (Allowed) to the SubItemColumns collection.

    Note that you could enable checkboxes for the List view by setting the UltraListView.ViewSettingsList.CheckBoxStyle property. For that matter, you can also enable them for the Details view by setting the UltraListView.ViewSettingsDetails.CheckBoxStyle property.

Children