Untitled

Anonymous
plain_text
07/08/2024 9:19 AM
500 B
22
Indexable
function processServiceCodes(cell, id, objectList) {
    var $cell = $(cell);
    if ($cell.html() != ' ') {
        var dialogText = objectList.map(function(obj) {
            return replaceSpecialCharacters(obj.name);
        }).join(', ');

        $cell.html($('<a href="#" onclick=\'showDialog("Service Codes", "' + dialogText + '")\'>Service Codes</a>'));
    }
}
Editor is loading...
Leave a Comment