Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Not Answered
Replies
1 reply
Subscribers
8 subscribers
Views
1358 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
User Interface
I need to put an edit link besides my textbox as after the click on edit link th
swatis552
over 10 years ago
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
0
Michael Tan
Appian Employee
over 10 years ago
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")
)
)
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
Michael Tan
Appian Employee
over 10 years ago
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")
)
)
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data