Showing posts with label attribute. Show all posts
Showing posts with label attribute. Show all posts

Wednesday, July 12, 2017

How do I change background color of a field in list screen in Maximo


1.       Here I am taking an example of asset application in which I want to make my asset to be in Green background color when it satisfies some condition.
2.       Navigate to a list screen from application designer, select the field which needs to be highlighted.







3.   Click on ‘Configure Conditional Properties’ and add below information like
·         Security Group : MAXEVERYONE
·         Conditional property : KKS_CLR
·         Property : cssclass : bggreen




Similar trick can be followed to other colors like (bgred, bgyellow ) etc.

----------------------------------------------------------------------------
All the messages below are just forwarded messages if some one feels hurt about it please add your comments we will remove the post.Host/author is not responsible for these posts.

Wednesday, January 6, 2016

How to wrap attributes in Birt based on space.


In the attribute which you want to wrap add the following code which wraps after every space to next line

if(dataSetRow["description"]!=null){
  dataSetRow["description "].replace(/ /g,"\n")
 }


/ /g à means white space anywhere in the string

----------------------------------------------------------------------------

All the messagesbelow are just forwarded messages if some one feels hurt about it please add your comments we will remove the post.Host/author is not responsible for these posts.