Hi,
We have an issue of the select item with long list of items. When we click the picker icon. Some part of the list is displayed on the left side of the screen.
We are using 2012-03-01_v82p build. It worked well on 2012-01-30_v82p_PowerEdition.
Steps to reproduce:
Click the picker icon of the selected field, then you will find some part of the list is displayed on the left side of the screen.
We have an issue of the select item with long list of items. When we click the picker icon. Some part of the list is displayed on the left side of the screen.
We are using 2012-03-01_v82p build. It worked well on 2012-01-30_v82p_PowerEdition.
Steps to reproduce:
Click the picker icon of the selected field, then you will find some part of the list is displayed on the left side of the screen.
Code:
var myVM = new Array(); for (var i =0; i<174; i++) { myVM[i] = "Service "+ i; }; isc.DynamicForm.create({ top: 45, width: 500, numCols: 4, autoDraw: true, fields: [ {name: "division", title: "Division", type: "select", valueMap: myVM } ] });
Comment