Issue 411: Fix the width for seg on week view
Status:  Done
Owner: ----
Closed:  Mar 2010
Reported by pritiatw...@gmail.com, Mar 18, 2010
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?
fix_width.JPG
6.0 KB   View   Download
Mar 18, 2010
#1 priti.so...@gmail.com
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..



Mar 30, 2010
Project Member #2 adamrs...@gmail.com
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
#3 pritiatw...@gmail.com
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
#4 pritiatw...@gmail.com
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
#6 yatinmis...@gmail.com
Yes it work for width but full calendar fc-event left alignment not changed. i am getting space between event after adding space.