AhmedRana
AhmedRana

Reputation: 503

Change the color of a field in maximo

I am trying to run validate on a field (SCHEDHLEDFINISH) in Maximo 7.5. I want to change the color of the textfield to red and possibly display an error icon on that field as well. Here what I have

public void validate() throws MXException, RemoteException
{   
     MboRemote vend = getMboValue().getMbo();
     vend.setValueNull("SCHEDULEDFINISH",11L);
     throw new MXApplicationException("ABC", "abc");
     //Set RED COLOR to field and display error icon
}

How is it possible? What property to set for that?

Upvotes: 2

Views: 1610

Answers (1)

Sun
Sun

Reputation: 2715

Are you okay with using the application's UI? I don't know if you can add an error icon, but you should be able to change the textfield to red.

How to change the color of a field using conditional expressions

Briefly:

  • Define conditional expression
  • Configure WOTRACK application to process the conditional expression
  • Verify your results

Exhaustive list of UI properties you can adjust

Upvotes: 2

Related Questions