Hi,
Our team is working on SmartGWT version 12.1-p20210819 .
We are trying to implement a combo box item in one of our grids.
Currently I am facing issue that If the selected value is at scrollable position in the dropdown then while clicking picker icon it doesn't focus to the selected value and while scrolling if the user changes the focus the selected value highlight is getting missed even when we use static data source.
It doesn't drags to selected value on clicking picker icon if the value is at a scrollable location even while using static data source
ComboBoxItem item = new ComboBoxItem();
Map<String,String> values = new HashMap<String, String>();
values.put("test", "test");
values.put("test1", "test1");
values.put("test2", "test2");
values.put("test3", "test3");
values.put("test4", "test");
values.put("test5", "test5");
values.put("test6", "test6");
values.put("test7", "test7");
values.put("test8", "test8");
values.put("test9", "test9");
values.put("test10", "test10");
values.put("test11", "test11");
values.put("test12", "test12");
values.put("test13", "test13");
values.put("test14", "test14");
values.put("test15", "test15");
item.setValueMap(values);
item.setPickListHeight(80);
Please let us know how can we do focus on the selected element which is at at scrollable position in combo box item. I believe we have already asked this question but asking it here again, because our license got expired and we were not able to discuss that further.
Our team is working on SmartGWT version 12.1-p20210819 .
We are trying to implement a combo box item in one of our grids.
Currently I am facing issue that If the selected value is at scrollable position in the dropdown then while clicking picker icon it doesn't focus to the selected value and while scrolling if the user changes the focus the selected value highlight is getting missed even when we use static data source.
It doesn't drags to selected value on clicking picker icon if the value is at a scrollable location even while using static data source
ComboBoxItem item = new ComboBoxItem();
Map<String,String> values = new HashMap<String, String>();
values.put("test", "test");
values.put("test1", "test1");
values.put("test2", "test2");
values.put("test3", "test3");
values.put("test4", "test");
values.put("test5", "test5");
values.put("test6", "test6");
values.put("test7", "test7");
values.put("test8", "test8");
values.put("test9", "test9");
values.put("test10", "test10");
values.put("test11", "test11");
values.put("test12", "test12");
values.put("test13", "test13");
values.put("test14", "test14");
values.put("test15", "test15");
item.setValueMap(values);
item.setPickListHeight(80);
Please let us know how can we do focus on the selected element which is at at scrollable position in combo box item. I believe we have already asked this question but asking it here again, because our license got expired and we were not able to discuss that further.
Comment