Skip to Content
मेन्यू
This question has been flagged
1 Reply
3252 Views

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

Avatar
Discard
Author

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

@abdullah i will try to provide the code for this

Author

Hi Empiro... any update?