Item
Gets or sets the field value in its native format.
Parameters
FieldName. Specifies the name of the field to get or set as the column in the table.
Example
record.Item("item");
record("item");
The two examples above perform the same action.
var Comp;
var Block;
Comp = CRM.CreateRecord('company');
Comp.item('comp_Name') = '3D Communications International';
Comp.SaveChanges();
Block = CRM.GetBlock("companygrid");
CRM.AddContent(Block.Execute(''));
Response.Write(CRM.GetPage());
Creates a new record in the Company table, names the company "3D Communications International", and displays it in a company list.