Hi All,
I am facing one issue while working with UiPath grid forms. I need to change background color of grid table (Textbox) when the checkbox is clicked.
I am able to do that however the text is disappearing after that.
Below is the code:
schema={
“attributes”:{
“style”:
“background-color:blue;”
}
}
Note : I am using advanced logic for this in UiPath forms.
Any help/suggestions please
Happy_Coding:
i All,
I am facing one issue while working with UiPath grid forms. I need to change background color of grid table (Textbox) when the checkbox is clicked.
I am able to do that however the text is disappearing after that.
Below is the code:
schema={
“attributes”:{
“style”:
“background-color:blue;”
}
}
Note : I am using advanced logic for this in UiPath forms.
Any help/suggestions please
Hi @Happy_Coding
The issue with the disappearing text is likely due to the fact that the background-color
attribute is overwriting the default background-color
for the textbox, which is white by default.
To resolve this issue, you can specify the text color in the style attribute as well.
schema={
“attributes”: {
“style”: “background-color: blue; color: white;”
}
}
Regards,
Kaviyarasu N
Thanks it worked. @Kaviyarasu_N
system
(system)
Closed
February 9, 2023, 9:50am
4
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.