read_parameter = {
first : '(0)',
last : '(0)',
count : 20
};
function read_list_init() {
var str = '
';
str += '| prev next 0 |
';
str += '| rank | id | title | processName |
';
str += ''
str += '
';
$('#content').html(str);
$('#next').click(function() {
read_list_next();
});
$('#prev').click(function() {
read_list_prev();
});
read_parameter.first = '(0)';
read_parameter.last = '(0)';
read_list_next();
}
function read_list_next(id) {
var id = (id ? id : read_parameter.last);
$.ajax({
type : 'get',
dataType : 'json',
url : '../jaxrs/read/list/' + id + '/next/' + read_parameter.count,
xhrFields : {
'withCredentials' : true
},
crossDomain : true
}).done(function(json) {
if (json.type == 'success') {
if (json.data.length > 0) {
read_parameter.first = json.data[0].id;
read_parameter.last = json.data[json.data.length - 1].id;
} else {
read_parameter.first = '(0)';
}
read_list_grid(json);
}
}).always(function(json) {
$('#result').html(JSON.stringify(json, null, 4));
});
}
function read_list_prev(id) {
var id = (id ? id : read_parameter.first);
$.ajax({
type : 'get',
dataType : 'json',
url : '../jaxrs/read/list/' + id + '/prev/' + read_parameter.count,
xhrFields : {
'withCredentials' : true
},
crossDomain : true
}).done(function(json) {
if (json.type == 'success') {
if (json.data.length > 0) {
read_parameter.first = json.data[0].id;
read_parameter.last = json.data[json.data.length - 1].id;
} else {
read_parameter.last = '(0)';
}
read_list_grid(json);
}
}).always(function(json) {
$('#result').html(JSON.stringify(json, null, 4));
});
}
function read_listWithApplication_init() {
var str = '';
$('#content').html(str);
$('#next').click(function() {
read_listWithApplication_next();
});
$('#prev').click(function() {
read_listWithApplication_prev();
});
read_parameter.first = '(0)';
read_parameter.last = '(0)';
}
function read_listWithApplication_next(id) {
var id = (id ? id : read_parameter.last);
$.ajax({
type : 'get',
dataType : 'json',
url : '../jaxrs/read/list/' + read_parameter.last + '/next/' + read_parameter.count + '/application/' + $('#applicationFlag').val(),
xhrFields : {
'withCredentials' : true
},
crossDomain : true
}).done(function(json) {
if (json.type == 'success') {
if (json.data.length > 0) {
read_parameter.first = json.data[0].id;
read_parameter.last = json.data[json.data.length - 1].id;
} else {
read_parameter.first = '(0)';
}
read_list_grid(json);
}
}).always(function(json) {
$('#result').html(JSON.stringify(json, null, 4));
});
}
function read_listWithApplication_prev(id) {
var id = (id ? id : read_parameter.first);
$.ajax({
type : 'get',
dataType : 'json',
url : '../jaxrs/read/list/' + id + '/prev/' + read_parameter.count + '/application/' + $('#applicationFlag').val(),
xhrFields : {
'withCredentials' : true
},
crossDomain : true
}).done(function(json) {
if (json.type == 'success') {
if (json.data.length > 0) {
read_parameter.first = json.data[0].id;
read_parameter.last = json.data[json.data.length - 1].id;
} else {
read_parameter.last = '(0)';
}
read_list_grid(json);
}
}).always(function(json) {
$('#result').html(JSON.stringify(json, null, 4));
});
}
function read_listWithProcess_init() {
var str = '';
$('#content').html(str);
$('#next').click(function() {
read_listWithProcess_next();
});
$('#prev').click(function() {
read_listWithProcess_prev();
});
read_parameter.first = '(0)';
read_parameter.last = '(0)';
}
function read_listWithProcess_next(id) {
var id = (id ? id : read_parameter.last);
$.ajax({
type : 'get',
dataType : 'json',
url : '../jaxrs/read/list/' + id + '/next/' + read_parameter.count + '/process/' + $('#processFlag').val(),
xhrFields : {
'withCredentials' : true
},
crossDomain : true
}).done(function(json) {
if (json.type == 'success') {
if (json.data.length > 0) {
read_parameter.first = json.data[0].id;
read_parameter.last = json.data[json.data.length - 1].id;
} else {
read_parameter.first = '(0)';
}
read_list_grid(json);
}
}).always(function(json) {
$('#result').html(JSON.stringify(json, null, 4));
});
}
function read_listWithProcess_prev(id) {
var id = (id ? id : read_parameter.first);
$.ajax({
type : 'get',
dataType : 'json',
url : '../jaxrs/read/list/' + id + '/prev/' + read_parameter.count + '/process/' + $('#processFlag').val(),
xhrFields : {
'withCredentials' : true
},
crossDomain : true
}).done(function(json) {
if (json.type == 'success') {
if (json.data.length > 0) {
read_parameter.first = json.data[0].id;
read_parameter.last = json.data[json.data.length - 1].id;
} else {
read_parameter.last = '(0)';
}
read_list_grid(json);
}
}).always(function(json) {
$('#result').html(JSON.stringify(json, null, 4));
});
}
function read_list_grid(json) {
if (json.data && json.data.length > 0) {
str = '';
$.each(json.data, function(index, item) {
str += '';
str += '| ' + item.rank + ' | ';
str += '' + item.id + ' | ';
str += '' + item.title + ' | ';
str += '' + item.processName + ' | ';
str += '
';
});
$('#total').html(json.count);
$('#grid').html(str);
} else {
$('#total').html('0');
$('#grid').html('');
}
}
function read_listCountWithApplication() {
$('#result').html('');
$('#content').html('');
$.ajax({
type : 'get',
dataType : 'json',
url : '../jaxrs/read/list/count/application',
xhrFields : {
'withCredentials' : true
},
crossDomain : true
}).always(function(json) {
$('#result').html(JSON.stringify(json, null, 4));
});
}
function read_listCountWithProcess_init() {
$('#result').html('');
str = '';
$('#content').html(str);
$('#get').click(function() {
read_listCountWithProcess();
});
}
function read_listCountWithProcess() {
$('#result').html('');
$('#content').html('');
$.ajax({
type : 'get',
dataType : 'json',
url : '../jaxrs/read/list/count/application/' + $('#applicationFlag').val() + '/process',
xhrFields : {
'withCredentials' : true
},
crossDomain : true
}).always(function(json) {
$('#result').html(JSON.stringify(json, null, 4));
});
}
function read_countWithPerson_init() {
$('#result').html('');
str = '';
$('#content').html(str);
$('#get').click(function() {
read_countWithPerson();
});
}
function read_countWithPerson() {
$('#result').html('');
$('#content').html('');
$.ajax({
type : 'get',
dataType : 'json',
url : '../jaxrs/read/count/' + $('#person').val(),
xhrFields : {
'withCredentials' : true
},
crossDomain : true
}).always(function(json) {
$('#result').html(JSON.stringify(json, null, 4));
});
}
function read_get_init() {
$('#result').html('');
str = '';
$('#content').html(str);
$('#get').click(function() {
read_get();
});
$('#reference').click(function() {
read_reference();
});
$('#process').click(function() {
read_process();
});
$('#update').click(function() {
read_update();
});
}
function read_get() {
}
function read_update() {
}
function read_reference() {
}
function read_process() {
}
function read_filter_init() {
}