1. #1
    Sencha User
    Join Date
    Jun 2012
    Posts
    2
    Vote Rating
    0
    shahid1376 is on a distinguished road

      0  

    Default Unanswered: Sencha touch 2.0 Calendar Plugin Run Issues in production, package and device

    Unanswered: Sencha touch 2.0 Calendar Plugin Run Issues in production, package and device


    Hi,
    I have implemented this calendar in my app developed in sencha touch 2.0 and I face a problem.When I run my application source code in a web browser, Calendar works fine. But when I generate the production & package of the app the calendar not work and following issues occur.Moreover these issues also occur when app run in a device:
    1): Cell not select in the month view of calendar.
    2): Next and Previous not work in the month, week and day view of calendar.
    3): This seems to me that on tap events cannot get bind


    Example :


    this.element.on({
    tap: this.onTableHeaderTap,
    scope: this,
    delegate: 'td'
    });


    this.element.on({
    tap: this.onTimeSlotTap,
    scope: this,
    delegate: this.getItemSelector()
    });




    Please help me to get rid of this hurdle.


    I shall be very thank full to you.

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,582
    Vote Rating
    434
    Answers
    3102
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    You may want to reach out to the author of the calendar.
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.

  3. #3
    Sencha User
    Join Date
    Jun 2012
    Posts
    2
    Vote Rating
    0
    shahid1376 is on a distinguished road

      0  

    Default Answerd

    Answerd


    Thanks for reply:

    I have solved my problem below is solution of the problem:


    companyCalender = Ext.create('myapp.view.TouchCalendarView',{ viewConfig : { mode : 'month', weekStart : 0, value : new Date() }});Ext.apply(this.initialConfig, config);Ext.apply(this, config);myapp.view.CompanyCalender.superclass.constructor.apply(this, arguments); this.add(companyCalender);

Tags for this Thread