Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Issue with dropdown in a DynamicForm

    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 ?

    #2
    Don't give a component or formItem the ID of "status". This conflicts with window.status (in any browser).

    Comment


      #3
      Thanks for the quick response.

      We'll update that to use a different id.

      What is weird is, that we don't see the issue on our side (we are able to see the dropdown values) but one of our clients does. (the client sees this error in status bar and is not able to expand the select dropdown).

      Any idea why that might be the case ?

      Comment


        #4
        Probably some kind of security setting or other unusual customization of IE.

        Comment

        Working...
        X