CalendarPanel1.EventStore maximum size

  1. #1

    CalendarPanel1.EventStore maximum size

    Good day
    I have been strugling with the following problem
    I Created a page of calendar, using calendarpanel1.
    after geting my eventmodelcollection i add it to calendar panel events and there problem starts
    if I trying to load more than 4118 events, no events shown at all

    protected void Page_Load(object sender, EventArgs e)
        {
            if (!X.IsAjaxRequest)
            {
                EventModelCollection n = Store_Data();
                this.CalendarPanel1.EventStore.Events.AddRange(n);
                MonthPicker1.SelectedDate = DateTime.Now.Date;
            }
        }
    ...
     public EventModelCollection Store_Data(){
     EventModelCollection SQLEMC = new EventModelCollection();
           ...
           ...
    return (SQLEMC);}
    Store_Data(); manages to make all the events from SQL server, all 25619 events to be put in calendar
    but page shows empty calendar with no events at all
    as soon as i limit number of events in query to 4118, calendarpanel1 shows 4118 events.
    if i put 4119 it doesnt show any
    anything i need to do to fix this problem?

    best possible would be to bring all 25thousands events.,.

    waiting for reply
    Thank you for your time
    Last edited by Daniil; Dec 04, 2015 at 4:41 PM. Reason: Please use [CODE] tags

Similar Threads

  1. Replies: 3
    Last Post: Apr 27, 2016, 2:14 AM
  2. Replies: 1
    Last Post: Feb 03, 2014, 6:46 PM
  3. Replies: 8
    Last Post: Nov 26, 2012, 11:19 AM
  4. [CLOSED] SchedulerGrid EventStore
    By Adrian in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Aug 17, 2012, 3:53 AM
  5. Maximum file size for upload
    By CoolNoob in forum 1.x Help
    Replies: 3
    Last Post: Jan 07, 2010, 3:57 PM

Tags for this Thread

Posting Permissions