Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
How can these be removed from the DateTime picker, Thingworx Version: 9.1.1 ?
@paic , @slangley, @c_lowy , @CarlesColl
Thanks,
Shashi.
Solved! Go to Solution.
Just got the Solution from the Article: https://www.ptc.com/en/support/article/cs324593
The CSS Syntax for the issue is:
ptcs-datepicker::part(date-field-clear-button):not(.dummy):not(.dummy):not(.dummy):not(.dummy):not(.dummy) {
visibility: hidden;
}
Just got the Solution from the Article: https://www.ptc.com/en/support/article/cs324593
The CSS Syntax for the issue is:
ptcs-datepicker::part(date-field-clear-button):not(.dummy):not(.dummy):not(.dummy):not(.dummy):not(.dummy) {
visibility: hidden;
}
BTW, the
:not(.dummy)
in there does nothing. It's just very unprofessional from the article creator to do that.