mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-11 17:58:41 +00:00
37 lines
662 B
JavaScript
37 lines
662 B
JavaScript
(function (jsOMS, undefined) {
|
|
jsOMS.TableView = function () {
|
|
this.table = null;
|
|
};
|
|
|
|
/**
|
|
* None, Pagination, Infinite
|
|
*/
|
|
jsOMS.TableView.prototype.setExtensible = function () {
|
|
|
|
};
|
|
|
|
jsOMS.TableView.prototype.add = function (element) {
|
|
|
|
};
|
|
|
|
jsOMS.TableView.prototype.addCollection = function (collection) {
|
|
|
|
};
|
|
|
|
jsOMS.TableView.prototype.remove = function (id) {
|
|
|
|
};
|
|
|
|
jsOMS.TableView.prototype.get = function (id) {
|
|
|
|
};
|
|
|
|
jsOMS.TableView.prototype.filter = function (id) {
|
|
|
|
};
|
|
|
|
jsOMS.TableView.prototype.request = function (filter) {
|
|
|
|
};
|
|
}(window.jsOMS = window.jsOMS || {}));
|