Community Tip - You can Bookmark boards, posts or articles that you'd like to access again 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.