Modified Version jTable JQuery plugin ( jTable.org )
Added refresh buttons:
. When user click ot the button , it updates current page/row using AJAX .
Refresh row definition: action:
refreshRowAction - create refresh row button and define refresh row action
for example :
actions: {
refreshRowAction: '/StatusQuery/RefreshRow',
listAction: '/StatusQuery/GetQueList'
Added ability describe table column width in pixel size.
For example:
},
Total: {
title: 'Total',
sorting: true,
width: '80px'
},
Added number data type
For example:
),
Count: {
title: 'Queues',
key: false,
sorting: true,
width: '80px',
type: 'number'
}
custom javascript action for table tr
for example :
actions: {
refreshRowAction: '/StatusQuery/RefreshRow',
listAction: '/StatusQuery/GetQueList',
customRowOperation: makeRowCSS // where makeRowCSS(table_tr_object) - javascript function
custom showing page message
for example :
actions: {
refreshRowAction: '/StatusQuery/RefreshRow',
listAction: '/StatusQuery/GetQueList',
customRowOperation: makeRowCSS, // where makeRowCSS(table_tr_object) - javascript function
customShowInfo: showPageInfo // where showPageInfo(stringMessage) - javascript function
dynamic data refresh
for example:
actions: {
refreshRowAction: '/DataQuery/GetServicesRow',
refreshDataAction: '/DataQuery/GetServicesData',
listAction: '/DataQuery/GetServicesList',
<a id="refresh" href="#" class="btn btn-info" onclick="DataRefresh(); return false;"> Status</a>
const DataRefresh = () => ) {
$('#ActivitiesTableContainer').jtable('data_refresh');
}
Example:
/* HTML5 Web Worker function */
const worker_ajax = (url, data, callback, type) => {
var data_array, data_string, idx, req, value;
if (data === null || typeof (data) === "undefined") {
data = {};
}
if (callback === null || typeof (callback) === "undefined" ) {
callback = function () { };
}
if (type === null || typeof (type) === "undefined") {
type = 'GET';
}
data_array = [];
for (idx in data) {
value = data[idx];
data_array.push("" + idx + "=" + value);
}
data_string = data_array.join("&");
req = new XMLHttpRequest();
req.open(type, url, false);
req.setRequestHeader("Content-type", "application/json");
req.onreadystatechange = function () {
if (req.readyState === 4 && req.status === 200) {
return callback(req.responseText);
}
};
req.send(data_string);
return req;
};
const GetAllStatusesProcess = () => {
worker_ajax("/DataQuery/GetAllStatusesProcess", { 'send': true }, function (data) {
postMessage(data);
}, 'POST');
setTimeout("GetAllStatusesProcess()", 2000);
}
GetAllStatusesProcess();
/*
* Load HTML 5 Async worker
*/
$('#ActivitiesTableContainer').jtable('load', undefined, function () {
if (typeof (worker) === "undefined" || worker === null ) {
worker = new Worker("../js/job_workers.js"); // create html5 worker object
worker.onmessage = function (event) { // get message from async worker
var data = event.data;
refreshStatusLines(data);
};
}
});
function refreshStatusLines(data) {
$('#ActivitiesTableContainer').jtable('completeRefresh',
JSON.parse(data)); // refresh exist fields
}
Copyright (C) 2016-2018 by Vladimir Novick http://www.linkedin.com/in/vladimirnovick ,
[email protected] , http://www.sgcombo.com , https://github.com/Vladimir-Novick
Copyright (C) 2011-2014 by Halil İbrahim Kalkan (http://www.halilibrahimkalkan.com)
Modified : 2014-2017/2018 by Vladimir Novick http://www.linkedin.com/in/vladimirnovick
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.