mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-02-25 18:55:29 -06:00
New indexValidator
This commit is contained in:
parent
d3d3b0e58a
commit
53dbb3c51d
@ -130,12 +130,12 @@
|
|||||||
alert('Library is not initiated. Init first...');
|
alert('Library is not initiated. Init first...');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
//while (a < 100000){
|
|
||||||
// a++;
|
|
||||||
let out;
|
let out;
|
||||||
table.innerHTML = '';
|
table.innerHTML = '';
|
||||||
table.classList.remove('hidden');
|
table.classList.remove('hidden');
|
||||||
search.query(queryEl.value, senderIdEl.value, threadIdEl.value, null, startEl.value, endEl.value, limitEl.value, offsetEl.value, 0).then(function (result) {
|
let startDate = new Date(startEl.value);
|
||||||
|
let endDate = new Date(endEl.value);
|
||||||
|
search.query(queryEl.value, senderIdEl.value, threadIdEl.value, null, startDate, endDate, limitEl.value, offsetEl.value, 0).then(function (result) {
|
||||||
out = result;
|
out = result;
|
||||||
var th = document.createElement('tr');
|
var th = document.createElement('tr');
|
||||||
var th1 = document.createElement('td');
|
var th1 = document.createElement('td');
|
||||||
@ -164,7 +164,6 @@
|
|||||||
}).catch(function (err) {
|
}).catch(function (err) {
|
||||||
resultsEl.innerHTML = err;
|
resultsEl.innerHTML = err;
|
||||||
});
|
});
|
||||||
//}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
sendMessage.addEventListener('click', function () {
|
sendMessage.addEventListener('click', function () {
|
||||||
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user