Corey Schwoebel
04/07/2021, 1:38 PMEric B
04/07/2021, 2:09 PMCorey Schwoebel
04/07/2021, 2:10 PMCorey Schwoebel
04/07/2021, 2:28 PMSandii
04/07/2021, 4:07 PMCorey Schwoebel
04/07/2021, 4:32 PMSandii
04/07/2021, 4:34 PMCorey Schwoebel
04/07/2021, 4:37 PMEric B
04/07/2021, 5:24 PMCorey Schwoebel
04/07/2021, 5:49 PMEric B
04/07/2021, 6:40 PMSandii
04/07/2021, 7:28 PMCorey Schwoebel
04/07/2021, 7:43 PMSandii
04/07/2021, 7:48 PMCorey Schwoebel
04/07/2021, 7:49 PMCorey Schwoebel
04/07/2021, 7:51 PMSandii
04/07/2021, 7:51 PMexports.onRequest = function onRequest(context) {
if (context.request.method == 'GET') {
//var form = renderForm(context);
var list = renderList(context);
context.response.writePage(list);
} else { }
}
function renderList(context) {
var list = serverWidget.createList({
title: 'Additional Locations',
hideNavBar: true
});
var itemId = context.request.parameters.itemId;
var networkViewData = getDataForList(itemId);
buildList(list, networkViewData);
list.clientScriptModulePath = './lib/networkview_jquery';
return list;
}
Sandii
04/07/2021, 7:52 PM/**
* @NModuleScope public
* @NApiVersion 2.x
*/
var length = jQuery(jQuery('#div__bodytab')[0].children[0].children).length;
for (var index = 0; index < length; index++) {
var rowId = jQuery(jQuery('#div__bodytab')[0].children[0].children)[index].id;
if (rowId) {
rowId = '#' + rowId;
var textContent = jQuery(jQuery(rowId)[0].children[1])[0].textContent;
textContent = textContent.trim();
switch (textContent) {
case '1-Critical':
colorLine(rowId, '#D69292');
break;
case '2-High':
colorLine(rowId, '#FFD9DD');
break;
case '3-Medium':
colorLine(rowId, '#F8FAD9');
break;
case '4-Low':
colorLine(rowId, '#E6FFE8');
break;
case '5-OToG':
colorLine(rowId, '#E8EBFA');
break;
default:
break;
}
}
}
function colorLine(rowId, color) {
var rowChildren = jQuery(rowId).children();
for (var i = 0; i < rowChildren.length; i++) {
rowChildren[Number(i)].style.setProperty('background-color', color, 'important');
}
}
Sandii
04/07/2021, 7:52 PMmichoel
04/07/2021, 11:07 PMbattk
04/07/2021, 11:10 PMbattk
04/07/2021, 11:10 PMCorey Schwoebel
04/08/2021, 4:46 PM