Skip to Content
Menu
This question has been flagged
1 Atsakyti
3257 Rodiniai

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.

Portretas
Atmesti
Best Answer

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 !!.

Portretas
Atmesti
Autorius

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

@abdullah i will try to provide the code for this

Autorius

Hi Empiro... any update?