BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
columns: [
{ field: "Remarks", headerText: "Remarks", width: 75, textAlign: "left",editType: ej.Grid.EditingType.InputTextBox }
]
This edittype does not work
Regards,
Emir
columns: [ { field: "OrderID", isPrimaryKey: true, headerText: "Order ID", textAlign: ej.TextAlign.Right, validationRules: { required: true, number: true }, width: 90 }, { field: "CustomerID", headerText: 'Customer ID', editTemplate: { create: function () { return "<textarea></textarea>";//initialize the control }, read: function (args) { return args.val();//read the value at the time of save }, write: function (args) { debugger; $("textarea").css("width","100%").val(args.rowdata.CustomerID);//assign the value to the control } }, width: 170 }, { field: "EmployeeID", headerText: 'Employee ID', width: 150 }, |