…
'action' => array(
'content' => array('add', 'edit'),
),
…
У меня в шаблоне своя группа виджетов {wgroup}, по событию edit, шаблон выводится, а по add нет.
…
'action' => array(
'content' => array('add', 'edit'),
),
…
if (!Function.prototype.bind) {
Function.prototype.bind = function(context) {
var fn = this;
if(jQuery.type(fn) != 'function'){
throw new TypeError('Function.prototype.bind: call on non-function');
};
if(jQuery.type(context) == 'null'){
throw new TypeError('Function.prototype.bind: cant be bound to null');
};
return function() {
return fn.apply(context, arguments);
};
};
}