Announcement

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

    Look Difference in ReadOnly Fields

    In my dynamicForm I have 2 readOnly fields, but both look different.

    In the image attached, "media_type" and "case_pick_mon" are to readOnly selectBoxes which look different.

    Only difference is, "media_type" was made readOnly after form display and "case_pick_mon" was made readOnly before display.

    Can I make them look similar without making any CSS changes to particular field ?
    Attached Files

    #2
    You haven't mentioned what version or build you're using - please post that (evaluate isc.version in the developer console).

    We'll also need to see the form config to comment further

    Comment


      #3
      Sorry for the delayed reply. Was out of country so could not reply.
      I am using smartclient version 8.3

      and
      this is how my dynamic form look like.
      isc.DynamicForm.create({
      ID:"caseSubjectForm",
      width: 620,
      height: 450,
      numCols: 5,
      redrawOnResize: false,
      colWidths: [100, '*', 100, '*', 220],
      fixedColWidths: true,
      titleSuffix: ":  ",
      requiredTitleSuffix: ":  ",
      fields:myFormFields,
      titlePrefix: '    '
      })

      Comment

      Working...
      X