Add toggledClass property to toolbar toggle actions

This commit is contained in:
Hadi Nategh 2015-06-15 09:11:33 +00:00
parent 810c201018
commit 7ccbdfe871

View File

@ -405,7 +405,7 @@ var et2_toolbar = et2_DOMWidget.extend([et2_IInput],
if (action && action.checkbox) if (action && action.checkbox)
{ {
if (this.checkbox(action.id)) button.addClass('toolbar_toggled'); if (this.checkbox(action.id)) button.addClass('toolbar_toggled'+ (typeof action.toggledClass != 'undefined'?" "+action.toggledClass:''));
} }
if ( action.iconUrl) if ( action.iconUrl)
{ {
@ -479,7 +479,7 @@ var et2_toolbar = et2_DOMWidget.extend([et2_IInput],
if (btn.length > 0) if (btn.length > 0)
{ {
action_event.set_checked(_value); action_event.set_checked(_value);
btn.toggleClass('toolbar_toggled'); btn.toggleClass('toolbar_toggled'+ (typeof action_event.data.toggledClass != 'undefined'?" "+action_event.data.toggledClass:''));
} }
} }
else if (action_event) else if (action_event)