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?
Asked
Active
Viewed 1,405 times
0
2 Answers
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
-
Thanks,but how i can override it,its inside the span tag. – Nagaraj M Feb 04 '16 at 08:02
-
you will have to use jquery selector to select it and then update its css. – ashfaq.p Feb 04 '16 at 08:03
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