cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X

Remove Clear icon from datetime picker

pshashipreetham
17-Peridot

Remove Clear icon from datetime picker

How can these be removed from the DateTime picker, Thingworx Version: 9.1.1 ?
DeepinScreenshot_select-area_20220223203835.png

@paic , @slangley@c_lowy , @CarlesColl 

Thanks,
Shashi.

Shashi Preetham
1 ACCEPTED SOLUTION

Accepted Solutions

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;
}

 

Shashi Preetham

View solution in original post

2 REPLIES 2

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;
}

 

Shashi Preetham

BTW, the

:not(.dummy)

in there does nothing. It's just very unprofessional from the article creator to do that.

Top Tags