I already use tabulator to visualize the data from my model. That works like a charm. But, the model depends on a date the user selects. When a new date is selected I do an ajax call and update the model. The model also contains a list of allowed dates to display in the date select widget
So, my model contains:
var updateDates = observableListOf<Date>()
var currentDate = observableListOf<Date>()
I need a DateTime select (calendar) widget where the current choice (value) is set to currentDate[0]. Only the dates which exist in updateDates should be enabled for selection in the widget. These lists are updated from the server, and the GUI need to update automatically.