Hi there,
Using a FormItem with type select and the grid appearance we are facing some inconsistency with the font-size.
In the images below you can see that the values in the second FormItem is shown larger than in the first and third. This is reproducable at least in Firefox, Chrome and IE11 and the latest build SmartClient_v101p_2016-05-14_Pro.
Firefox:
Chrome:
IE11:
I think the font-size should be the same on all formitems.
This is the code for repdroduction.
Best Regards
Using a FormItem with type select and the grid appearance we are facing some inconsistency with the font-size.
In the images below you can see that the values in the second FormItem is shown larger than in the first and third. This is reproducable at least in Firefox, Chrome and IE11 and the latest build SmartClient_v101p_2016-05-14_Pro.
Firefox:
Chrome:
IE11:
I think the font-size should be the same on all formitems.
This is the code for repdroduction.
Code:
isc.DynamicForm.create({ "ID" : "selectItemWithGridAppearanceExampleForm", "hideUsingDisplayNone" : false, "colWidths" : [100, 200], "fields" : [{ "ID" : "test1", "name" : "test1", "title" : "Text", "type" : "text" }, { "ID" : "selectItemWithGridAppearance", "name" : "selectItemWithGridAppearance", "title" : "SelectItem with grid appearance", "type" : "select", "multiple" : true, "multipleAppearance" : "grid", "valueMap" : { 1 : "1", 2 : "2", 3 : "42", 4 : "1337", 5 : "9001" } }, { "ID" : "normalSelectItemForComparison", "name" : "normalSelectItemForComparison", "title" : "Standard SelectItem for comparison", "type" : "select", "multiple" : true, "valueMap" : { 1 : "1", 2 : "2", 3 : "42", 4 : "1337", 5 : "9001" } } ], "values" : { "test1" : "this is the size of normal text", "selectItemWithGridAppearance" : [1, 2], "normalSelectItemForComparison" : [1, 2] } });
Comment