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
Just a bump. Thanks
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
}