I need to put an edit link besides my textbox as after the click on edit link th

I need to put an edit link besides my textbox as after the click on edit link the textbox should be editable. Please let me know how can this be possible?...

OriginalPostID-104352

OriginalPostID-104352

  Discussion posts and replies are publicly visible

Parents
  • Here is a SAIL expression which can achieve this:

    =load(
    local!readOnly: true,
    local!text: "http://www.google.com",
              a!formLayout(
    label: "SAIL Example: Toggle Read-Only",
    firstColumnContents: {
    a!checkboxFieldByIndex(
    label: "Read Only?",
    choiceLabels: {""},
    value: local!readOnly,
    saveInto: local!readOnly
    ),
    a!textField(
    label: "Sample Link",
    readOnly: local!readOnly,
    value: local!text,
    saveInto: local!text
    )

    },
    buttons: a!buttonLayout(
    primaryButtons: a!buttonWidgetSubmit(label:"Submit")
    )
    )

    )
Reply
  • Here is a SAIL expression which can achieve this:

    =load(
    local!readOnly: true,
    local!text: "http://www.google.com",
              a!formLayout(
    label: "SAIL Example: Toggle Read-Only",
    firstColumnContents: {
    a!checkboxFieldByIndex(
    label: "Read Only?",
    choiceLabels: {""},
    value: local!readOnly,
    saveInto: local!readOnly
    ),
    a!textField(
    label: "Sample Link",
    readOnly: local!readOnly,
    value: local!text,
    saveInto: local!text
    )

    },
    buttons: a!buttonLayout(
    primaryButtons: a!buttonWidgetSubmit(label:"Submit")
    )
    )

    )
Children
No Data