SlideShare a Scribd company logo
TIBCO General Interface – CSS GUDIE

                                      Rohan Chandane
                                   8th September 2009




      © 2008 MindTree Consulting
Style Guide


  Applying style to basic GUI component
    Select a component
      Ctrl + Click
      From Component Hierarchy

    Choose Properties Editor
      Ctrl + 2
      Menu > Palettes > Properties Editor

    Most of the components have two-three common sections in properties
      Font and Box
      CSS




                                                                          Slide 2
Continued…


   Font (Some Common Properties)
     Name
     Size
     Weight
     Color

   Box (Some Common Properties)
     BG Color
     Padding
     Margin
     Border
     Text Align and Overflow




                                   Slide 3
Continued…


   CSS
     CSS Override
         This will override CSS class style

     CSS Rule
         This is CSS class name in CSS file




                                              Slide 4
Applying Style


  Setting Style
    Using component properties (examples)
      Name: accept existing font name
      Size: font size in px
      Weight: Bold/Normal
      Color : [Hex code, Eg. #00FF00]
      BG Color: [Hex code, Eg. #00FF00]
      Padding: padding in px [Eg. 5 or 5 10 5 10]
      Border: [Eg. Solid 1px, Solid 1px #b90010, dashed 2px #00FF00]
      Overflow : Scroll/Hidden/Expand




                                                                       Slide 5
Continued…


   Using CSS Override
     Style which is unable to achieved using basic styling properties, CSS override
     allow to write actual CSS syntax.
     Eg.
       border-top:solid 1px #c6c6c6;border-bottom:solid 1px #c6c6c6;border-right:solid 1px
       #c6c6c6;

     This can be also used to override CSS Rule (which is CSS calss)




                                                                                             Slide 6
Continued…


   CSS Rule
     This is the place where we can specify CSS class from the CSS Style file
     CSS Style class file can be created using
       Menu > File > New > CSS File

     CSS Class can be written like this
       .cssClassName{
             [some CSS style];
       }
     While writing the class name in the CSS Rule Name property it should be
     without ‘ . ’ (dot)
       Eg.




                                                                                Slide 7
CSS Override


  Overriding of CSS styles in GI



        CSS Rule (CSS Class)




           CSS Override            This will override CSS class’s style




         Styling Properties        This will override CSS Override’s style




                                                                             Slide 8
Different ways to apply Style


  CSS File
  Overriding default CSS
  Dynamic Property File
  CDF document
  Component Editing
  Value Template




                                Slide 9
Continued…


  CSS File
    Create CSS file (Menu > File > New > CSS File)
    Eg. : Style.css
    .bottonRight{
         background: url(dialog-overlay_squard-cornered.gif) bottom left no-repeat;
    }

    .formBoxHeaderText{
         font-family: Tahoma,Arial,sans-serif;
         font-size: 13px;
         color: #001f45;
         font-weight: bold;
    }

    Use this class using ‘CSS Rule Name’ Property
Continued…


    Project File Panel Setting
     To see the effect of the style on UI Screen, Right click on Style.css file. Click on
     Auto Load.
     Auto Load option can be changed from Edit Profile… Option too. You can either
     keep it Auto load at application init or can load it manually.
     Whenever changes made in style and want to see how it reflect on screen, it
     need to Load/Reload option



             Context Menu showing option
             - Auto Load
             - Edit Profile…
             - Load/Reload
Continued…


  Overriding default(master) CSS
   There are default CSS classes for UI components, set by General
   Interface in CSS file.
   There are different CSS files for different browsers
     For Internet explorer , at JSXcssieJSX.css
     For Firefox , at JSXcssfxJSX.css
     For Safari , at JSXcsssafJSX.css

   To change the particular component ‘s style in GI, it need to find CSS
   class for that component from JSX.css and override it in user created CSS
   file
Continued…


   To override GI default CSS class, it need to prefix #JSX
   Eg. To override GI’s Dialog Box CSS class, it should be like this
     Here, overriding border-width from 1px to 0px. Default is 1px

      #JSX .jsx30dialog {
               border-style: solid;
               border-width: 0px;
               border-color: #c6c6c6 #a6a6a6 #a6a6a6 #c6c6c6;
     }
Continued…


   jsx.css can also be tweaked. Its better idea to use modified duplicate of
   jsx.css than actually changing jsx.css
Continued…


   To apply style to GI’s label component, it need to write in this way
     #JSX .[classname]{}
     EG. #JSX .headerText{…}
Continued…


  Dynamic Property File
   Use of this file is useful while applying CSS and reusability
     While applying CSS using Properties Editor, many times CSS style gets repeat for
     repeated components
       Eg. For Textboxes used on form, We need to override border for certain textbox
       repeatedly using Border property from Property Editor, Then instead of repeating same
       style [like ‘solid 1px #DDFFGG’] at all the places, it is good practice to use Dynamic
       Property File.
       In this file we create key-value pair, where key is name which we want to give for
       particular style and value is CSS style which need to apply against the name.
Continued…


      Eg. @TextBoxBorder : solid 1px #DDFFGG;
      Where ‘@TextBoxBorder ‘ is key and ‘solid 1px #DDFFGG;’ is value
      Other than this it need to specify type for which property we need to create this key-
      value pair. For example –
         jsxtext
         jsxbgcolor
         jsxborder etc.
      By right clicking on that particular property in Properties Editor, key name will be
      appear in context menu. Select that as property value.




                                   Dynamic Property File view for setting CSS key-values
Continued…


      The benefit of using this file is, when ever it need to change style for the component,
      style needs to update dynamic property file and it will be reflected to all as key is set
      for all related component. It helps to reduce change in style for all components needed.




        Right click on Border will give
        option in Dynamic Property File
Continued…


  CDF document
   Style can be set using CDF document
   CDF document attribute
     jsxstyle
       Eg. <record id=“01” jsxtext=“Hello” jsxstyle=“color:#00FF00”/>

   Can be used with matrix, tree, table
Continued…


  Component Editing
   Some component need to be styled by adding some tags into it’s xml
   structure
     This is when, it doesn’t have properties to define class or they doesn’t have
     specific CSS properties

   Eg. Matrix Component
     In order to style its alternative rows all together (columns) it need to add
     ‘<xslparameters >’ tag

      <xslparameters jsx_rowbg1="#E4EEFA" jsx_rowbg2="#C4D6EC">
      </xslparameters>
Continued…


  Value Template
   For Matrix component, formatting or coloring of data is achieved using
   fragments of XSL style sheets known as value templates
   Columns of a Matrix component have a property field called value
   template where XSL can be placed to affect the output during runtime
   http://www.tibcommunity.com/docs/DOC-1594
Continued…


   Sample Value Template XSL
   <xsl:template match="record" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
   <div>
   <xsl:choose>
   <xsl:when test="{0}='United Kingdom'">
   <xsl:attribute name="style"> background-color: pink;</xsl:attribute></xsl:when>
   </xsl:choose> <xsl:value-of select="{0}"/> </div> </xsl:template>


     ‘record’ is the <record> tag in CDF, which is the data provider for matrix
Continued…


     ‘record’ is the <record> tag in CDF, which is the data provider for matrix
     <xsl:when test="{0}='United Kingdom'">
       It means when column is ‘United Kingdom’
       Example
Component Specific Style


  Matrix
    Applying CSS to matrix component in different ways
      xslparameters tag
      Matrix Components CSS properties
      Value templates
      Dynamic property file

    There is no direct method to apply CSS class directly to matrix or its cells
Imagination Action Joy




                                  www.mindtree.com

     © 2008 MindTree Consulting

More Related Content

PDF
Introduction to CSS3
PPTX
PDF
CSS3 Introduction
PDF
03html Css
PPTX
Css for Development
PDF
CSS - OOCSS, SMACSS and more
DOCX
Introduction to CSS3
CSS3 Introduction
03html Css
Css for Development
CSS - OOCSS, SMACSS and more

What's hot (20)

PDF
PDF
Pfnp slides
PDF
Unit 3 (it workshop).pptx
PPTX
New Elements & Features in CSS3
PDF
Unit 2 (it workshop)
PDF
Css 1. -_introduction_2010-11_
PPT
Css training tutorial css3 &amp; css4 essentials
PPT
Introduction to CSS
KEY
CSS and CSS3
PDF
4. Web Technology CSS Basics-1
PPT
Getting started with html5
PDF
Fundamental CSS3
PPTX
Introduction to HTML and CSS
PDF
CSS: a rapidly changing world
ODP
PPTX
PDF
2 introduction css
PPT
Css Founder.com | Cssfounder org
PDF
SMACSS Workshop
PPTX
CSS101 - Concept Fundamentals for non UI Developers
Pfnp slides
Unit 3 (it workshop).pptx
New Elements & Features in CSS3
Unit 2 (it workshop)
Css 1. -_introduction_2010-11_
Css training tutorial css3 &amp; css4 essentials
Introduction to CSS
CSS and CSS3
4. Web Technology CSS Basics-1
Getting started with html5
Fundamental CSS3
Introduction to HTML and CSS
CSS: a rapidly changing world
2 introduction css
Css Founder.com | Cssfounder org
SMACSS Workshop
CSS101 - Concept Fundamentals for non UI Developers
Ad

Similar to TIBCO General Interface - CSS Guide (20)

PPT
Cascading Style Sheet
PPTX
session2 cascading style sheet course.pptx
PPTX
session2 css cascade style sheet course.pptx
PPTX
session2_cascading_style_sheet_cssc.pptx
PDF
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
PPT
DW_lesson2aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.ppt
PPTX
Web topic 15 1 basic css layout
PPT
CSS Cascading Style Sheet Introduction slides
PPT
DW_lesson2.ppt
PPT
DW_lesson2.ppt
PPT
DW_lesson2.ppt
PPT
DW_lesson2.ppt
PPT
DW_lesson2.ppt
PPT
DW_lesson2 ntro_HTML_CSS_preso ntro_HTML_CSS_preso.ppt
PPTX
Cordova training - Day 2 Introduction to CSS 3
PDF
Webpage style with CSS
PDF
HowTo_CSS
PDF
HowTo_CSS
Cascading Style Sheet
session2 cascading style sheet course.pptx
session2 css cascade style sheet course.pptx
session2_cascading_style_sheet_cssc.pptx
Girl Develop It Cincinnati: Intro to HTML/CSS Class 4
DW_lesson2aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.ppt
Web topic 15 1 basic css layout
CSS Cascading Style Sheet Introduction slides
DW_lesson2.ppt
DW_lesson2.ppt
DW_lesson2.ppt
DW_lesson2.ppt
DW_lesson2.ppt
DW_lesson2 ntro_HTML_CSS_preso ntro_HTML_CSS_preso.ppt
Cordova training - Day 2 Introduction to CSS 3
Webpage style with CSS
HowTo_CSS
HowTo_CSS
Ad

More from Rohan Chandane (13)

PDF
Agile Maturity Model, Certified Scrum Master!
PDF
Agile & Scrum, Certified Scrum Master! Crash Course
PDF
An Introduction To Testing In AngularJS Applications
PDF
Agile :what i learnt so far
PDF
Backbone js
PDF
PPTX
Sencha / ExtJS : Object Oriented JavaScript
PDF
Blogger's Park Presentation (Blogging)
PDF
J2ME GUI Programming
PDF
Parsing XML in J2ME
PDF
J2ME RMS
PDF
J2ME IO Classes
PDF
Java2 MicroEdition-J2ME
Agile Maturity Model, Certified Scrum Master!
Agile & Scrum, Certified Scrum Master! Crash Course
An Introduction To Testing In AngularJS Applications
Agile :what i learnt so far
Backbone js
Sencha / ExtJS : Object Oriented JavaScript
Blogger's Park Presentation (Blogging)
J2ME GUI Programming
Parsing XML in J2ME
J2ME RMS
J2ME IO Classes
Java2 MicroEdition-J2ME

Recently uploaded (20)

PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PDF
Modernizing your data center with Dell and AMD
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
KodekX | Application Modernization Development
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPTX
Big Data Technologies - Introduction.pptx
PDF
Machine learning based COVID-19 study performance prediction
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Empathic Computing: Creating Shared Understanding
PPTX
Understanding_Digital_Forensics_Presentation.pptx
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Modernizing your data center with Dell and AMD
Spectral efficient network and resource selection model in 5G networks
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
KodekX | Application Modernization Development
Building Integrated photovoltaic BIPV_UPV.pdf
Digital-Transformation-Roadmap-for-Companies.pptx
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Big Data Technologies - Introduction.pptx
Machine learning based COVID-19 study performance prediction
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Reach Out and Touch Someone: Haptics and Empathic Computing
Empathic Computing: Creating Shared Understanding
Understanding_Digital_Forensics_Presentation.pptx

TIBCO General Interface - CSS Guide

  • 1. TIBCO General Interface – CSS GUDIE Rohan Chandane 8th September 2009 © 2008 MindTree Consulting
  • 2. Style Guide Applying style to basic GUI component Select a component Ctrl + Click From Component Hierarchy Choose Properties Editor Ctrl + 2 Menu > Palettes > Properties Editor Most of the components have two-three common sections in properties Font and Box CSS Slide 2
  • 3. Continued… Font (Some Common Properties) Name Size Weight Color Box (Some Common Properties) BG Color Padding Margin Border Text Align and Overflow Slide 3
  • 4. Continued… CSS CSS Override This will override CSS class style CSS Rule This is CSS class name in CSS file Slide 4
  • 5. Applying Style Setting Style Using component properties (examples) Name: accept existing font name Size: font size in px Weight: Bold/Normal Color : [Hex code, Eg. #00FF00] BG Color: [Hex code, Eg. #00FF00] Padding: padding in px [Eg. 5 or 5 10 5 10] Border: [Eg. Solid 1px, Solid 1px #b90010, dashed 2px #00FF00] Overflow : Scroll/Hidden/Expand Slide 5
  • 6. Continued… Using CSS Override Style which is unable to achieved using basic styling properties, CSS override allow to write actual CSS syntax. Eg. border-top:solid 1px #c6c6c6;border-bottom:solid 1px #c6c6c6;border-right:solid 1px #c6c6c6; This can be also used to override CSS Rule (which is CSS calss) Slide 6
  • 7. Continued… CSS Rule This is the place where we can specify CSS class from the CSS Style file CSS Style class file can be created using Menu > File > New > CSS File CSS Class can be written like this .cssClassName{ [some CSS style]; } While writing the class name in the CSS Rule Name property it should be without ‘ . ’ (dot) Eg. Slide 7
  • 8. CSS Override Overriding of CSS styles in GI CSS Rule (CSS Class) CSS Override This will override CSS class’s style Styling Properties This will override CSS Override’s style Slide 8
  • 9. Different ways to apply Style CSS File Overriding default CSS Dynamic Property File CDF document Component Editing Value Template Slide 9
  • 10. Continued… CSS File Create CSS file (Menu > File > New > CSS File) Eg. : Style.css .bottonRight{ background: url(dialog-overlay_squard-cornered.gif) bottom left no-repeat; } .formBoxHeaderText{ font-family: Tahoma,Arial,sans-serif; font-size: 13px; color: #001f45; font-weight: bold; } Use this class using ‘CSS Rule Name’ Property
  • 11. Continued… Project File Panel Setting To see the effect of the style on UI Screen, Right click on Style.css file. Click on Auto Load. Auto Load option can be changed from Edit Profile… Option too. You can either keep it Auto load at application init or can load it manually. Whenever changes made in style and want to see how it reflect on screen, it need to Load/Reload option Context Menu showing option - Auto Load - Edit Profile… - Load/Reload
  • 12. Continued… Overriding default(master) CSS There are default CSS classes for UI components, set by General Interface in CSS file. There are different CSS files for different browsers For Internet explorer , at JSXcssieJSX.css For Firefox , at JSXcssfxJSX.css For Safari , at JSXcsssafJSX.css To change the particular component ‘s style in GI, it need to find CSS class for that component from JSX.css and override it in user created CSS file
  • 13. Continued… To override GI default CSS class, it need to prefix #JSX Eg. To override GI’s Dialog Box CSS class, it should be like this Here, overriding border-width from 1px to 0px. Default is 1px #JSX .jsx30dialog { border-style: solid; border-width: 0px; border-color: #c6c6c6 #a6a6a6 #a6a6a6 #c6c6c6; }
  • 14. Continued… jsx.css can also be tweaked. Its better idea to use modified duplicate of jsx.css than actually changing jsx.css
  • 15. Continued… To apply style to GI’s label component, it need to write in this way #JSX .[classname]{} EG. #JSX .headerText{…}
  • 16. Continued… Dynamic Property File Use of this file is useful while applying CSS and reusability While applying CSS using Properties Editor, many times CSS style gets repeat for repeated components Eg. For Textboxes used on form, We need to override border for certain textbox repeatedly using Border property from Property Editor, Then instead of repeating same style [like ‘solid 1px #DDFFGG’] at all the places, it is good practice to use Dynamic Property File. In this file we create key-value pair, where key is name which we want to give for particular style and value is CSS style which need to apply against the name.
  • 17. Continued… Eg. @TextBoxBorder : solid 1px #DDFFGG; Where ‘@TextBoxBorder ‘ is key and ‘solid 1px #DDFFGG;’ is value Other than this it need to specify type for which property we need to create this key- value pair. For example – jsxtext jsxbgcolor jsxborder etc. By right clicking on that particular property in Properties Editor, key name will be appear in context menu. Select that as property value. Dynamic Property File view for setting CSS key-values
  • 18. Continued… The benefit of using this file is, when ever it need to change style for the component, style needs to update dynamic property file and it will be reflected to all as key is set for all related component. It helps to reduce change in style for all components needed. Right click on Border will give option in Dynamic Property File
  • 19. Continued… CDF document Style can be set using CDF document CDF document attribute jsxstyle Eg. <record id=“01” jsxtext=“Hello” jsxstyle=“color:#00FF00”/> Can be used with matrix, tree, table
  • 20. Continued… Component Editing Some component need to be styled by adding some tags into it’s xml structure This is when, it doesn’t have properties to define class or they doesn’t have specific CSS properties Eg. Matrix Component In order to style its alternative rows all together (columns) it need to add ‘<xslparameters >’ tag <xslparameters jsx_rowbg1="#E4EEFA" jsx_rowbg2="#C4D6EC"> </xslparameters>
  • 21. Continued… Value Template For Matrix component, formatting or coloring of data is achieved using fragments of XSL style sheets known as value templates Columns of a Matrix component have a property field called value template where XSL can be placed to affect the output during runtime http://www.tibcommunity.com/docs/DOC-1594
  • 22. Continued… Sample Value Template XSL <xsl:template match="record" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <div> <xsl:choose> <xsl:when test="{0}='United Kingdom'"> <xsl:attribute name="style"> background-color: pink;</xsl:attribute></xsl:when> </xsl:choose> <xsl:value-of select="{0}"/> </div> </xsl:template> ‘record’ is the <record> tag in CDF, which is the data provider for matrix
  • 23. Continued… ‘record’ is the <record> tag in CDF, which is the data provider for matrix <xsl:when test="{0}='United Kingdom'"> It means when column is ‘United Kingdom’ Example
  • 24. Component Specific Style Matrix Applying CSS to matrix component in different ways xslparameters tag Matrix Components CSS properties Value templates Dynamic property file There is no direct method to apply CSS class directly to matrix or its cells
  • 25. Imagination Action Joy www.mindtree.com © 2008 MindTree Consulting