| Issue 411: | Fix the width for seg on week view | |
| 1 person starred this issue and may be notified of changes. | Back to list |
Please look in to the attached image... I am not able to access those floating div on agendaWeek view to fix the width. is there any way to fix this width?
Mar 30, 2010
the line
$('div.fc-events').css('width','80')
wont work. try...
$('div.fc-events').css('width',80)
or
$('div.fc-events').css('width','80px')
Status:
Done
Mar 31, 2010
I tried following
eventRender: function(event, element) {
$('div.fc-event').css('width','80px');
}
width is set in style attribute.I even tried attr() to set it but no luck..
Mar 31, 2010
fc-event is the class name. Please refer following HTML <div style="position: absolute; z-index: 8; top: 188px; left: 145px; width: 71.2px; height: 44px;" class="fc-event fc-event-vert fc-corner-top fc-corner-bottom availability"><a><span class="fc-event-bg"></span><span class="fc-event-time">11:30 - 12:35</span><span class="fc-event-title">Availability</span></a><div class="ui-resizable-handle ui-resizable-s">=</div></div>
Feb 11, 2015
Yes it work for width but full calendar fc-event left alignment not changed. i am getting space between event after adding space. |
|
| ► Sign in to add a comment |
I am trying to access these div as follow $('div.fc-events').css('width','80') but this is not working!!!! Please at least guide how can i hard code this.. I really need to access those fc-events div so that for specific div I can modify them as per my need... I know I can modify them via CSS but I want to change some content when it render on the calendar..