Hello,
Am using a JQxGrid and the grid is as below.
gridColumns.push({ text: colNamesArray[i], dataField:colStr , align :
‘center’ , cellsalign:‘center’, width: 75, filterable: false , cellsformat: ‘F2’,
validation:
function (cell, value) {
if(isNaN(value)){
return {result:false,message:“Enter only number”};
}
if((pdxType != ‘PD3’ || pdxType != ‘PD4’ || pdxType != ‘PD4_Z’)){
if ((value < 0 || value > 100) && (planningType == ‘HeadCount’)) {
return { result: false, message: “Value should be in the 0-100 interval“};
}
if(planningType == ‘Hours’){
var column = cell.column;
var r = column.slice(8,column.length);
var maxValue = parseFloat(monthlyHrsArray[r–1]) * 100;
if (value > maxValue) {
return { result: false, message: “Value should be less then “+maxValue};
};
}
}
else {
if ((value <–100 || value > 100) && (planningType == ‘HeadCount’)) {
return { result: false, message: “Value should be in the -100 to 100 interval“};
}
if(planningType == ‘Hours’ ){
var column = cell.column;
var r = column.slice(8,column.length);
var maxValue = parseFloat(monthlyHrsArray[r–1]) * 100;
if (value > maxValue) {
return { result: false, message: “Value should be less then “+maxValue};
};
}
}
return true;
}
});
When i generate it in the jsp last row is hidden by the scroll bar… Is there any property that says the scroll bar not to hide the last Row??