Type in "Smart Client" in the first name. Now double click in the field and copy the value and paste into notepad - the value that is pasted is "Smart_client___" - How do I suppress the prompt character? It is not part of the data.
Code:
isc.DynamicForm.create({ width: 400, fields: [ { name: "firstName", title: "First name", type: "text", mask: ">?<??????????????", hint: ">?<??????????????"}, { name: "lastName", title: "Last name", type: "text", mask: ">?<??????????????", hint: ">?<??????????????"}, { name: "state", title: "State", type: "text", mask: ">LL", hint: ">LL"}, { name: "phoneNo", title: "Phone no", type: "text", mask: "(###) ###-####", hint: "(###) ###-####", hintInField: true} ] });
Comment