In my dialog box , i am getting some value in textfield based on the value selected from dropdown . But currently i can make changes in retrieved values that i don't want. I need to make it non editable so that the retrieved value will remain as it is .
Edit- If i make it disable than that textfield name property will not saved as JCR property.
Please assist.
Views
Replies
Total Likes
Hi,
Touch UI or Classic UI?
Views
Replies
Total Likes
for classicUI
Views
Replies
Total Likes
amangoyal15 wrote...
In my dialog box , i am getting some value based on the value selected from dropdown . But currently i can make changes in retrieved values that i don't want. I need to make it non editable so that the retrieved value will remain as it is .
Hi,
if it is classic ui, you can set disabled (true) as a property in textfield xtype node.
Views
Replies
Total Likes
PFA .
I am not getting any field like disabled for xtype
Views
Replies
Total Likes
You need to add that as a property with name disabled, value 'true' and type boolean.
Classic UI already has these available in framework
Views
Replies
Total Likes
Jitendra S.Tomar wrote...
amangoyal15 wrote...
In my dialog box , i am getting some value based on the value selected from dropdown . But currently i can make changes in retrieved values that i don't want. I need to make it non editable so that the retrieved value will remain as it is .
Hi,
if it is classic ui, you can set disabled (true) as a property in textfield xtype node.
and in Touch UI ?
Views
Replies
Total Likes
Views
Replies
Total Likes
Hi Gaston Abasto,
Did you find any resolution for this?
Views
Replies
Total Likes
Hi,
Unfortunately there is no widget property that can make your field non editable but there is listeners node available to take action on various widgets events. you can use loadContent event to explicitly set the field to readonly.
Here is the screenshot for your reference.
I have used simple jquery
function(field,record,path){ $("input[name='"+ field.name+"']" ).attr("readonly",true); }
Hope this helps!
Thank you!
Nupur
Views
Replies
Total Likes
Hi Amangoyal,
Add a boolean property like below :
properties : readOnly type :Boolean value : true
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Like
Replies
Views
Likes
Replies