Giter Site home page Giter Site logo

Comments (6)

kylestetz avatar kylestetz commented on May 4, 2024

Could you clarify which elements you want to have a background image? This can be done using CSS, but I want to make sure I understand what you are trying to do before I make any suggestions.

from clndr.

arun-kp avatar arun-kp commented on May 4, 2024

As you can see in the image, that is exactly what i'm trying to do. But all i m doing is changing css like this:
Which is not the correct way to do and as well and it is not persistent as the td's and tr's data will change.
I want to target a month and all the dates in a month and apply this style.
Any help is respected.
setTimeout(function() {
for (var i = 1; i <= 31; i++) {
if(i < 10){
$(".calendar-day-2013-12-0"+i).find(".day-contents").css("background","url(the.jpg)");
}else{
$(".calendar-day-2013-12-"+i).find(".day-contents").css("background","url(the.jpg)");
}
};
}, 1000);

dp

from clndr.

kylestetz avatar kylestetz commented on May 4, 2024

You should be able to do this in a css stylesheet:

.day-contents
{
  background-image: url('the.jpg');
}

and you will not have to write any javascript. Is there a reason this won't work for you?

from clndr.

arun-kp avatar arun-kp commented on May 4, 2024

@kylestetz Thanks for your support.
Adding CSS background will add to all the day-contents but i need to add it only for a particular month.

from clndr.

kylestetz avatar kylestetz commented on May 4, 2024

Okay, you can check for that particular month in your template and add a class (which will take care of the background image). While looping through your days array you can check days[].date (which is a moment object) to see if it matches a particular month. If you don't know the month ahead of time, you can pass it into the extras property of clndr.

in your clndr instance...

var clndr = $('#calendar').clndr({
  extras: {
    month: 'February' // this might be a variable
  }
});

...and in your clndr template:

<% _.each(days, function(day) { %>
  <div class="day">
    <div class="day-contents <% if(day.date.format('MMMM') == extras.month ){ %>bg-image<% } %>">
      <%= day.day %>
     </div>
  </div>
<% }) %>

if you need to change the month passed into extras, you can call

clndr.options.extras.month = 'January';

You could also add this class just once, higher up in your markup, and scope day-contents so it only has a background image when inside of that parent class.

Does that help?

from clndr.

kylestetz avatar kylestetz commented on May 4, 2024

Hey @arun-kp I'm going to close this issue since I'm assuming you've worked this out. Feel free to comment here if you're still having trouble.

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.