Hi again,



If you want to use a reference variable, set the object attribute to "true" and get the reference as below:



<g:evaluate var="jvar_menu" object="true" jelly="true">


        var gr = new GlideRecord("u_cms_menu_table");


        gr.get(SYS_ID_HERE);


        gr;


</g:evaluate>



Then reference the jelly variable "jvar_menu" and its properties for example like this:



${jvar_menu.getDisplayValue('number')}



Hope this helps!


BR /Miriam