Re: Advice please about WO

2011-06-14 Thread Pascal Robert
... A final question - if we want to list a job or project opening is the correct procedure to have it moderated by the list moms before posting to this list? If so how do I contact them? You will find that we are pretty tolerant of any posts that are not abusive (of people, not the

Re: AJAX Sample Applications - 2

2011-06-14 Thread Paul Dunkler
Hi Kalpana, thanks for sharing this with us! May these samples can be published at http://wiki.objectstyle.org/confluence/display/WONDER/Example+Applications ? Am 14.06.2011 um 07:07 schrieb Kalpana Vaka: Hi Team, We have put together few example applications that illustrates the use of

Add a WOComponent in AjaxGrid via a method

2011-06-14 Thread naneon . raymond
Hi All, I would like to add a WOComponent to a ajaxGrid without necessarily going through a . plist file, but adds the component that goes well with the data it will reference via a method. The problem is that is WOComponent not show but instead it displays the class and subclass of the

Re: Advice please about WO

2011-06-14 Thread David Avendasora
On Jun 14, 2011, at 12:12 AM, P Teeson wrote: the list moms Is this Anjo's official title, or just an honorific? Dave ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list

Re: Add a WOComponent in AjaxGrid via a method

2011-06-14 Thread Chuck Hill
Hi Raymond, AjaxGrid does not support doing it like that. You will need to make your own WOComponent to put in the cell. There is no other option. Inside that component, you can use a WOSwitchComponent and determine the actual component name at runtime based on the row. WOSwitchComponent

Re: Re: Add a WOComponent in AjaxGrid via a method

2011-06-14 Thread naneon . raymond
Hi Chuck, If I want to use WoSwitchComponent in my plist. I code it like that ? in .plist file : .. { title = HETIC; keyPath = col1; //Here is data }, { title = % de financement; // Here is component referenced component = WoSwitchComponentName }

Re: Add a WOComponent in AjaxGrid via a method

2011-06-14 Thread Chuck Hill
No, you can't use WOSwitchComponent directly in your plist. You MUST create your own WOComponent and use it in the plist. The WOSwitchComponent is then used your WOComponent that is in the plist. The job of this component is to tell the WOSwitchComponent which component class name and

WORepetition validation error

2011-06-14 Thread Neil MacLennan
All of a sudden all my projects in Eclipse have started displaying validation errors on WORepetitions. The error is 'Item' must be bound if 'list' is bound. Now these are projects that (a) I've been using for ages and (b) have both 'list' and 'item' bound. I created a brand new [wonder]

[ANN] WOUnit 1.1

2011-06-14 Thread Henrique Prange
The WOUnit team is pleased to announce the release of WOUnit 1.1. This release includes new features implemented to simplify the way we write tests. The WOUnit framework contains a set of utilities for testing WebObjects applications using JUnit 4.7 or later capabilities. See the WOUnit website

Re: WORepetition validation error

2011-06-14 Thread Chuck Hill
On Jun 14, 2011, at 2:42 PM, Neil MacLennan wrote: All of a sudden all my projects in Eclipse have started displaying validation errors on WORepetitions. The error is 'Item' must be bound if 'list' is bound. Now these are projects that (a) I've been using for ages and (b) have both 'list'

Re: WORepetition validation error

2011-06-14 Thread Michael Sharp
WOLips binding validation seems to be a temperamental and mysterious beast. Last week for me it was WOImage with validation telling me I must have a filename value when framework was also bound, which of course was already the case. So that gave me errors in all my projects! A combination of

Re: WORepetition validation error

2011-06-14 Thread Neil MacLennan
On 14 Jun 2011, at 22:51, Chuck Hill wrote: On Jun 14, 2011, at 2:42 PM, Neil MacLennan wrote: All of a sudden all my projects in Eclipse have started displaying validation errors on WORepetitions. The error is 'Item' must be bound if 'list' is bound. Now these are projects that (a) I've