TASK-230 Delete ldap directories xmlform and templates
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
function redirectPage(page){
|
||||
window.location = page;
|
||||
}
|
||||
|
||||
function randomNum(inf, sup){
|
||||
numPos = sup - inf;
|
||||
aleat = Math.random() * numPos;
|
||||
aleat = Math.round(aleat);
|
||||
return parseInt(inf) + aleat;
|
||||
}
|
||||
|
||||
function renderStatus (data, metadata, record, rowIndex, columnIndex, store) {
|
||||
return "<span style=\"color: " + ((record.data.IMPORT == 1)? "#005E20" : "#FF0000") + ";\">" + record.data.STATUS.toUpperCase() + "</span>";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user