Hi,
I am importing data through XML into zoho creator using xml rpc api, and it works very nicely.
Now i want to insert a new line in long string text. Is this possible or not? I have tried alot, but getting no luck.
Tried for new line like this: \n, <br>, <br/>, <br />,
%OA,
%OD.
here is xml format:
<ZohoCreator>
<applicationlist>
<application name="my-app">
<formlist>
<form name="form-name">
<add>
<field name="Name"><value>User 1</value></field>
<field name="Address"><value>User Address 1</value></field>
</add>
<add>
<field name="Name"><value>User 2</value></field>
<field name="Address"><value>User Address Address Address Address Address</value></field>
</add>
</form>
</formlist>
</application>
</applicationlist>
</ZohoCreator>
I want to add new line at this field:
<field name="Address"><value>User Address Address Address Address Address</value>
like:
<field name="Address"><value>User Address Address Address [break-line]Address Address</value>