How to create a field with out label

Sarah Bouil
Tera Expert

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?

 

SarahBouil_0-1679481669033.png

 

1 REPLY 1

Hari Prasath
Tera Guru

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