Add a label next to a textbox

Hello everybody

I want to know, how can i add a label “Format :RRCNUFAAAA” next to the text box
As shown in the picture below

Why don’t you embed it in the language string from Studio …

Hi,

Just add
‘customCode’ => ‘@@FIELD@@ Format :RRCNUFAAAA’,
in your editviewdefs.

1 Like

See attachment :
Here is what I get with
0 =>
array (
‘name’ => ‘phone_work’,
‘comment’ => ‘Work phone number of the contact’,
‘label’ => ‘LBL_OFFICE_PHONE’,
‘customCode’ => ‘@@FIELD@@ Format :RRCNUFAAAA’,
),

Isn’t it what you wanted?

1 Like

it works, thank you BLQT for your answer
I have just one last question, is it be possible to customize the writing style of the label, for example I want to what it is in italic, and bold red

Yes, you can have html in that customCode, such as:
‘customCode’ => ‘@@FIELD@@ Format :RRCNUFAAAA’,

Benoit

1 Like

thank you very much BLQT