SmartClient Version: v12.1p_2021-04-08/AllModules Development Only (built 2021-04-08)
Chrome on MacOS
Hello, please modify the dropdownGrid sample like this:
then filter by itemName, ie type "a", you'll see an horizontal scroll as in the following screenshot:

I know that this makes sense only with multiple:true, which isn't supported with showFilterEditor, but this horizontal scroll could indeed be a subtle bug?
Chrome on MacOS
Hello, please modify the dropdownGrid sample like this:
Code:
isc.DynamicForm.create({
ID:"exampleForm",
width:300,
fields: [
{
name:"itemID",
type:"select",
width:200,
title:"Item",
optionDataSource:"supplyItem",
//multiple:true,
valueField:"SKU",
displayField:"itemName",
pickListWidth:100,
pickListProperties:{
selectionAppearance:"checkbox",
showFilterEditor:true,
showHeader:false
},
pickListFields: [
{ name: "itemName" },
{ name: "units" },
{ name: "unitCost" }
]
}
]
});
I know that this makes sense only with multiple:true, which isn't supported with showFilterEditor, but this horizontal scroll could indeed be a subtle bug?
Comment