This could actually go along with my other post, but it would be nice to have fields be able to be conditionally disabled. Not disabled as in not show up, but read only.
This could actually go along with my other post, but it would be nice to have fields be able to be conditionally disabled. Not disabled as in not show up, but read only.
Read only fields would be a great help to me as well. Is that something that can be added in the near future?
Why not just have the fields be dynamically entered and hidden to only admins?
Appreciate this is a bit of an old thread, but I was recently needing to do something similar and couldn't find anything. So I came up with this solution:
[js]
if ($("li.gf_readonly")){ $("li.gf_readonly input").attr("readonly","readonly"); }
Place the above code in your footer. Now if you add the class "gf_readonly" to the fields you want as read only, jQuery will append the readonly attribute to them.
Thank you Lee Hord for this interesting workaround !
However, is there any news for an out-of-the-box solution in the software's roadmap ?