Hi Team,
We are fetching data from picklist using criteria for combobox item. We need to put the loading icon on screen (so that no other network call will fire) when combox item is fecting data (on criteria change). The combo box item is in the listgrid.
ComboBoxItem item = new ComboBoxItem();
item.setPickListFilterCriteriaFunction(itemContext -> {
Criteria criteria1 = new Criteria();
criteria1.setCritera("val1","xxx");
return criteria1;
});
We are fetching data from picklist using criteria for combobox item. We need to put the loading icon on screen (so that no other network call will fire) when combox item is fecting data (on criteria change). The combo box item is in the listgrid.
ComboBoxItem item = new ComboBoxItem();
item.setPickListFilterCriteriaFunction(itemContext -> {
Criteria criteria1 = new Criteria();
criteria1.setCritera("val1","xxx");
return criteria1;
});
Comment