SmartClient Version : 8.2
Browser Version : Internet Explorer 8
We have a dropdown named ‘Status’ as one of the fields inside a DynamicForm
isc.DynamicForm.create({
ID: "filtersForm",
name: "filtersForm",
width: 550,
numCols: 8,
fields: [
{
name: "status",
ID: "status",
title: "<b>Status</b>",
editorType:"select",
valueMap: {"All":"All","Accepted":"Accepted","Pending":"Pending","Deactivated":"Deactivated","Denied":"Denied"},
defaultValue:"Pending",
multiple:true,
multipleAppearance:"picklist",
}
]
})
When attempting to click on the dropdown to see the list of available options in the Status dropdown, we see the following JS error
Message: Object doesn't support this property or method
Line: 789
Char: 432
Code: 0
URI: https://xyz.abc.com/app_name/isomorphic/system/modules/ISC_Forms.js?isc_version=SC_SNAPSHOT-2012-02-28_v8.2p.js
We also have other dropdowns that are part of the same dynamic form but none of the others have this issue.
Any ideas ?
Browser Version : Internet Explorer 8
We have a dropdown named ‘Status’ as one of the fields inside a DynamicForm
isc.DynamicForm.create({
ID: "filtersForm",
name: "filtersForm",
width: 550,
numCols: 8,
fields: [
{
name: "status",
ID: "status",
title: "<b>Status</b>",
editorType:"select",
valueMap: {"All":"All","Accepted":"Accepted","Pending":"Pending","Deactivated":"Deactivated","Denied":"Denied"},
defaultValue:"Pending",
multiple:true,
multipleAppearance:"picklist",
}
]
})
When attempting to click on the dropdown to see the list of available options in the Status dropdown, we see the following JS error
Message: Object doesn't support this property or method
Line: 789
Char: 432
Code: 0
URI: https://xyz.abc.com/app_name/isomorphic/system/modules/ISC_Forms.js?isc_version=SC_SNAPSHOT-2012-02-28_v8.2p.js
We also have other dropdowns that are part of the same dynamic form but none of the others have this issue.
Any ideas ?
Comment