Extjs 4 Month And Year Picker
I wanted to add a Month and Year picker on my app. So, I found this Fiddle https://fiddle.sencha.com/#fiddle/h5i on one of stackoverflow posts. It uses Extjs 5.0 and works fine. Ho
Solution 1:
I fixed the issue 'temporarily' by changing the .x-monthpicker-body using px instead of %. Not sure if it will break during zoom in/outs.
Solution 2:
For Extjs 4 ive fixed this by adding simple css
check out this fiddle
i just added the following css code
.x-monthpicker {
padding-bottom: 35px;
}
Post a Comment for "Extjs 4 Month And Year Picker"