There seems to be some inconsistency in how the following code is generated in mobile browsers.
In both the iPad Safari browser and the default browser on the Samsung Galaxy Tablet, the example is shown as an empty box until you select something. If you run the same testcase using Galaxy Tablet and Firefox, the list is shown initially (like what you see on a desktop). Is this completely browser-related behaviour or is this a bug?
In both the iPad Safari browser and the default browser on the Samsung Galaxy Tablet, the example is shown as an empty box until you select something. If you run the same testcase using Galaxy Tablet and Firefox, the list is shown initially (like what you see on a desktop). Is this completely browser-related behaviour or is this a bug?
Code:
isc.DynamicForm.create({ width: 500, fields: [{ name: "shipTo", title: "Ship to", type: "select",multiple:true,multipleAppearance:"grid",height:100, hint: "<nobr>Overnight shipping available for countries in bold</nobr>", valueMap: { "US" : "<b>United States</b>", "CH" : "China", "JA" : "<b>Japan</b>", "IN" : "India", "GM" : "Germany", "FR" : "France", "IT" : "Italy", "RS" : "Russia", "BR" : "<b>Brazil</b>", "CA" : "Canada", "MX" : "Mexico", "SP" : "Spain" }, imageURLPrefix:"flags/16/", imageURLSuffix:".png", valueIcons: { "US" : "US", "CH" : "CH", "JA" : "JA", "IN" : "IN", "GM" : "GM", "FR" : "FR", "IT" : "IT", "RS" : "RS", "BR" : "BR", "CA" : "CA", "MX" : "MX", "SP" : "SP" } }] });
Comment