XPages Extension library DOJO Tab container control CSS Modifications -


i want know, there way change style sheets of extension library dojo tab container control?

thanks & regards,

yogesh kashid

the best way change style sheets of extension library dojo tab container control create , use own css resource. way can change every single table part's , valid dojo tab container controls in application.

  1. create under resources\style sheet my.css file
  2. add style changes dojo tab classes in my.css file. style classes start "dijittab..." , can find them analyzing rendered page in browser. enter image description here changing tab labels red write e.g.
.dijittabcontainertopnone {   color: red; } 

3 . add my.css class theme

<theme extends="oneuiv2.1">   <resource>       <content-type>text/css</content-type>       <href>my.css</href>   </resource> </theme> 

Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -