Displaying 3 results from an estimated 3 matches for "togglelevel".
2005 Oct 13
6
performance
...e()s are called.
Here''s a snippet of a Sortable:
Sortable.create("group_2297",{ghosting:true,constraint:false,
onUpdate:function(sortable){window.location =
"ReorderWebCategory.action?groupIdsKey=group_2297&" +
Sortable.serialize(sortable) + "&toggleLevel=" + toggleLevel + "#2297";
new Effect.Pulsate(sortable);},
onChange:function(sortable){$(sortable.style.backgroundColor =
"#ffff00");}
});
I''ve executed this page in IE on Windows, Firefox on Windows and Mac,
and Safari on the Mac, all with simil...
2005 Oct 17
11
a better question
I''m trying to call a click() event on an <a href> that has an
Observable registered for it. Something like:
<a href="#" id="toggle_1929">show</a>
...
Event.observe("toggle_1929", ''click'', function(event){ Element.toggle
("group_1929"); return false; });
...
$("toggle_1929").click(); //this throws
2005 Oct 18
0
RE: Error: "onclick() is not a function"
...Sortable.create("group_$group.id",
> {ghosting:true,constraint:false,
> onUpdate:function(sortable)
> {window.location = "ReorderWebCategory.action?groupIdsKey=group_$
> {group.id}&" + Sortable.serialize(sortable) + "&toggleLevel=" +
> toggleLevel + "#$group.id";
> new Effect.Pulsate(sortable);},
> onChange:function(sortable){$
> (sortable.style.backgroundColor = "#ffff00");}
> });
>...