Fix empty row on nm response

This commit is contained in:
Hadi Nategh 2018-07-04 17:09:44 +02:00
parent 2bc4f2b8a4
commit 8bdf9e27f6

View File

@ -876,7 +876,7 @@ var et2_dataview_controller = (function(){ "use strict"; return Class.extend({
if(_response.total == 0)
{
this.self._emptyRow();
this.self._emptyRow(true);
}
else
{
@ -900,7 +900,7 @@ var et2_dataview_controller = (function(){ "use strict"; return Class.extend({
*/
_emptyRow: function(_noRows)
{
var noRows = _noRows || true;
var noRows = !_noRows ? false : true;
jQuery(".egwGridView_empty",this._grid.innerTbody).remove();
if(typeof this._grid._rowProvider != "undefined" && this._grid._rowProvider.getPrototype("empty"))
{