(ui) add refresh method to jquery.bootgrid.js, temporary added this into the compiled js file should extension should probably move to somewhere else.

This commit is contained in:
Ad Schellevis 2015-08-13 17:13:18 +02:00
parent 522ba38061
commit 59deb5f7c8

View File

@ -1466,6 +1466,19 @@
return this;
};
/**
* refresh grid (OPNsense addition)
*
* @method reload
* @chainable
**/
Grid.prototype.refresh = function()
{
loadData.call(this);
return this;
};
/**
* Removes rows by ids. Removes selected rows if no ids are provided.
*