Hello Everyone,
I had a currency type field, as displayed in below snap but Help text of that field not showing on UI
On the UI, i am getting this:
How i can fix this. Please assist me
Thanks in Advance
Hello Everyone,
I had a currency type field, as displayed in below snap but Help text of that field not showing on UI
On the UI, i am getting this:
How i can fix this. Please assist me
Thanks in Advance
Hi Shivshankar, the Help Text is intended to be used as instructions for populating the field and is only displayed when editing or creating a record. In addition, it is only displayed for editable fields. Since calculated fields are not editable, it won't be displayed for your field. Here is an example of an editable field I created with help text:
And here is the documentation that talks about the Help Text and Comment Text options: Studio > Field Options.
Sorry I don't have a better answer for you! Maybe someone else knows of a way to display text that I'm not thinking of.
-Brenda
Thank You Brenda!
I got it absolutely. Thanks for your time.
Best Regards,
Shiv Gawande
There is a case where you might see different things in Studio and reality: conflicting code changes to the Vardef Extensions.
Sugar's Studio puts changes in custom/Extension/modules/<your Module>/Ext/Vardefs/* in files with names like
sugarfield_the_field_name.php
but developers can also make changes in code with any filename they want and there is a risk that those changes may conflict.
Check your
custom/modules/<your Module>/Ext/Vardefs/vardefs.ext.php
look for the field in question and see if there are multiple definitions. That file should tell you which file those changes are coming from.
See if that is what is happening.
Else the only thing I can think of is that the Repair Rebuild after the help was changed failed and your cache was not updated.
Or for some reason the permissions on your files are off and the Ext/Vardefs/vardefs.ext.php file in your module is not getting updated.
Also, check your sugar log and PHP log when you QRR to see if you can see any issues there.
FrancescaS