Re: Include HTML in Grid Cell

2008-12-02 Thread Thiago H. de Paula Figueiredo
Em Tue, 02 Dec 2008 21:11:31 -0300, thermus <[EMAIL PROTECTED]> escreveu: Is there a way to get HTML content to appear in a Grid cell? Yes. :) Suppose your text property is named "text": -- Thiago H. de Paula Figueiredo Independent Java consulta

Include HTML in Grid Cell

2008-12-02 Thread thermus
Is there a way to get HTML content to appear in a Grid cell? Thinking I could easily include multi-line text in a cell, I tried setting a bean property to text with tags. However, when it renders the tags are replaced by '& lt;' and '& gt;'. The problem, I think, is that AbstractPropertyOutput

Re: [T5] classes and templates don't reload anymore

2008-12-02 Thread Andy Pahne
Works here, too. I had the same problem a few weeks ago. It took me a while to find out that somehow the Eclpse "build automaticaly" option turned off. That was fun, sort of. Stephane Decleire schrieb: My app is built against Tap 5.0.17 I've tried using maven command "mvn jetty:run" or on

Re: Accessing ASO from Hivemind

2008-12-02 Thread Howard Lewis Ship
You have to inject the ApplicationStateObjectManager and obtain the ASO from it. On Tue, Dec 2, 2008 at 11:15 AM, Stopp, Bryan <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm trying to inject an ASO into a hivemind service, strangely enough > there's no mechanism that i have seen to do this. I tried

Accessing ASO from Hivemind

2008-12-02 Thread Stopp, Bryan
Hi all, I'm trying to inject an ASO into a hivemind service, strangely enough there's no mechanism that i have seen to do this. I tried to use "state:X" but there's no object provider contributed to the Hivemind registry for this prefix. The only thing i can think of is to create that provider

Re: [T5] classes and templates don't reload anymore

2008-12-02 Thread Stephane Decleire
I don't think that my problem arises due to the new version. I have just posted it as a clue ... Michael Gerzabek a écrit : > I recently switched to 5.0.17 and everything works fine, reloading of > pages, templates, components (no mixins yet). I use Eclipse with jetty > plugin. > > > Stephane Decl

Re: [T5] classes and templates don't reload anymore

2008-12-02 Thread Michael Gerzabek
I recently switched to 5.0.17 and everything works fine, reloading of pages, templates, components (no mixins yet). I use Eclipse with jetty plugin. Stephane Decleire schrieb: My app is built against Tap 5.0.17 I've tried using maven command "mvn jetty:run" or on Tomcat using Netbeans without

[T5] classes and templates don't reload anymore

2008-12-02 Thread Stephane Decleire
My app is built against Tap 5.0.17 I've tried using maven command "mvn jetty:run" or on Tomcat using Netbeans without success. None of the change i make on my templates or classes fired a reload. Any idea ? Stephane

[T5] 5.0.16 Spanish special characters

2008-12-02 Thread Ray
Hi there, I have a problem in parsing Spanish phrases with special chars. The original message defined is something like: DESCRIPTION=Descripción comes back as: Descripti?n from the Messages object. My file format is UTF-8 and my page has the appropriate header defined. Is there something com

Re: [T5] Strange problems using jetty:run

2008-12-02 Thread Olle Hallin
This is not a Maven problem. You probably have some sh:t in your source tree. Try this: 1) rm -fr target 2) rm -fr src (DON'T DO THIS UNLESS YOU HAVE VERSION CONTROL) 2) restore a clean src/ from version control 3) mvn jetty:run If it still does not work, repeat, stepping back in time until

Re: [T5] Strange problems using jetty:run

2008-12-02 Thread gringoac
Thank you a lot for the response However, I'm still having the same error... Now, I do the following steps: - mvn clean install - mvn eclipse:clean eclipse:eclipse - mvn tomcat:run (or jetty:run) And the problem lingers on... Still hearing solutions... Ariel Olle Hallin wrote: > > Hi