Giter Site home page Giter Site logo

Comments (2)

kylestetz avatar kylestetz commented on May 5, 2024

This is doable. The way I would create this is using clndr's clickEvents.click callback, which is fired whenever you click on a day in the calendar grid. It returns the element you clicked on, the date as a moment object, and- most importantly- any events that are happening on that particular day. You can take the events it returns, build the list markup on the fly, and push it into the event list view.

Here's roughly what you want in your javascript:

$('#calendar').clndr({
  clickEvents: {
    click: function(target) {
      // we are going to build the DOM elements as a string, but you could also
      // take advantage of a templating engine for this portion if you wanted to achieve
      // something more complicated.
      var eventListHtml = "";
      // target.events contains a list of events (if any) happening on this day
      for(var i = 0; i < target.events.length; i++) {
        // you might also want to include other properties of the event in your element
        eventListHtml += '<div class="event">' + target.events[i].title + '</div>';
      }
      // now we find the list of events and push these elements into it.
      // We're using `this.element` because we want to limit the scope of our query selector
      // to this particular instance of clndr (in case there are others).
      $(this.element).find('.events-list').html( eventsListHtml );
    }
  }
});

As I said in the comments, if you're building complex markup you probably don't want to use strings. Since you're already taking advantage of underscore (or some similar templating engine) you could make a template for your events list and keep things very neat.

from clndr.

cedriccharles4 avatar cedriccharles4 commented on May 5, 2024

Hi Kyle !

What a fast answer ! Amazing support :) !

I've customize your code a little bit to fit my needs and it works well, thank you very much !

Great script !

from clndr.

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.