Mackram wrote:

> On a side note, does the menu support multiple sub-menus or did anyone
> attempt that?

It's not hard to do this at a basic level by simply nesting
navigations.

To have a comfortable declarative interface one would have to
extend the INIT-NAVIGATION macro.


> Also I have been checking the thread and i know that
> there was some work for jquery is there a way to replace the current
> javascript framework and if not anyone cares to point me in the
> direction?

You need to edit the few scripts that come with Weblocks.

See docs/js-backend-abstraction.txt for some notes on this.

Here's a working AJAX interface for JQuery:


function initiateActionWithArgs(actionCode, sessionString, args, method) {
    jj.ajax(
        {
           url:getActionUrl(actionCode, sessionString),
           type: method,
           success: onActionSuccess,
           error: onActionFailure,
           data: args
           });
}



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"weblocks" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/weblocks?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to