Hi,
there is one small visual bug for selectItems for the IE9. The bug occurs if the selectItem contains enough items, so that the scrollbar of the picklist appears. While scrolling through the picklist, there're appearing lines on the scrollbar, which sometimes make it hard to read the items.
Here is the example code for which the bugs does occur.
I'm using smartclient version "v8.3p_2013-04-12"
Thanks in advance
there is one small visual bug for selectItems for the IE9. The bug occurs if the selectItem contains enough items, so that the scrollbar of the picklist appears. While scrolling through the picklist, there're appearing lines on the scrollbar, which sometimes make it hard to read the items.
Here is the example code for which the bugs does occur.
Code:
isc.DynamicForm.create({ width: 500, fields: [{ name: "shipTo", title: "Ship to", type: "select", valueMap: { "1":"Item", "2":"Item", "3":"Item", "4":"Item", "5":"Item", "6":"Item", "7":"Item", "8":"Item", "9":"Item", "10":"Item", "11":"Item", "12":"Item", "13":"Item", "14":"Item", "15":"Item", "16":"Item", "17":"Item", "18":"Item", "19":"Item", "20":"Item", "21":"Item", "22":"Item", "23":"Item", "24":"Item", "25":"Item", "26":"Item", "27":"Item", "28":"Item", "29":"Item", "30":"Item", "31":"Item", "32":"Item", "33":"Item", "34":"Item", "35":"Item" } }] });
Thanks in advance
Comment