Hi Isomorphic,
how can I define that a pickList for a SelectItem has the maximum possible height without introducing scrolling somewhere or moving content of view?
I have these two approaches below, both with errors where the application content is moved out of view.
Please see this modified testcase (v12.0p_2020-03-24) (I'm using maximized Chrome with Address Bar and Bookmark Bar on a FullHD screen).
With pickListHeight:900 I get a broken Showcase that doesn't recover (see picture).
With pickListHeight:2000 I get a broken Showcase every 2nd time the pickList is opened (does recover when pickList is closed) Design then as above.
It is possible that I reported a similar bug before and that you fixed it, so this might be a regression.
As I don't know client resolutions, any picked value can result in this. IMHO a setting maxPickListHeight (perhaps also minPickListHeight) would really help here.
Or treating the current pickListHeight as maximum value and never moving window content out of view.
Best regards
Blama
how can I define that a pickList for a SelectItem has the maximum possible height without introducing scrolling somewhere or moving content of view?
I have these two approaches below, both with errors where the application content is moved out of view.
Please see this modified testcase (v12.0p_2020-03-24) (I'm using maximized Chrome with Address Bar and Bookmark Bar on a FullHD screen).
Code:
isc.ListGrid.create({ ID:"dsListGrid", width: "100%", height: "100%", autoFetchData: true, dataSource: "supplyItem", showFilterEditor: true, fields:[ {name:"itemID", width:60}, {name:"itemName", filterEditorType:"SelectItem", filterEditorProperties: { multiple:true, [B]pickListHeight:900 // try also 2000[/B] } }, {name:"SKU"}, {name:"category"}, {name:"units"} ] });
With pickListHeight:2000 I get a broken Showcase every 2nd time the pickList is opened (does recover when pickList is closed) Design then as above.
It is possible that I reported a similar bug before and that you fixed it, so this might be a regression.
As I don't know client resolutions, any picked value can result in this. IMHO a setting maxPickListHeight (perhaps also minPickListHeight) would really help here.
Or treating the current pickListHeight as maximum value and never moving window content out of view.
Best regards
Blama
Comment