Tips Solution Themes in OneUI Layout: 1) Oneuiv2.1 2) Oneuiv2.1_blue 3) Oneuiv2.1_gen1 4) Oneuiv2.1_gold 5) Oneuiv2.1_green 6) Oneuiv2.1_onyx 7) Oneuiv2.1_orange 8) Oneuiv2.1_pink SSJS @Adjust on Javascript Dates: The following code will generate results that you may not expect: Eg : var myDate = new Date(2010,2,15); //this is MARCH 15th, months for JSDate is zero based myDate = @Adjust(myDate,0,-1,0,0,0,0); //--> expected date 2/15/2010 The key is to specify the "[InLocalTime]" keyword to the @Adjust function, so the correct call would be: @Adjust(myDate,0,-1,0,0,0,0,"[InLocalTime]") Open Links in Own window in Ext Lib App Layout: To open the link in its own window, you will use a simple JavaScript Function: window.open(“http://www.mydomain.com”, “_blank”); Now, if you try to add this to the href property, it will not work, because it would be regarded as a link and not a JavaScript Function. So, t...