Catch error from server when invalid Regular Expression used in Text Filter

This commit is contained in:
Owen Stephens 2017-10-27 10:53:27 +01:00
parent 88b10a2917
commit e4db4d7633

View File

@ -425,9 +425,15 @@ Refine.fetchRows = function(start, limit, onDone, sorting) {
} }
$.post( $.post(
"command/core/get-rows?" + $.param({ project: theProject.id, start: start, limit: limit }) + "&callback=?", "command/core/get-rows?" + $.param({ project: theProject.id, start: start, limit: limit }),
body, body,
function(data) { function(data) {
if(data.code === 'error') {
data = theProject.rowModel;
//maybe change the data to zero?
data.rows = [];
data.filtered = 0;
}
theProject.rowModel = data; theProject.rowModel = data;
// Un-pool objects // Un-pool objects
@ -445,7 +451,7 @@ Refine.fetchRows = function(start, limit, onDone, sorting) {
onDone(); onDone();
} }
}, },
"jsonp" "json"
); );
}; };