Displaying 4 results from an estimated 4 matches for "reorderwebcategory".
2005 Oct 13
6
performance
...ipt. When I removed the Sortables code (see below), the
page loads very quickly. About 60 Sortable.create()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 execu...
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 11
8
Sortable as a class?
Hi there!
My first post to this list, so first of all many thanks for the amazing
Scriptaculous library. I''m currently using it for some nice Ajax effects
in Apache Cocoon (http://cocoon.apache.org/).
I''m currently struggling with Sortable, which I would like to adapt as
the conventions used in Cocoon are different from those currently used.
Basically, I would like to send
2005 Oct 18
0
RE: Error: "onclick() is not a function"
....innerHTML == ''hide'' ? ''show'' : ''hide'');
> 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){$
>...