GwtMaterialDesign / gwt-material-addins

Custom Components for gwt-material.
https://gwtmaterialdesign.github.io/gmd-addins-demo/
Apache License 2.0
35 stars 46 forks source link

MaterialComboBox Sort not working #436

Open DWinklerSaascom opened 2 years ago

DWinklerSaascom commented 2 years ago

Good Morning,

we are trying to change the sort behavior, but the setSorter Interface is an empty Function with no return. If u set the Sorter in your Demo, the Option List will be empty (no Return = no List of Options)

I think the Sorter Options in JsComboBoxOptions is using the wrong FunctionInterface (Functions.Func).

in JS, it would be something like

sorter: function(data) { return data.sort(function(a, b) { return a.text < b.text ? -1 : a.text > b.text ? 1 : 0; }); } in Material GWT sorterComboBox.setSorter(() -> { ///What to DO? });

With the data as parameter and return the sorted List.

Can u please check if we have a Problem or can u explain how it was intended.