Issue 1326: Customize the resize handle text ("=")
Status:  Released
Owner: ----
Closed:  Aug 2014
Reported by hout....@gmail.com, Mar 5, 2012
Hello,

Is there a way to disable or change the resize label in the agenda views without disabling the ability to resize the event? My users have some events where there is no title for the event and the event just renders with the '=' sign that indicates it is able to be resized.

I would like a way to disable this.

To allow for this behavior, I added in the option "resizeLabel" and changed the portion of slotSegHTML from this:

if (seg.isEnd && isEventResizable(event)) {
	html +=
		"<div class='ui-resizable-handle ui-resizable-s'>=</div>";
}

to this:

if (seg.isEnd && isEventResizable(event)) {
	html +=
		"<div class='ui-resizable-handle ui-resizable-s'>" + opt('resizeLabel') + "</div>";
}

If there is another way to get this behavior without changing the javascript file, please let me know.

Thanks!
Aug 15, 2013
Project Member #1 adamrs...@gmail.com
the best solution would probably be to have the text be empty in the JS file, but add it in via CSS with the :after and "content" CSS properties. This way, anyone can override it if they want, using CSS (better than a JS option IMO)
Summary: Customize the resize handle text ("=") (was: Disabling resize label in agenda view)
Status: Accepted
Labels: Type-Behavior
Jul 22, 2014
Project Member #2 adamrs...@gmail.com
(No comment was entered for this change.)
Labels: milestone-skeleton
Jul 23, 2014
Project Member #3 adamrs...@gmail.com
This is now possible in v2.1 (beta)
http://blog.arshaw.com/1/post/2014/07/fullcalendar-210-beta.html

Here is the CSS that does it:
https://github.com/arshaw/fullcalendar/blob/v2.1.0-beta1/dist/fullcalendar.css#L758

I would really appreciate if you could verify this. Thanks a lot!
Aug 5, 2014
#4 hout....@gmail.com
Sorry, I've been busy. Will verify this week.
Aug 14, 2014
Project Member #5 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Implemented
Aug 26, 2014
Project Member #6 adamrs...@gmail.com
This issue has been resolved with the official release of v2.1.0:
http://blog.arshaw.com/1/post/2014/08/fullcalendar-210-released.html

Please post any follow-up bug reports or feature requests as separate issues. Thanks.
Status: Released
Aug 26, 2014
#7 hout....@gmail.com
Works perfectly! Thanks Adam.