Hi,
Is not working for all fields, the concatenate function is only showing the field value but not the captions. My smartform is looking to concatenate several Text Captions, Text Field Captions and Text Field Values into a text that can be copy-paste in another platform.
Here is one example:
//HEADER (just a text box in the form with some captions): Data to concat
//TextField1 (field with a caption and space to capture input): Enter name
//DropDownList1 (list with a caption and options to capture input): Select title
var HEADER_TXT
var TEXTFIELD1_TXT
var DROP1_TXT
concat(HEADER_TXT.caption.value.#text.value,"\u000a",TEXTFIELD1_TXT.caption.value.#text.value," ",TEXTFIELD1,"\u000a",DROP1_TXT.caption.value.#text.value," ",DROPDOWNLIST1)
I was expecting to get as result the text all together:
Data to concat
Enter name: Edgar
Select tile: Mr.
But is only working with the drop downs menus, not with text fields or text boxes.
Thanks for your time!