Untitled

 avatar
unknown
plain_text
a year ago
374 B
5
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