how to configure 2 buttons of different colors red and green color to be visible to 2 different operators.
@TanyaS58 Hi Tanya, You can add both buttons in the section rule and setting visibility conditions for each based on the operator ID. For example, in the red button’s visibility settings, you can add an expression like @OperatorID() == "OperatorA" so that only Operator A can see it, and for the green button, use @OperatorID() == "OperatorB" so only Operator B can see it. To apply colors, go to the presentation tab of each button and use inline styles classes to set the red and green background colors. Thanks
@Sairohith How can we make the button 1 colour as red and others colour as green via skin rule?
@TanyaS58 you can set Button 1 to appear in red and all other buttons in green using the Skin rule by creating two custom button styles one with a red background and one with a green background. Open your application’s Skin rule, go to the Components tab, and create a new button style called “RedButtonStyle” where you set the background color to red and text color to white. Then create another style called “GreenButtonStyle” with a green background and white text. In the section where you use the buttons, set the Style format of Button 1 to “RedButtonStyle” from the Presentation tab, and for all other buttons, either apply “GreenButtonStyle” or make it the default style in the Skin rule. This way, Button 1 will always show in red, and the others will appear in green.
@Sairohith Thanks a lot