You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tapestry.apache.org by iberck <ib...@gmail.com> on 2009/06/15 09:07:56 UTC

Netbeans 6.7 tapestry 5 plugin support

Hi I'm developing a netbeans plugin for tapestry 5 tested on windows xp
The supported features are:

Initial features:

    * Create pages/components from wizard
    * Code templates
    * Actions
    * tml files highlighting
    * Live class reloading

Code templates

 For example, if you type [onaction + tab] in the java class template, the
editor will insert the template of "onaction" method

@OnEvent(component="ComponentName")
Object onActionFrom"ComponentName"() {
    // TODO Add content
    return null;
}

    * Supported java class code templates
          o pagelifecycle
          o onpageloaded
          o onpageattached
          o onpagedetached
          o property
          o aso
          o injectpage
          o log
          o asset
          o ontranslator
          o rendercomponent
          o setuprender
          o beginrender
          o beforerenderbody
          o afterrenderbody
          o afterrendertemplate
          o afterrender
          o cleanuprender
          o formevents
          o onsuccess
          o onaction
          o onexception
          o includecss
          o includejs
          o component
          o inject
          o oncontext
          o onactivate
          o onpassivate
          o onvalidate
          o onevent
    * Supported tml code templates
          o palette
          o linksubmit
          o linksubmithtml
          o radiogroup
          o radiogrouphtml
          o passwordfield
          o passwordfieldhtml
          o errors
          o errorshtml
          o formfragment
          o pagelink
          o pagelinkhtml
          o actionlink
          o actionlinkhtml
          o form
          o formhtml
          o submit
          o submithtml
          o select
          o selecthtml
          o tmlfile
          o renderobject
          o renderobjecthtml
          o label
          o labelhtml
          o eventlink
          o eventlinkhtml
          o beandisplay
          o beandisplayhtml
          o textarea
          o textareahtml
          o if
          o ifhtml
          o ifelse
          o datefield
          o datefieldhtml
          o output
          o outputhtml
          o beaneditform
          o beaneditformhtml
          o delegate
          o loop
          o loophtml
          o grid
          o gridhtml
          o textfield
          o textfieldhtml
          o checkbox
          o checkboxhtml
          o radio
    * Supported properties code templates

Actions

    * You can switch between template/class [Ctrl + Alt + S]
    * If you are in properties file you can switch to page [Ctrl + Alt + S]
    * As part of the Netbeans you can use [Ctrl + Shift + 1] to select the
file in the project
    * You can go to properties file from page or component [Ctrl + Alt + P]
    * You can create the .properties file if it does not exists
    * Switch supports pages and components
    * Switch supports nested pages and components

Live class reloading

As a part of Alex Kotchnev's work you can follow the blog instructions:
http://www.troymaxventures.com/2009/05/rad-w-tapestry-5-netbeans-67-maven-and.html 

Feel free to download from:
https://nbtapestrysupport.dev.java.net/servlets/ProjectDocumentList

Regards

-- 
View this message in context: http://www.nabble.com/Netbeans-6.7-tapestry-5-plugin-support-tp24029691p24029691.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Netbeans 6.7 tapestry 5 plugin support

Posted by Piero Sartini <li...@pierosartini.de>.
Very nice! Looking forward to give it a try.
Thanks for the work.

	Piero


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Netbeans 6.7 tapestry 5 plugin support

Posted by Alex Kotchnev <ak...@gmail.com>.
iberck,
   very nice !!! Let me know if there is any areas/features that I can
contribute to. Feel free to contact me directly ( I noticed the project
mailing list has about 0 messages ).

Cheers,

Alex K

On Wed, Jun 17, 2009 at 2:29 AM, Ville Virtanen <vi...@cerion.fi>wrote:

>
> Thanks!
>
> This is something that looks very nice on paper, so I'll test it as soon as
> possible.
>
>  - Ville
>
>
> iberck wrote:
> >
> > Hi I'm developing a netbeans plugin for tapestry 5 tested on windows xp
> > The supported features are:
> >
> > Initial features:
> >     * Support on Netbeans 6.5, 6.51, 6.7 Betas, Release candidates
> >     * Create pages/components from wizard
> >     * Code templates
> >     * Actions
> >     * tml files highlighting
> >     * Live class reloading
> >
> > Code templates
> >
> >  For example, if you type [onaction + tab] in the java class template,
> the
> > editor will insert the template of "onaction" method
> >
> > @OnEvent(component="ComponentName")
> > Object onActionFrom"ComponentName"() {
> >     // TODO Add content
> >     return null;
> > }
> >
> >     * Supported java class code templates
> >           o pagelifecycle
> >           o onpageloaded
> >           o onpageattached
> >           o onpagedetached
> >           o property
> >           o aso
> >           o injectpage
> >           o log
> >           o asset
> >           o ontranslator
> >           o rendercomponent
> >           o setuprender
> >           o beginrender
> >           o beforerenderbody
> >           o afterrenderbody
> >           o afterrendertemplate
> >           o afterrender
> >           o cleanuprender
> >           o formevents
> >           o onsuccess
> >           o onaction
> >           o onexception
> >           o includecss
> >           o includejs
> >           o component
> >           o inject
> >           o oncontext
> >           o onactivate
> >           o onpassivate
> >           o onvalidate
> >           o onevent
> >     * Supported tml code templates
> >           o palette
> >           o linksubmit
> >           o linksubmithtml
> >           o radiogroup
> >           o radiogrouphtml
> >           o passwordfield
> >           o passwordfieldhtml
> >           o errors
> >           o errorshtml
> >           o formfragment
> >           o pagelink
> >           o pagelinkhtml
> >           o actionlink
> >           o actionlinkhtml
> >           o form
> >           o formhtml
> >           o submit
> >           o submithtml
> >           o select
> >           o selecthtml
> >           o tmlfile
> >           o renderobject
> >           o renderobjecthtml
> >           o label
> >           o labelhtml
> >           o eventlink
> >           o eventlinkhtml
> >           o beandisplay
> >           o beandisplayhtml
> >           o textarea
> >           o textareahtml
> >           o if
> >           o ifhtml
> >           o ifelse
> >           o datefield
> >           o datefieldhtml
> >           o output
> >           o outputhtml
> >           o beaneditform
> >           o beaneditformhtml
> >           o delegate
> >           o loop
> >           o loophtml
> >           o grid
> >           o gridhtml
> >           o textfield
> >           o textfieldhtml
> >           o checkbox
> >           o checkboxhtml
> >           o radio
> >     * Supported properties code templates
> >
> > Actions
> >
> >     * You can switch between template/class [Ctrl + Alt + S]
> >     * If you are in properties file you can switch to page [Ctrl + Alt +
> > S]
> >     * As part of the Netbeans you can use [Ctrl + Shift + 1] to select
> the
> > file in the project
> >     * You can go to properties file from page or component [Ctrl + Alt +
> > P]
> >     * You can create the .properties file if it does not exists
> >     * Switch supports pages and components
> >     * Switch supports nested pages and components
> >
> > Live class reloading (Only on Netbeans > 6.7RC1 )
> >
> > As a part of Alex Kotchnev's work you can follow the blog instructions:
> >
> http://www.troymaxventures.com/2009/05/rad-w-tapestry-5-netbeans-67-maven-and.html
> >
> > The official web page of the project:
> > https://nbtapestrysupport.dev.java.net/
> >
> > Feel free to download from:
> >
> https://nbtapestrysupport.dev.java.net/servlets/ProjectDocumentList?folderID=11159&expandFolder=11159&folderID=0
> >
> > Regards
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/Netbeans-6.7-tapestry-5-plugin-support-tp24029691p24067704.html
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>

Re: Netbeans 6.7 tapestry 5 plugin support

Posted by Ville Virtanen <vi...@cerion.fi>.
Thanks!

This is something that looks very nice on paper, so I'll test it as soon as
possible.

 - Ville


iberck wrote:
> 
> Hi I'm developing a netbeans plugin for tapestry 5 tested on windows xp
> The supported features are:
> 
> Initial features:
>     * Support on Netbeans 6.5, 6.51, 6.7 Betas, Release candidates
>     * Create pages/components from wizard
>     * Code templates
>     * Actions
>     * tml files highlighting
>     * Live class reloading
> 
> Code templates
> 
>  For example, if you type [onaction + tab] in the java class template, the
> editor will insert the template of "onaction" method
> 
> @OnEvent(component="ComponentName")
> Object onActionFrom"ComponentName"() {
>     // TODO Add content
>     return null;
> }
> 
>     * Supported java class code templates
>           o pagelifecycle
>           o onpageloaded
>           o onpageattached
>           o onpagedetached
>           o property
>           o aso
>           o injectpage
>           o log
>           o asset
>           o ontranslator
>           o rendercomponent
>           o setuprender
>           o beginrender
>           o beforerenderbody
>           o afterrenderbody
>           o afterrendertemplate
>           o afterrender
>           o cleanuprender
>           o formevents
>           o onsuccess
>           o onaction
>           o onexception
>           o includecss
>           o includejs
>           o component
>           o inject
>           o oncontext
>           o onactivate
>           o onpassivate
>           o onvalidate
>           o onevent
>     * Supported tml code templates
>           o palette
>           o linksubmit
>           o linksubmithtml
>           o radiogroup
>           o radiogrouphtml
>           o passwordfield
>           o passwordfieldhtml
>           o errors
>           o errorshtml
>           o formfragment
>           o pagelink
>           o pagelinkhtml
>           o actionlink
>           o actionlinkhtml
>           o form
>           o formhtml
>           o submit
>           o submithtml
>           o select
>           o selecthtml
>           o tmlfile
>           o renderobject
>           o renderobjecthtml
>           o label
>           o labelhtml
>           o eventlink
>           o eventlinkhtml
>           o beandisplay
>           o beandisplayhtml
>           o textarea
>           o textareahtml
>           o if
>           o ifhtml
>           o ifelse
>           o datefield
>           o datefieldhtml
>           o output
>           o outputhtml
>           o beaneditform
>           o beaneditformhtml
>           o delegate
>           o loop
>           o loophtml
>           o grid
>           o gridhtml
>           o textfield
>           o textfieldhtml
>           o checkbox
>           o checkboxhtml
>           o radio
>     * Supported properties code templates
> 
> Actions
> 
>     * You can switch between template/class [Ctrl + Alt + S]
>     * If you are in properties file you can switch to page [Ctrl + Alt +
> S]
>     * As part of the Netbeans you can use [Ctrl + Shift + 1] to select the
> file in the project
>     * You can go to properties file from page or component [Ctrl + Alt +
> P]
>     * You can create the .properties file if it does not exists
>     * Switch supports pages and components
>     * Switch supports nested pages and components
> 
> Live class reloading (Only on Netbeans > 6.7RC1 )
> 
> As a part of Alex Kotchnev's work you can follow the blog instructions:
> http://www.troymaxventures.com/2009/05/rad-w-tapestry-5-netbeans-67-maven-and.html 
> 
> The official web page of the project:
> https://nbtapestrysupport.dev.java.net/
> 
> Feel free to download from:
> https://nbtapestrysupport.dev.java.net/servlets/ProjectDocumentList?folderID=11159&expandFolder=11159&folderID=0
> 
> Regards
> 
> 

-- 
View this message in context: http://www.nabble.com/Netbeans-6.7-tapestry-5-plugin-support-tp24029691p24067704.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Netbeans 6.7 tapestry 5 plugin support

Posted by Ville Virtanen <vi...@cerion.fi>.
Ok, 

I'll try to do that as soon as I have the required time in my hands.

 - Ville


Andreas Andreou-4 wrote:
> 
> When was that? i think the T5related project used to be hosted at
> google-code
> but then was moved into https://nbtapestrysupport.dev.java.net/
> (where the t4project was)
> 
> Just request for the developer role if you have a java.net account - or
> add the
> patches to an issue at
> https://nbtapestrysupport.dev.java.net/servlets/ProjectIssues
> 
> On Thu, Nov 12, 2009 at 10:00 PM, Ville Virtanen
> <vi...@cerion.fi> wrote:
>>
>> We use it, but we have inhouse modified version of it due to problems in
>> tml
>> / java class change functionality. (The original version does not know
>> how
>> to resolve all possible template locations.)
>>
>> I contacted the author if he would like to get / review the changes, but
>> I
>> never got any reply back.
>>
>> Anyhow, it really is usefull, atleast the tml / java class switch
>> functionality.
>>
>>  - Ville
>>
>>
>> Sergey Didenko wrote:
>>>
>>> Hi,
>>>
>>> does anybody uses this T5 plugin for Netbeans? ("nbtapestrysupport",
>>> see below). Does it work all right?
>>>
>>> On Mon, Jun 15, 2009 at 9:07 AM, iberck <ib...@gmail.com> wrote:
>>>>
>>>> Hi I'm developing a netbeans plugin for tapestry 5 tested on windows xp
>>>> The supported features are:
>>>>
>>> ....
>>>>
>>>> Feel free to download from:
>>>> https://nbtapestrysupport.dev.java.net/servlets/ProjectDocumentList
>>>>
>>>> View this message in context:
>>>> http://www.nabble.com/Netbeans-6.7-tapestry-5-plugin-support-tp24029691p24029691.html
>>>> Sent from the Tapestry - User mailing list archive at Nabble.com.
>>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>>> For additional commands, e-mail: users-help@tapestry.apache.org
>>>
>>>
>>>
>>
>> --
>> View this message in context:
>> http://old.nabble.com/Netbeans-6.7-tapestry-5-plugin-support-tp24029691p26325187.html
>> Sent from the Tapestry - User mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>>
> 
> 
> 
> -- 
> Andreas Andreou - andyhot@apache.org - http://blog.andyhot.gr
> Tapestry / Tacos developer
> Open Source / JEE Consulting
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
> 
> 
> 

-- 
View this message in context: http://old.nabble.com/Netbeans-6.7-tapestry-5-plugin-support-tp24029691p26360217.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Netbeans 6.7 tapestry 5 plugin support

Posted by Andreas Andreou <an...@di.uoa.gr>.
When was that? i think the T5related project used to be hosted at google-code
but then was moved into https://nbtapestrysupport.dev.java.net/
(where the t4project was)

Just request for the developer role if you have a java.net account - or add the
patches to an issue at
https://nbtapestrysupport.dev.java.net/servlets/ProjectIssues

On Thu, Nov 12, 2009 at 10:00 PM, Ville Virtanen
<vi...@cerion.fi> wrote:
>
> We use it, but we have inhouse modified version of it due to problems in tml
> / java class change functionality. (The original version does not know how
> to resolve all possible template locations.)
>
> I contacted the author if he would like to get / review the changes, but I
> never got any reply back.
>
> Anyhow, it really is usefull, atleast the tml / java class switch
> functionality.
>
>  - Ville
>
>
> Sergey Didenko wrote:
>>
>> Hi,
>>
>> does anybody uses this T5 plugin for Netbeans? ("nbtapestrysupport",
>> see below). Does it work all right?
>>
>> On Mon, Jun 15, 2009 at 9:07 AM, iberck <ib...@gmail.com> wrote:
>>>
>>> Hi I'm developing a netbeans plugin for tapestry 5 tested on windows xp
>>> The supported features are:
>>>
>> ....
>>>
>>> Feel free to download from:
>>> https://nbtapestrysupport.dev.java.net/servlets/ProjectDocumentList
>>>
>>> View this message in context:
>>> http://www.nabble.com/Netbeans-6.7-tapestry-5-plugin-support-tp24029691p24029691.html
>>> Sent from the Tapestry - User mailing list archive at Nabble.com.
>>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
>> For additional commands, e-mail: users-help@tapestry.apache.org
>>
>>
>>
>
> --
> View this message in context: http://old.nabble.com/Netbeans-6.7-tapestry-5-plugin-support-tp24029691p26325187.html
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>



-- 
Andreas Andreou - andyhot@apache.org - http://blog.andyhot.gr
Tapestry / Tacos developer
Open Source / JEE Consulting

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Netbeans 6.7 tapestry 5 plugin support

Posted by Ville Virtanen <vi...@cerion.fi>.
We use it, but we have inhouse modified version of it due to problems in tml
/ java class change functionality. (The original version does not know how
to resolve all possible template locations.)

I contacted the author if he would like to get / review the changes, but I
never got any reply back.

Anyhow, it really is usefull, atleast the tml / java class switch
functionality.

 - Ville


Sergey Didenko wrote:
> 
> Hi,
> 
> does anybody uses this T5 plugin for Netbeans? ("nbtapestrysupport",
> see below). Does it work all right?
> 
> On Mon, Jun 15, 2009 at 9:07 AM, iberck <ib...@gmail.com> wrote:
>>
>> Hi I'm developing a netbeans plugin for tapestry 5 tested on windows xp
>> The supported features are:
>>
> ....
>>
>> Feel free to download from:
>> https://nbtapestrysupport.dev.java.net/servlets/ProjectDocumentList
>>
>> View this message in context:
>> http://www.nabble.com/Netbeans-6.7-tapestry-5-plugin-support-tp24029691p24029691.html
>> Sent from the Tapestry - User mailing list archive at Nabble.com.
>>
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
> 
> 
> 

-- 
View this message in context: http://old.nabble.com/Netbeans-6.7-tapestry-5-plugin-support-tp24029691p26325187.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: Netbeans 6.7 tapestry 5 plugin support

Posted by Andreas Andreou <an...@di.uoa.gr>.
it's been a while since i've been on netbeans, but it worked fine

Actually, i think i've seen a few commits from iberk in the meantime
but not sure if a new version was published

On Thu, Nov 12, 2009 at 8:55 PM, Sergey Didenko
<se...@gmail.com> wrote:
> Hi,
>
> does anybody uses this T5 plugin for Netbeans? ("nbtapestrysupport",
> see below). Does it work all right?
>
> On Mon, Jun 15, 2009 at 9:07 AM, iberck <ib...@gmail.com> wrote:
>>
>> Hi I'm developing a netbeans plugin for tapestry 5 tested on windows xp
>> The supported features are:
>>
> ....
>>
>> Feel free to download from:
>> https://nbtapestrysupport.dev.java.net/servlets/ProjectDocumentList
>>
>> View this message in context: http://www.nabble.com/Netbeans-6.7-tapestry-5-plugin-support-tp24029691p24029691.html
>> Sent from the Tapestry - User mailing list archive at Nabble.com.
>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
> For additional commands, e-mail: users-help@tapestry.apache.org
>
>



-- 
Andreas Andreou - andyhot@apache.org - http://blog.andyhot.gr
Tapestry / Tacos developer
Open Source / JEE Consulting

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: NullPointerEx on adding @Persist to property for parameter "selected" for palette

Posted by Elisabeth Adler <el...@gmail.com>.
Hi,
The equals() method in Crop was missing alltogether. Implementing it was 
doing the trick.
Thanks a mil!
Elisabeth

Thiago H. de Paula Figueiredo wrote:
> Em Thu, 12 Nov 2009 21:26:46 -0200, Elisabeth Adler 
> <el...@gmail.com> escreveu:
>
>> Hi,
>
> Hi!
>
>> I am trying to get a palette working with simple pojos to be displayed
>> in the "available" list. I am working with Tapestry 5.0.11.
>
> That's a very old version . . .
>
>> I get the following NullPointerException:
>> Caused by: java.lang.NullPointerException
>>     at 
>> org.apache.tapestry.internal.util.SelectModelRenderer.option(SelectModelRenderer.java:49) 
>>
>
> I've seen this error before when there's some value in the selected 
> list that isn't available in the model. Also make sure the Crop class 
> has a good equals() method.
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


Re: NullPointerEx on adding @Persist to property for parameter "selected" for palette

Posted by "Thiago H. de Paula Figueiredo" <th...@gmail.com>.
Em Thu, 12 Nov 2009 21:26:46 -0200, Elisabeth Adler  
<el...@gmail.com> escreveu:

> Hi,

Hi!

> I am trying to get a palette working with simple pojos to be displayed
> in the "available" list. I am working with Tapestry 5.0.11.

That's a very old version . . .

> I get the following NullPointerException:
> Caused by: java.lang.NullPointerException
>     at  
> org.apache.tapestry.internal.util.SelectModelRenderer.option(SelectModelRenderer.java:49)

I've seen this error before when there's some value in the selected list  
that isn't available in the model. Also make sure the Crop class has a  
good equals() method.

-- 
Thiago H. de Paula Figueiredo
Independent Java, Apache Tapestry 5 and Hibernate consultant, developer,  
and instructor
Owner, software architect and developer, Ars Machina Tecnologia da  
Informação Ltda.
http://www.arsmachina.com.br

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org


NullPointerEx on adding @Persist to property for parameter "selected" for palette

Posted by Elisabeth Adler <el...@gmail.com>.
Hi,

I am trying to get a palette working with simple pojos to be displayed 
in the "available" list. I am working with Tapestry 5.0.11.

I defined my palette in the tml:
<t:palette encoder="cropsEncoder" model="cropsModel" 
selected="selectedCrops"/>

I implemented the encoder and model:
public Object getCropsEncoder() {
        return new GenericValueEncoder<Crop>(manager.getAllCrops(),
                "name", propertyAccess);
}

public Object getCropsModel()  {
        return new GenericSelectModel<Crop>(manager.getAllCrops(), 
Crop.class,
                "name", "id", propertyAccess);
}

I added the property for the selected values:
@Property
private List<Crop> selectedCrops;

This is working fine. As soon as I now try to actually keep the selected 
values in the "selected" list by adding @Persist to the property:
@Property
@Persist
private List<Crop> selectedCrops;

I get the following NullPointerException:
Caused by: java.lang.NullPointerException
    at 
org.apache.tapestry.internal.util.SelectModelRenderer.option(SelectModelRenderer.java:49)
    at 
org.apache.tapestry.corelib.components.Palette$SelectedRenderer.render(Palette.java:145)

The "available" list is displayed correctly, and the error occurs only 
when I select some items and move them over to the "selected" list.
Any ideas what I am missing?
thanks in advance,
Elisabeth

Re: Netbeans 6.7 tapestry 5 plugin support

Posted by Sergey Didenko <se...@gmail.com>.
Hi,

does anybody uses this T5 plugin for Netbeans? ("nbtapestrysupport",
see below). Does it work all right?

On Mon, Jun 15, 2009 at 9:07 AM, iberck <ib...@gmail.com> wrote:
>
> Hi I'm developing a netbeans plugin for tapestry 5 tested on windows xp
> The supported features are:
>
....
>
> Feel free to download from:
> https://nbtapestrysupport.dev.java.net/servlets/ProjectDocumentList
>
> View this message in context: http://www.nabble.com/Netbeans-6.7-tapestry-5-plugin-support-tp24029691p24029691.html
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org