Hi Guys..
Just simple question… about Grid validation in columns
by default using the example code :
****************************************************
{ text: ‘Quantity’, datafield: ‘quantity’, width: 70, cellsalign: ‘right’, columntype: ‘numberinput’,
validation: function (cell, value) {
if (value < 0 || value > 150) {
return { result: false, message: “Quantity should be in the 0-150 interval” };
}
return true;
}
}
****************************************************
the validate message will appear in bottom of row grid (it will not work if i set autoheight : true) so,
can you provide code @ example ,how to change the positon of validate massage grid ?