-1

Is it possible to create a drop down or list box with checkboxs ?

I'm building analysis app. In the first stage i get a list of subjects, and the user need the ability to choose several subjects from the list for the analysis.

thanks

Luis Mendo
  • 110,752
  • 13
  • 76
  • 147
LIOR
  • 149
  • 1
  • 12
  • Possible duplicate of [Display checkbox inside a listbox](https://stackoverflow.com/questions/21437732/display-checkbox-inside-a-listbox) – rinkert Oct 14 '19 at 13:58

1 Answers1

0

You can use the table component to show a list. The uitable can take logical value on the Data property. Here is a very simple example in App Designer.

data = { 'test1', 10, true; 'test2', 99, false };
app.UITable.Data = data;
oro777
  • 1,110
  • 1
  • 14
  • 29