[appfuse-user] Re: AppFuse question

2008-06-20 Thread Sean_Parsons
I've been integrating the tool to work with our tools lately...and have really stuff a lot of learning in a couple of weeks... I'm pretty new to jsp, so I've really been cramming on that lately With that, I have integrated the userList with my own jsp, using the simplicity theme. My questi

[appfuse-user] Integration tests with tiny_mce fail

2008-06-20 Thread Martin Homik
I have integrated tinyMce with appfuse. That's fine as textareas are replaced by a nice editor. The inclusion into my jsp pages is not invasive. You have only to add the following to your : tinyMCE.init({ mode : "textareas"});

Re: [appfuse-user] Changing Affuse default .html Extension

2008-06-20 Thread StrutsUser
Hi, I am getting a weird behaviour with StaticFilter. The filter itself is not getting initialized. So I renamed it as DojoFilter and now it gets initialized!!. But doFilterInternal() and initFilterBean() methods are not called in that class and hence it is never applied at all. I am using 4 dojo

Re: [appfuse-user] SQLGrammarException when running jetty without prior tests

2008-06-20 Thread Martin Homik
I'd like to pick up this topic again. Could not find a proper answer elsewhere. Some threads were talking about omitting reserved words. But I can't see the problem in my case. So, you you guys have a clue what is going on? MH Martin Homik wrote: > > Today I came across a somehow strange beha

Re: [appfuse-user] ClassCastException when testing overriden save method in *Manager

2008-06-20 Thread Martin Homik
I solved it with a less elegant work-around. Instead of overriding *Manager.save(..). I've extracted all my custom lines of code to a new method *Manager.prepare(...). Now, I have to call both in my action classes: manager.prepare(...); manager.save(...) Not nice, but seems to work. MH -- Vi