Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
1 Rispondi
3272 Visualizzazioni

Hi,

I have three fields "First Name",  "Last Name", and "Full name".

1. I want to combine the values of the field  "First Name" and the field  "Last Name" and store the result in the field "Full Name".

2. Can the displayed value of the "Full Name" be updated instantanuosly as I type?

Thanks in advance.

Avatar
Abbandona
Risposta migliore

Hello Abdullah

For the first one, yes you can write the onchange method for the 'FirstName' and 'LastName' and combine both values ans store it in 'FullName'. You need to write a common onchange method for both the fields where you can pass on the 'FirstName' and 'LastName' as parameters and return a concatenated string for 'FullName'. Also if you want you can create a field.function and keep watch on 'FirstName' and 'LastName', but that is upto your convinience.

For second one, no you cannot update the 'FullName' instantanuosly while you type in the string in the textbox.

Hope this helps !!.

Avatar
Abbandona
Autore

Can you plz provide a link to simple example code to acheive this?

@abdullah i will try to provide the code for this

Autore

Hi Empiro... any update?