Name

global.ElementDocumentIdAjax

Description

AJAX methods for the document_id element

Script

var ElementDocumentIdAjax = Class.create();

ElementDocumentIdAjax.prototype =  Object.extendsObject(AbstractAjaxProcessor, {
process: function() {
    if (this.getType() == "resolveDocumentId")
        this.resolveDocumentId(this.getName(), this.getValue());
    this.getRootElement().setAttribute("sysparm_ref", this.getParameter("sysparm_ref"));
},

resolveDocumentId: function(name, value) {
    var gr = new GlideRecord(name);
    gr.get(value);

    this.getRootElement().setAttribute("answer", gr.sys_meta.label + ': ' + gr.getDisplayValue());
},

type: "ElementDocumentIdAjax"
});

Sys ID

adac912f0a0a0b4a0017c274dacc189c

Offical Documentation

Official Docs: