Get list of choice field values with display values
From a element descriptor I can get the dictionary elements of the field. I am using following code for the same.var gr = new GlideRecord('cmdb_ci_ip_address');gs.setLimit(1);gr.query();if (gr.next()){ var choices = gr.getElement('ip_version').getCho...