Struts2 + FCKeditor

2007-04-17 Thread Monttez
Has anyone integrated FCKeditor with Struts2 ? Can you point me the way ? Thanks! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[S2] sitemesh skins

2007-03-28 Thread Monttez
Hi, I want to show a system with different skins (per client), at 'load-time'.. Desired behavior: Has this client a custom skin ? If (YES) load_it(); Else load_the_default_skin(); I would be grateful if the SessionDecoratorMapper overrides the ConfigDecoratorMapper, but its not happening (at

[S2] - Strange error: "" tag not working for ""

2007-03-23 Thread Monttez
Hi! The url tag: <@s2.url id="urlMenu" namespace="/Menu" action="getTreeMenu"> <@s2.param name="decorate" value="false" /> This tag works properly for a link.. as follows: test Result: "http://localhost:8088/WebStageCMS_v2/Menu/getTreeMenu.action?decorate=false " But the same tag do

[S2] - Ajax Theme on freemarker template. It is possible ?

2007-03-21 Thread Monttez
Hi all, Its is possible to use ajax tags into a freemarker page? It's not working for me.. The same code works fine in a jsp result type... (with " ... <@s.url id="ajaxMenu" value="getTreeMenu.action?decorate=false" /> <@s.div theme="ajax" href="${ajaxMenu}" > Initial Content Th

RES: Ajax - obtaining a method result

2007-02-13 Thread Monttez
t it will hurt :) ) return xml, which I wouldn't recommend unless you have to. If you happen to be using GWT, you can just return the int from your method, and you will just get it back on your GWT(javascript) code. These are just a few ideas, there's got to be zillion ways of

RES: Ajax - obtaining a method result

2007-02-13 Thread Monttez
and you will just get it back on your GWT(javascript) code. These are just a few ideas, there's got to be zillion ways of doing it these days. musachy Monttez wrote: > Hi all > > I want to make an ajax call to a method and get its returning.. (for > use in a javascript fragment

AJAX - get server method return

2007-02-13 Thread Monttez
Hi all, How do I get the return of a spring created object( UserService... or UserAction.. )? Suppose that I need the inserted userId after an ajax call to insertUser(..) method.. How it is possible? - To unsubscribe, e-mail:

Ajax - obtaining a method result

2007-02-13 Thread Monttez
Hi all I want to make an ajax call to a method and get its returning.. (for use in a javascript fragment) For example: I want to get the Id for the inserted person (in an ajax insert..).. How it is possible? This method could be in an action or directly in my Service class.. Thanks in adv