mhmda Posted July 28, 2016 Posted July 28, 2016 When I use calendar (or when opening calendar example from unigui) I got this in browser console, why? EXJS Ver. 4.2.5.1763 UniGUI 0.99.95.1309 Windows 7 pro Delphi Xe8 And how can I add 'jumb to'? And how can I make the week to be default display? Quote
mhmda Posted July 29, 2016 Author Posted July 29, 2016 Documentation for Calendar here: http://ext.ensible.com/deploy/dev/docs/#!/api/Extensible.calendar.CalendarPanel To set 'Week' as default use (extjs clientevents): function afterrender(sender, eOpts) { Ext.defer(function() {sender.setActiveView(1);}, 1000);//give it some delay otherwise it will animate scroll down & up :-) } Quote
davide Posted October 19, 2016 Posted October 19, 2016 hi mohammad, i try to personalize nav panel, without success. I'm trying to add "toDay" button and "jump to" section. I've just added some code to ClientEvents->UniEvents on beforeInit: function beforeInit(sender, config) { config.monthViewCfg = { // disable drug and drop enableDD: false, // show day of week on column header showHeader: true , // starting week with Mondey startDay : 1 } } That code working well, but now (in according with specification at the site's you are post before) i would add fetature to "jump to" and "today" with the following config property of CalendarPanel. // nav bar, day feature showNavToday : true, showNavJump : true, It's not running. How do you have solved your first question? thanks in advantage, Davide Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.