Siirry sisältöön
Menu
Sinun on rekisteröidyttävä, jotta voit olla vuorovaikutuksessa yhteisön kanssa.
Tämä kysymys on merkitty
1 Vastaa
3263 Näkymät

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
Hylkää
Paras vastaus

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
Hylkää
Tekijä

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

@abdullah i will try to provide the code for this

Tekijä

Hi Empiro... any update?