GithubHelp home page GithubHelp logo

Comments (8)

twinssbc avatar twinssbc commented on July 29, 2024

@danny-36 Could you provide your html code that declares the calendar directive?

from ionic-calendar.

twinssbc avatar twinssbc commented on July 29, 2024

@danny-36 I saw you closed this issue, is it solved?

from ionic-calendar.

danny-36 avatar danny-36 commented on July 29, 2024

no sorry. this is my template:

<ion-view view-title={{viewTitle}}>
  <ion-nav-buttons side="right">
    <button class="button" ng-disabled="isToday()" ng-click="today()">Today</button>
    <button class="button" ng-click="changeMode('month')">M</button>
    <button class="button" ng-click="changeMode('week')">W</button>
    <button class="button" ng-click="changeMode('day')">D</button>
    <button class="button" ng-click="loadEvents()">Load Events</button>
  </ion-nav-buttons>

  <ion-content scroll="false" class="main-content">
    <calendar ng-model="calendar.currentDate" calendar-mode="calendar.mode" event-source="calendar.eventSource"
              range-changed="reloadSource(startTime, endTime)"
              event-selected="onEventSelected(event)"
              title-changed="onViewTitleChanged(title)"
              time-selected="onTimeSelected(selectedTime)"
              all-day-label="Tutto il giorno"
              step="30"></calendar>
  </ion-content>
</ion-view>

from ionic-calendar.

twinssbc avatar twinssbc commented on July 29, 2024

Do you have below callback in your controller?
Could you set the breakpoint to see if it is called when the view is loaded?

$scope.onViewTitleChanged = function (title) {
            $scope.viewTitle = title;
};

from ionic-calendar.

danny-36 avatar danny-36 commented on July 29, 2024

this is my controller:

angular.module('Events', ['ui.rCalendar'])
  .controller('eventsCtrl', function($scope, $rootScope, webdesktop, $state, $stateParams, dataShare, calendarConfig) {

    'use strict';

    var currentSite = dataShare.getData();


    $scope.calendar = {};
    $scope.changeMode = function (mode) {
      $scope.calendar.mode = mode;
    };

    $scope.loadEvents = function () {
      $scope.calendar.eventSource = createRandomEvents();
    };

    $scope.onEventSelected = function (event) {
      console.log('Event selected:' + event.startTime + '-' + event.endTime + ',' + event.title);
    };

    $scope.onViewTitleChanged = function (title) {
      $scope.viewTitle = title;
    };

    $scope.today = function () {
      $scope.calendar.currentDate = new Date();
    };

    $scope.isToday = function () {
      var today = new Date(),
        currentCalendarDate = new Date($scope.calendar.currentDate);

      today.setHours(0, 0, 0, 0);
      currentCalendarDate.setHours(0, 0, 0, 0);
      return today.getTime() === currentCalendarDate.getTime();
    };

    $scope.onTimeSelected = function (selectedTime) {
      console.log('Selected time: ' + selectedTime);
    };


.... from this point code part to populate events in calendar



  });

from ionic-calendar.

twinssbc avatar twinssbc commented on July 29, 2024

That's weird, your code is exactly the same as my demo page. Do you also define the ion-nav-bar as below?
Could you set the breakpoint on onViewTitleChanged method to see if it's triggered?

<ion-nav-bar class="bar-positive" align-title="left">
    <ion-nav-back-button>
    </ion-nav-back-button>
</ion-nav-bar>

from ionic-calendar.

twinssbc avatar twinssbc commented on July 29, 2024

That's weird, your code is exactly the same as my demo page. Do you also define the ion-nav-bar as below?
Could you set the breakpoint on onViewTitleChanged method to see if it's triggered?

<ion-nav-bar class="bar-positive" align-title="left">
    <ion-nav-back-button>
    </ion-nav-back-button>
</ion-nav-bar>

from ionic-calendar.

danny-36 avatar danny-36 commented on July 29, 2024

no I miss this part. now works. thank you very much.

from ionic-calendar.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.