In my app i have a table that i want to give the user the option to sort by different columns.
the user choose the column name through a combobox and the sort type by another combobox
combobox1: items : ["column1","column2","column3"]
combobox2: items: ["SortOrder.Ascending","SortOrder.Descending"]
button : OnSelect: Set(selectedSort,ComboBox1.Selected.Value);
Set(selectedColumn,ComboBox1.Selected.Value)
Table1 : Items: Sort('DataBase','selectedColumn',SortOrder.Ascending)
It doesn't work ! i cann't find what's wrong