Categories | Question details Back To List | ||
Disabling The Previous Month & Next Month Buttons Hey folks, I'm trying to disable the Previous & Next Month arrow buttons but I'm not having any success. I had thought to use {btnPrev: false, btnNext: false} would work but it doesn't seem to. Am I missing something? Thanks! - M Answer posted by Support on Dec 04, 2008 08:23 You can't fully remove buttons ( the above properties used to define content of button, but not their existance ) But you can made them invisible by adding next style to the page .dxcalmonth td.month_btn_left, .dxcalmonth td.month_btn_right{ background:none !important; } |