edit an input form
hi all
i need to create an input form
but need to put restriction that other operator can just view it not edit it
pelase help
thanks in advance
hi all
i need to create an input form
but need to put restriction that other operator can just view it not edit it
pelase help
thanks in advance
Hi there,
Once you create the input form, locate the container that will be holding the input forms that you wish to make read only and add readOnly="true"
In the example below, I have created an input form with two content tabs (Customer and General) and I've made the input boxes read-only:
<createdBy _cs="Andrea Briceno"/>
<container codepage="1252" colcount="2" label="Campaign data" readOnly="true" type="notebook">
<container codepage="1252" colcount="2" label="Customer">
<input xpath="@firstName"/>
<input xpath="@middleName"/>
<input xpath="@lastName"/>
<input xpath="@emailAddress"/>
<input xpath="@countryCode"/>
<input xpath="@language"/>
</container>
<container codepage="1252" colcount="2" label="General">
<input xpath="@leadOrigin"/>
<input xpath="@brand"/>
<input xpath="@created"/>
</container>
</container>

Hope this helps 🙂
-Andrea
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.