Hi Isomorphic,
testing in this thread I noticed a JS error in SNAPSHOT_v13.1d_2024-06-25 (does not happen in v13.0p_2024-06-21).
Please see this modified sample:
and do the following steps:
Blama
testing in this thread I noticed a JS error in SNAPSHOT_v13.1d_2024-06-25 (does not happen in v13.0p_2024-06-21).
Please see this modified sample:
Code:
isc.ListGrid.create({ ID: "supplyList", width:500, height:300, alternateRecordStyles:true, dataSource: supplyItem, fields:[ {name:"SKU"}, {name:"itemName"}, {name:"description"}, {name:"category", filterEditorType: "SetFilterItem", filterEditorProperties:{sortField: "category", sortDirection:"descending"}} ], autoFetchData: true, showFilterEditor: true, filterOnKeypress: true, fetchDelay: 500 });
- Open SetFilterItem
- Select "Clear all"
- Select "Wrapping dispenser"
- Close SetFilterItem
- List filtered to 3 items and the filterRow for "Category" say "None Except: ..."
- Hover that
- JS Exception:
Code:22:13:03.011:TMR3:WARN:Log:TypeError: _27 is undefined Stack from error.stack: [c]DataSource.getCriterionDescription() ListGrid.getFieldCriteriaHover() anonymous() FormItem._handleHover() FormItem._handleTextBoxHover() Hover._doAction() [c]Class.fireCallback() Timer._fireTimeout() Timer.setTimeout/_7<()
Blama
Comment