0

I am using the Kendo-datepicker,i want to remove the CSS class "k-picker-wrap" which is appending to span tag inbuilt is it possible to remove it?

우두머리
  • 545
  • 2
  • 18
Nagaraj M
  • 3
  • 9

2 Answers2

0

No, its not possible to remove it. There is no such configuration provided. However you can use your own class to override the default css.

$("#someid .k-picker-wrap").css({ /*any css property*/ }); 

In css:

#someSelector .k-picker-wrap{

  /*any css property*/

}
ashfaq.p
  • 5,379
  • 21
  • 35
0

You can't remove directly, but you can do something like this in your js:

$(".k-picker-wrap").css({ 'background-color' : '', 'color' : '' });

To all ".k-picker-wrap" css proprietes.

or you can alter in your custom css like: (just an example i dont even run it)

#yorContainer > span >.k-picker-wrap{

"background-color" : "", 
"color" : "" 

}

hope this help

우두머리
  • 545
  • 2
  • 18