SmartClient Version: v11.1p_2019-02-07/AllModules Development Only (built 2019-02-07)
Chrome on OSX
Hello, please modify the #filterRelated sample like this:
(Note the showHintInField:true)
Then:
1. execute this code: testForm.getItem('filteredSelect').setHint('foo bar')
2. click to open the pickList

You'll see that the pickList is not correctly aligned, and you'll see this warning in the console:
Chrome on OSX
Hello, please modify the #filterRelated sample like this:
Code:
isc.DynamicForm.create({
ID:"testForm",
width: 550,
numCols:4,
fields : [
{
name: "filteredSelect", title: "Item (Select)", editorType: "SelectItem",
showHintInField:true,
optionDataSource: "supplyItem", wrapTitle: false,
displayField:"itemName", valueField:"SKU",
pickListWidth:300,
pickListProperties: {
showFilterEditor:true
},
pickListFields:[
{name:"SKU"},
{name:"itemName"}
]
}
]
})
Then:
1. execute this code: testForm.getItem('filteredSelect').setHint('foo bar')
2. click to open the pickList
You'll see that the pickList is not correctly aligned, and you'll see this warning in the console:
Code:
WARN:DynamicForm:testForm2:getLeft() Unable to determine position for filteredSelect2. This method is not supported by items of type [Class SelectItem] - returning zero.
Comment