ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: DotNetRocks on October 27, 2017, 11:34:19 pm
-
Hello,
I am working to add a custom validation rule for a column. When I have it set to warning: false; it will show the error message like it should. however, when I change it to a warning validation, i only get the blue icon in the top right corner and no message. In the documentation it states that the message will appear for warnings and non warnings.
Below is the code I am using.
validations: [
{
type: function(ui) {
var values = $('#invoice-detail-grid').pqGrid('option', 'dataModel.data');
for (var i = 0; i < values.length; i++) {
if (( values[ui.column.dataIndx] ===ui.value) &&
(values['AnotherColumn'] === ui.rowData.AnotherColumn) &&
(values['Testing'] === ui.rowData.Testing) &&
(values['ID'] !== ui.rowData.ID)) {
ui.msg = 'Some Error Message';
return false;
}
}
return true;
},
warn: true
}
]
Thanks!
-
warning message appears when cell is focused or hovered with mouse.
It also requires activation of pqTooltip.
grid.widget().pqTooltip(); //attach a tooltip.
Example: https://paramquery.com/pro/demos/editing_instant
-
We do not have a load function, is there another place we should put this?
-
It can also be put in create function.
create: function(){
this.widget().pqTooltip(); //attach a tooltip.
},