Mantri
February 17, 2023, 6:27am
1
Hi Team,
I asked a question earlier on how to mask the data in a Web Application. I was able to use Set Attribute to achieve my requirement
Hi @sumit.sagar and @rajasri.muthaiya
I was able to achieve this requirement using Set Attribute action in Web Mode.
I changed the font to the unreadable font of SAPIcons and met the desired requirement.
[image]
Now my requirement is to mask all the phone numbers displayed in the table row of Phone Number.
I want the output, something like below
I know I should again use Set Attribute, but how do I apply set attribute on all the cells of table row?
Mantri
February 18, 2023, 4:54pm
2
Can someday help me with this?
How can I use an action for all the rows in my Phone Number column?
bhuvan
February 20, 2023, 4:04am
3
Hi @prateek.mantri ,
Please review control selector. If control selector follow specific pattern, you can use loop to create selector pattern (manual selector) and then use Set Attribute to mask phone number.
Mantri
February 21, 2023, 11:35am
4
HI @bhuvan
The elements are not following any pattern.
Just that, the css3selector for the cell in first row is
#customers > :nth-child(1) > :nth-child(2) > :nth-child(2)
for the second row is -
#customers > :nth-child(1) > :nth-child(3) > :nth-child(2)
Is there a way I can dynamically change the css3selector?