Hi i want to ask about datepicker in this Demo. first of all i already implement datepicker and successfully show the UI but not same like in demo. my guess is that css of datepicker is not loaded and datepicker UI looks big when i open it
i attach file of datepicker UI right now in my grid table. is there something wrong with my setup?
appreciate your help. thanks
you can ask if my english is confusing
i attach file of datepicker UI right now in my grid table. is there something wrong with my setup?
<datepicker
:style="{ width: '145px' }"
:default-value="new Date()"
:format="'MMM DD, YYYY'"
v-model="interviewDate"
>
</datepicker>
import { DatePicker, TimePicker } from '@progress/kendo-vue-dateinputs';
components: {
'datepicker': DatePicker
},
appreciate your help. thanks
you can ask if my english is confusing
Hi, Kenji.
I can confirm that the reported behavior seems like a CSS issue. The DatePicker and all Kendo UI for Vue components require a Kendo Theme to be loaded into the project the components are used.
With the above in mind, if all other Kendo UI for Vue components is working correctly in your application, I would assume that here we are talking about a custom CSS rule that makes the DatePicker looks as on the shared screenshot.
Here is a list of things you can check and share details about if you don't manage to resolve the issue:
Please check the above suggestions and let me know if they help you resolve the reported issue.
Hi Petar.
i'm importing bootstrap theme and using native component
i already tried to do as you list in option but still no luck with datepciker UI
this is a list of imported kendo component and version that i use in parent component
Hi Petar.
datepicker implementation is working right now and you can close this question
there is a global css that broke datepicker css and finally found a solution from there
thanks a lot for your help