[CLOSED] CalendarPanel functionalities

  1. #1

    [CLOSED] CalendarPanel functionalities

    Hi,

    I am using Ext.Net Ver 2.4.

    I require CalendarControl with following functionality

    1. I need to Modify The EventWindow with

      • Additional ComboBox fields.
      • and a Text field with a Command Button for Lookup Help using GridPanel
    2. Currently CalendarPanel has EventAdd, EventUpdate, EventDelete, EventMove Listner events.

      • I require one more EventCopy
    3. Disabling All days < -15 days and > +15 days. Here user should not be able to move event to Disabled Days.


    Will it be possible using Ext.Net Ver 2.4 Calendar Control. Is there any example displaying above functionalities
    Last edited by Daniil; Apr 23, 2014 at 7:45 PM. Reason: [CLOSED]
  2. #2
    Additional ComboBox fields.
    http://forums.ext.net/showthread.php...ll=1#post87819
    http://forums.ext.net/showthread.php...Window-for-2-x


    I require one more EventCopy
    Just fire any event at required point using fireEvent method of widget, also if event is your own then it is required to add event using addEvents method
    http://docs-origin.sencha.com/extjs/...thod-addEvents



    1. Disabling All days < -15 days and > +15 days. Here user should not be able to move event to Disabled Days.
    Well, i would check date in the onEventDrop function override
    
    Ext.calendar.view.AbstractCalendar.override({
          onEventDrop: function (rec, dt) {
                 // check dt here, if dt is valid then call the below code
                 // this.callParent(arguments);
          }
    );
  3. #3
    Thanks a lot Vladimir for your quick response. I will work in directions given by you.
  4. #4
    Well, i would check date in the onEventDrop function override
    
    Ext.calendar.view.AbstractCalendar.override({
          onEventDrop: function (rec, dt) {
                 // check dt here, if dt is valid then call the below code
                 // this.callParent(arguments);
          }
    );
    Above solution works great. I have one query though.

    How to show disabled dates and time slots in gray color ? Here I would like to mention that dates to be disabled are coming from database (Leaves, Holidays etc)
  5. #5
    Hi @Arohan,

    It is good to keep one request per thread. Please start a new forum thread.
  6. #6
    Ok. I will open a new thread. Thanks for the out of world support.

Similar Threads

  1. [CLOSED] CalendarPanel Set by Day
    By osef in forum 2.x Legacy Premium Help
    Replies: 4
    Last Post: Jan 15, 2015, 7:46 PM
  2. [CLOSED] The Scroll is not down in CalendarPanel
    By osef in forum 2.x Legacy Premium Help
    Replies: 5
    Last Post: Dec 19, 2013, 5:05 AM
  3. Replies: 5
    Last Post: Mar 19, 2013, 3:27 AM
  4. Localize the CalendarPanel
    By Guyver in forum 1.x Help
    Replies: 0
    Last Post: May 30, 2012, 1:48 PM
  5. Can i use my own FormPanel in CalendarPanel
    By tonyls in forum 1.x Help
    Replies: 0
    Last Post: Mar 23, 2012, 4:57 AM

Posting Permissions