T
Thierry Ciot
Guest
Simon, I understand you may want to use JavaScript in some cases but in most of the times you should be able to tailor the UI using CSS and have specific rule for each blueprint. We have 3 CSS root level rules we add to the body element based on which blueprint the UI is running. The CSS rules are: rbs-ui-template-type-default (Traditional) rbs-ui-template-type-2 (Modern Vertical BP) rbs-ui-template-type-custom So far example, this will make the object view title red for Modern Vertical BP and green for traditional .rbs-ui-template-type-2 .rbs-objectViewTitle { color: red; } .rbs-ui-template-type-2 .rbs-objectViewTitle { color: green; } It is the same technique we have implemented for differentiating between desktop vs mobile and smartphone. See http://documentation.progress.com/output/rb/doc/#page/rb%2Fcustom-css.html for details. Thierry.
Continue reading...
Continue reading...