Service Catalog: make all catalog variables read only on the RITM form
function
onLoad(){
$(variable_map).select("item").each(function (elmt){
try {
if(elmt.getAttribute('qname') != "purchase_ledger") {
g_form.setReadOnly('variables.' + elmt.getAttribute('qname'),true);
}
} catch (err) {
}
});
}
Comments
Post a comment