The current version (SC_SNAPSHOT-2012-02-03_v8.2p) has two bugs:
1. (minor:) moving the mouse over an expanded ComboBox marks all entries blue
2. (major:) clicking on an entry actually writes the first entry into the ComboBox, not the clicked entry.
Test Case for the feature explorer:
Steps to reproduce:
1) Expand the ComboBox
2) Move mouse over the entries. Entries get blue. -> bug #1
3) Now click on "Canada". "United States" gets applied instead. -> bug #2
Best Regards,
Florian
1. (minor:) moving the mouse over an expanded ComboBox marks all entries blue
2. (major:) clicking on an entry actually writes the first entry into the ComboBox, not the clicked entry.
Test Case for the feature explorer:
Code:
isc.DataSource.create({
ID:"countryDS",
dataFormat:"json",
dataURL:"/isomorphic/system/reference/inlineExamples/grids/data/countryData.json",
fields:[
{
title:"Country",
name:"countryName"
}
]
})
isc.DynamicForm.create({
width: 500,
numCols: 4,
fields : [{
name: "itemName", title: "Item Name", editorType: "comboBox", displayField: "countryName",
optionDataSource: "countryDS", pickListWidth: 250
}]
});
1) Expand the ComboBox
2) Move mouse over the entries. Entries get blue. -> bug #1
3) Now click on "Canada". "United States" gets applied instead. -> bug #2
Best Regards,
Florian
Comment