How to create a field with out label
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2023 03:41 AM
Hi,
I need to create a below type of field in form with out column label, is it possible? if yes how to do that?
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-22-2023 04:47 AM
Hi @Sarah Bouil ,
First you have to create a field with label and by using onLoad() client script, you can hide the label.
function onLoad() {
//Type appropriate comment here, and begin script below
$('label.table_name.field').hide();
}
Please mark the answer as helpful, if it helped you accordingly.
Thanks,
Hari