hello there a method to identify whether a field is read only
Solved! Go to Solution.
Views
Replies
Total Likes
If you want to check whether the field is readonly at the runtime using the code, you can do so by using the access property of the control.
if(<CONTROLNAME>.access == "readOnly"){
<do your processing here>
}
Thanks
Srini
Views
Replies
Total Likes
You can click on the field, then go to the Value tab under Object. In the Value tab there's a drop down list called Type, if the field is read-only, the value in that drop down will say Read Only.
Views
Replies
Total Likes
If you want to check whether the field is readonly at the runtime using the code, you can do so by using the access property of the control.
if(<CONTROLNAME>.access == "readOnly"){
<do your processing here>
}
Thanks
Srini
Views
Replies
Total Likes
thank's Srini Dhulipalla
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies