Hello,
I am looking for a way to just apply a multiline box to a specific cell when someone goes in to update the row. The update mode is set to row (which is where I need it). If I can't do a multiline box, is there a way to do a small popup box, or allow editing to occur in the popover?
Thank you,
Alex
You will find more details on API for text editor on the “OPTIONS” tab on the below link:
http://help.infragistics.com/jQuery/2012.2/ui.igtexteditor
I hope this helps.
set the editorType to text and in the editor options make it multiline
example under columnSettings for grid:
{
columnKey: "NoteDetail",
editorType: 'text',
required: true,
editorOptions: {
button: "clear",
maxLength: 8000,
toUpper: false,
textMode: "multiline",
nullText: "<--ENTER-->",
type: "text",
height: 80,
width: 400,
validatorOptions: getValidationOptions
}
Just a bump. Thanks