Rép : Re: Calling PL/SQL FUNCTION In WebObjects( FUNCTION is not a procedure or is indefined )

2011-10-13 Thread Raymond NANEON
Thanks Susanne,My entities, functions and procedures are prefixed with schema owner but I go to verify again.ThanksEnvoyé depuis iCloudLe 12 oct 2011 à 01:48, Susanne Schneider susanne.schnei...@interactive-systems.de a écrit:Hi Raymond,  I would gess this is more an Oracle than an WebObjects problem. Oracle  can be very picky regarding user rights if you are dealing with separate  user schemes for your EOModel. Maybe the function is defined by another  user than that used by WebObjects to execute it?  You should check if the function owner is the user executing and, if  they are not equal, if the necessary execute rights have been given.  Furthermore if the function itself accesses tables from another user  than owner or executer, than you have another problem to solve :-)  HTH, Susanne  Am 11.10.2011 21:11, schrieb webobjects-dev-requ...@lists.apple.com:  Send Webobjects-dev mailing list submissions to  webobjects-dev@lists.apple.com   To subscribe or unsubscribe via the World Wide Web, visit  http://lists.apple.com/mailman/listinfo/webobjects-dev  or, via email, send a message with subject or body 'help' to  webobjects-dev-requ...@lists.apple.com   You can reach the person managing the list at  webobjects-dev-ow...@lists.apple.com   When replying, please edit your Subject line so it is more specific  than "Re: Contents of Webobjects-dev digest..."Today's Topics:   1. Calling PL/SQL FUNCTION In WebObjects( FUNCTION is not a  procedure or is indefined ) (Rafal Szczepanski)  2. Compare old Server to the new mac mini Server (ISHIMOTO Ken)  3. R?p?: Calling PL/SQL FUNCTION In WebObjects( FUNCTION is not  a procedure or is indefined ) (Raymond NANEON)  4. Re: Compare old Server to the new mac mini Server (Ramsey Gurley)  5. Re: Compare old Server to the new mac mini Server (Tim Worman)  6. Long time no write?and a problem with "Unbound classpath  container" (Lon Varscsak)--   Message: 1  Date: Tue, 11 Oct 2011 11:13:58 +0200  From: Rafal Szczepanskir.szczepan...@smartrecruiters.com  Subject: Calling PL/SQL FUNCTION In WebObjects( FUNCTION is not a  procedure or is indefined )  To: rnan...@me.com  Cc: webobjects-dev@lists.apple.com  Message-ID:001e01cc87f6$1d55f960$5801ec20$@com  Content-Type: text/plain; charset="us-ascii"   Hi Raymond, I'm using Oracle functions and everything works smooth. Can you please  provide more details about your configuration? Cheers,   Rafal   -- next part --  An HTML attachment was scrubbed...  URL: http://lists.apple.com/pipermail/webobjects-dev/attachments/20111011/f8e7ed28/attachment.html   --   Message: 2  Date: Tue, 11 Oct 2011 11:19:47 +0200  From: ISHIMOTO Kenk...@ksroom.com  Subject: Compare old Server to the new mac mini Server  To: WebObjects List MailingWebobjects-dev@lists.apple.com  Cc: wo...@webobjects.me  Message-ID:877ba62f-0947-4cad-95c5-85bb67bf7...@ksroom.com  Content-Type: text/plain; charset="us-ascii"   Hi,   I have replaced one of my Server. The old Server was a mac mini 2GB intel core duo with FrontBase 4 and Wonder-D2W Application.   The Average Transaction Time was : 0.626s (3 Instances used)   The new Server is a mac mini 8GB i7 with FrontBase 5 and the some Wonder-D2W Application.   The Average Transaction Time is : 0.036s (3 Instances used)about 17 Time faster. Thank you   Ken Ishimoto     K's ROOM    [E-Mail]k...@ksroom.com  [iChat:]ibase_...@mac.com  [HP] http://www.ksroom.com/  _  This e-mail has not been scanned for viruses because it was written on an Mac,  and there are NO Viruses on an Apple Computer.  For further information visit http://www.apple.com  -- next part --  An HTML attachment was scrubbed...  URL: http://lists.apple.com/pipermail/webobjects-dev/attachments/20111011/aca64a75/attachment.html   --   Message: 3  Date: Tue, 11 Oct 2011 09:54:27 + (GMT)  From: Raymond NANEONrnan...@me.com  Subject: R?p?: Calling PL/SQL FUNCTION In WebObjects( FUNCTION is not  a procedure or is indefined )  To: Rafal Szczepanskir.szczepan...@smartrecruiters.com  Cc: webobjects-dev@lists.apple.com  Message-ID:3fd14649-2bfe-4213-b636-f0c583a4c...@me.com  Content-Type: text/plain; charset="utf-8"   Hi Rafal,   I use Eclipse JEE Indigo , WOLips 3.7 and Wonder latest version. My function return a table.   i.e :   PL/SQL   TYPE TAB_ETUD IS TABLE OF OBJ_ETU;   FUNCTION PROFIL_ETUDIANT(      etuID in NUMBER      ) return TAB_ETUD PIPELINED;   here my java method :   public boolean executeProcedure(NSMutableDictionary procResult, String procedure, NSDictionary dicoData){    boolean noError = true;    startsWorking();    EOAdaptorChannel adaptorChannel = 

How to get selected Object of AjaxAutoComplete

2011-10-13 Thread Raymond NANEON
Hi All,I have a lill' problem with AjaxAutoComplete. I am having difficult to get the selected Object bind to selection attribute.Here is my HMTL code :divid="searchForm"woname="autoCompAOF1"webobjectname="motClefsAutoComplete1"//wo/divHere is WOD code :motClefsAutoComplete1:AjaxAutoComplete{	list=session.matchMotcClefs;	value=session.motClefs;	item=session.motClefsRepetition;	displayString=session.motClefsRepetition.refidxval;	selection=session.selectedMotClefs;	select=session.selectedMotClefs.refidxval;	//afterUpdateElement = ctrl.refreshPop2;}autoCompAOF1:AjaxObserveField{	fullSubmit=true;	elementName="span";	action=ctrl.refreshPop2;	updateContainerID="pop2";}Here is my java method to get Selected Object :   // Modulederecherches	publicWOActionResults refreshPop2() {		if(getSelectedMotClefs() !=null) {			//		}		returnnull;	}am I doing something wrong in using AjaxAutoComplete?ThanksEnvoyé depuis iCloud ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


WOTabPanel - Refresh page problem

2011-10-13 Thread Raymond NANEON
Hi,I use WOTabPanel for the first time and I'm surprise on how this component works. It refreshes the page each time you select a new tab and you loose all data you insert in others tabs?There is a way to fix this issue?ThanksEnvoyé depuis iCloud ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: WOTabPanel - Refresh page problem

2011-10-13 Thread Alexis Tual
Hi,

use CCTabPanel from Wonder to have your form values submitted when switching 
tabs,

Cheers,

Alex

Le 13 oct. 2011 à 11:14, Raymond NANEON a écrit :

 Hi,
 I use WOTabPanel for the first time and I'm surprise on how this component 
 works. It refreshes the page each time you select a new tab and you loose all 
 data you insert in others tabs?
 
 There is a way to fix this issue?
 
 Thanks
 Envoyé depuis iCloud
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/alexis.tual%40gmail.com
 
 This email sent to alexis.t...@gmail.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Rép : Re: WOTabPanel - Refresh page problem

2011-10-13 Thread Raymond NANEON
Bonjour Alexis,Je teste ça voir.ThanksEnvoyé depuis iCloudLe 13 oct 2011 à 02:22, Alexis Tual alexis.t...@gmail.com a écrit:Hi,use CCTabPanel from Wonder to have your form values submitted when switching tabs,Cheers,AlexLe 13 oct. 2011 à 11:14, Raymond NANEON a écrit :Hi,I use WOTabPanel for the first time and I'm surprise on how this component works. It refreshes the page each time you select a new tab and you loose all data you insert in others tabs?There is a way to fix this issue?ThanksEnvoyé depuis iCloud___Do not post admin requests to the list. They will be ignored.Webobjects-dev mailing list (Webobjects-dev@lists.apple.com)Help/Unsubscribe/Update your Subscription:http://lists.apple.com/mailman/options/webobjects-dev/alexis.tual%40gmail.comThis email sent to alexis.t...@gmail.com ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Rép : Re: WOTabPanel - Refresh page problem

2011-10-13 Thread Raymond NANEON
Hi Alexis,In which library we found this component? And have you seen my topic about AutoCompletion and getEntity pk?ThanksEnvoyé depuis iCloudLe 13 oct 2011 à 02:22, Alexis Tual alexis.t...@gmail.com a écrit:Hi,use CCTabPanel from Wonder to have your form values submitted when switching tabs,Cheers,AlexLe 13 oct. 2011 à 11:14, Raymond NANEON a écrit :Hi,I use WOTabPanel for the first time and I'm surprise on how this component works. It refreshes the page each time you select a new tab and you loose all data you insert in others tabs?There is a way to fix this issue?ThanksEnvoyé depuis iCloud___Do not post admin requests to the list. They will be ignored.Webobjects-dev mailing list (Webobjects-dev@lists.apple.com)Help/Unsubscribe/Update your Subscription:http://lists.apple.com/mailman/options/webobjects-dev/alexis.tual%40gmail.comThis email sent to alexis.t...@gmail.com ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Rép : Re: WOTabPanel - Refresh page problem

2011-10-13 Thread Alexis Tual

Le 13 oct. 2011 à 11:43, Pascal Robert a écrit :

 
 Le 2011-10-13 à 05:38, Raymond NANEON a écrit :
 
 Hi Alexis,
 
 In which library we found this component?
 
 http://lmgtfy.com/?q=CCTabPanel

:D

You can also find CCTabPanel in ERCoolComponents :
https://github.com/projectwonder/wonder/tree/master/Frameworks/Ajax/ERCoolComponents
If this is too much trouble, there's ERXTabPanel that does a similar job (I 
guess)

 
 And have you seen my topic about AutoCompletion and getEntity pk?
Not yet, 

Alex


 
 Thanks
 Envoyé depuis iCloud
 
 Le 13 oct 2011 à 02:22, Alexis Tual alexis.t...@gmail.com a écrit :
 
 Hi,
 
 use CCTabPanel from Wonder to have your form values submitted when 
 switching tabs,
 
 Cheers,
 
 Alex
 
 Le 13 oct. 2011 à 11:14, Raymond NANEON a écrit :
 
 Hi,
 I use WOTabPanel for the first time and I'm surprise on how this component 
 works. It refreshes the page each time you select a new tab and you loose 
 all data you insert in others tabs?
 
 There is a way to fix this issue?
 
 Thanks
 Envoyé depuis iCloud
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/alexis.tual%40gmail.com
 
 This email sent to alexis.t...@gmail.com
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.ca
 
 This email sent to prob...@macti.ca
 

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Rép : Re: Re: WOTabPanel - Refresh page problem

2011-10-13 Thread Raymond NANEON
Hi Pascal,I ask this question after search on google and it's not clear for me. It's in woextentions Library or er.extensions Library?I add them in My project but nothing appears in WOD.ThanksEnvoyé depuis iCloudLe 13 oct 2011 à 02:43, Pascal Robert prob...@macti.ca a écrit:Le 2011-10-13 à 05:38, Raymond NANEON a écrit :Hi Alexis,In which library we found this component?http://lmgtfy.com/?q=CCTabPanelAnd have you seen my topic about AutoCompletion and getEntity pk?ThanksEnvoyé depuis iCloudLe 13 oct 2011 à 02:22, Alexis Tual alexis.t...@gmail.com a écrit:Hi,use CCTabPanel from Wonder to have your form values submitted when switching tabs,Cheers,AlexLe 13 oct. 2011 à 11:14, Raymond NANEON a écrit :Hi,I use WOTabPanel for the first time and I'm surprise on how this component works. It refreshes the page each time you select a new tab and you loose all data you insert in others tabs?There is a way to fix this issue?ThanksEnvoyé depuis iCloud___Do not post admin requests to the list. They will be ignored.Webobjects-dev mailing list (Webobjects-dev@lists.apple.com)Help/Unsubscribe/Update your Subscription:http://lists.apple.com/mailman/options/webobjects-dev/alexis.tual%40gmail.comThis email sent to alexis.t...@gmail.com___Do not post admin requests to the list. They will be ignored.Webobjects-dev mailing list (Webobjects-dev@lists.apple.com)Help/Unsubscribe/Update your Subscription:http://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.caThis email sent to prob...@macti.ca ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Rép : Re: Re: WOTabPanel - Refresh page problem

2011-10-13 Thread Raymond NANEON
Sorry,I found it.er.coolcomponents.CCTabPanel.ThanksEnvoyé depuis iCloudLe 13 oct 2011 à 02:48, Raymond NANEON rnan...@me.com a écrit:Hi Pascal,I ask this question after search on google and it's not clear for me. It's in woextentions Library or er.extensions Library?I add them in My project but nothing appears in WOD.ThanksEnvoyé depuis iCloudLe 13 oct 2011 à 02:43, Pascal Robert prob...@macti.ca a écrit:Le 2011-10-13 à 05:38, Raymond NANEON a écrit :Hi Alexis,In which library we found this component?http://lmgtfy.com/?q=CCTabPanelAnd have you seen my topic about AutoCompletion and getEntity pk?ThanksEnvoyé depuis iCloudLe 13 oct 2011 à 02:22, Alexis Tual alexis.t...@gmail.com a écrit:Hi,use CCTabPanel from Wonder to have your form values submitted when switching tabs,Cheers,AlexLe 13 oct. 2011 à 11:14, Raymond NANEON a écrit :Hi,I use WOTabPanel for the first time and I'm surprise on how this component works. It refreshes the page each time you select a new tab and you loose all data you insert in others tabs?There is a way to fix this issue?ThanksEnvoyé depuis iCloud___Do not post admin requests to the list. They will be ignored.Webobjects-dev mailing list (Webobjects-dev@lists.apple.com)Help/Unsubscribe/Update your Subscription:http://lists.apple.com/mailman/options/webobjects-dev/alexis.tual%40gmail.comThis email sent to alexis.t...@gmail.com___Do not post admin requests to the list. They will be ignored.Webobjects-dev mailing list (Webobjects-dev@lists.apple.com)Help/Unsubscribe/Update your Subscription:http://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.caThis email sent to prob...@macti.ca___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/webobjects-dev/rnaneon%40me.com  This email sent to rnan...@me.com ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Rép : Re: Re: WOTabPanel - Refresh page problem

2011-10-13 Thread Raymond NANEON
Hi,I finally use CCTabPanel but big problem in layout the tab. It displays like 'li' list et not like a tab. I use attribute tabClass but nothing is done.How to fix it?Envoyé depuis iCloudLe 13 oct 2011 à 02:49, Raymond NANEON rnan...@me.com a écrit:Sorry,I found it.er.coolcomponents.CCTabPanel.ThanksEnvoyé depuis iCloudLe 13 oct 2011 à 02:48, Raymond NANEON rnan...@me.com a écrit:Hi Pascal,I ask this question after search on google and it's not clear for me. It's in woextentions Library or er.extensions Library?I add them in My project but nothing appears in WOD.ThanksEnvoyé depuis iCloudLe 13 oct 2011 à 02:43, Pascal Robert prob...@macti.ca a écrit:Le 2011-10-13 à 05:38, Raymond NANEON a écrit :Hi Alexis,In which library we found this component?http://lmgtfy.com/?q=CCTabPanelAnd have you seen my topic about AutoCompletion and getEntity pk?ThanksEnvoyé depuis iCloudLe 13 oct 2011 à 02:22, Alexis Tual alexis.t...@gmail.com a écrit:Hi,use CCTabPanel from Wonder to have your form values submitted when switching tabs,Cheers,AlexLe 13 oct. 2011 à 11:14, Raymond NANEON a écrit :Hi,I use WOTabPanel for the first time and I'm surprise on how this component works. It refreshes the page each time you select a new tab and you loose all data you insert in others tabs?There is a way to fix this issue?ThanksEnvoyé depuis iCloud___Do not post admin requests to the list. They will be ignored.Webobjects-dev mailing list (Webobjects-dev@lists.apple.com)Help/Unsubscribe/Update your Subscription:http://lists.apple.com/mailman/options/webobjects-dev/alexis.tual%40gmail.comThis email sent to alexis.t...@gmail.com___Do not post admin requests to the list. They will be ignored.Webobjects-dev mailing list (Webobjects-dev@lists.apple.com)Help/Unsubscribe/Update your Subscription:http://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.caThis email sent to prob...@macti.ca___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/webobjects-dev/rnaneon%40me.com  This email sent to rnan...@me.com ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Project.woa/Contents/UNIX/UNIXClassPath.txt

2011-10-13 Thread Bjarni Sævarsson
Hi all.

Encountered a strange error after a redeploy a wo app, Salsa, this morning.
Javamonitor refused to start the instances so I started the app manually.


...
Can't find main method on class is.us.util.USPrincipalClass, exiting...
java.lang.NoSuchMethodException:
is.us.util.USPrincipalClass.main([Ljava.lang.String;)
at java.lang.Class.getMethod(Class.java:1605)
at com.webobjects._bootstrap.WOBootstrap.main(WOBootstrap.java:86)


Opened Salsa.woa/Contents/UNIX/UNIXClassPath.txt and there I see
...
ApplicationClass == is.us.salsa.USPrincipalClass
...

Changed it to
...
ApplicationClass == is.us.salsa.Application
...

aaand now jm runs the instances normally.


So, my question is if anyone has any idea how this can happen?

p.s. Using eclipse.

Best regards,
Bjarni Sævarsson
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Project.woa/Contents/UNIX/UNIXClassPath.txt

2011-10-13 Thread Kieran Kelleher
Check the contents of the application project's build.properties file.

On Oct 13, 2011, at 7:07 AM, Bjarni Sævarsson wrote:

 Hi all.
 
 Encountered a strange error after a redeploy a wo app, Salsa, this morning.
 Javamonitor refused to start the instances so I started the app manually.
 
 
 ...
 Can't find main method on class is.us.util.USPrincipalClass, exiting...
 java.lang.NoSuchMethodException: 
 is.us.util.USPrincipalClass.main([Ljava.lang.String;)
   at java.lang.Class.getMethod(Class.java:1605)
   at com.webobjects._bootstrap.WOBootstrap.main(WOBootstrap.java:86)
 
 
 Opened Salsa.woa/Contents/UNIX/UNIXClassPath.txt and there I see 
 ...
 ApplicationClass == is.us.salsa.USPrincipalClass
 ...
 
 Changed it to 
 ...
 ApplicationClass == is.us.salsa.Application
 ...
 
 aaand now jm runs the instances normally.
 
 
 So, my question is if anyone has any idea how this can happen?
 
 p.s. Using eclipse.
 
 Best regards,
 Bjarni Sævarsson
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/kelleherk%40gmail.com
 
 This email sent to kelleh...@gmail.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: How to get selected Object of AjaxAutoComplete

2011-10-13 Thread Farrukh Ijaz
Hi Raymond,

You should be able to retrieve the value from session().selectedMotCalefs 
property. You don't need to use select attribute. Simple code below using 
inline bindings:

wo:AjaxAutoComplete list=$items item=$item value=$value 
selection=$selectedItem displayString=$item.propertyYouWantToShow /

Farrukh

On 2011-10-13, at 11:04 AM, Raymond NANEON wrote:

 Hi All,
 
 I have a lill' problem with AjaxAutoComplete. I am having difficult to get 
 the selected Object bind to selection attribute.
 
 Here is my HMTL code : 
 
 div id = searchFormwo name = autoCompAOF1webobject name = 
 motClefsAutoComplete1//wo/div
 
 Here is WOD code :
 
 motClefsAutoComplete1 : AjaxAutoComplete {
   list = session.matchMotcClefs;
   value = session.motClefs;
   item = session.motClefsRepetition;
   displayString = session.motClefsRepetition.refidxval;
   selection = session.selectedMotClefs;
   select = session.selectedMotClefs.refidxval;
   //afterUpdateElement = ctrl.refreshPop2;
 }
 
 autoCompAOF1 : AjaxObserveField {
   fullSubmit = true;
   elementName = span;
   action = ctrl.refreshPop2;
   updateContainerID = pop2;
 }
 
 Here is my java method to get Selected Object :
 
// Module de recherches
   public WOActionResults refreshPop2() {
   if (getSelectedMotClefs() != null) {
   //
   }
   return null;
   }
 
 am I doing something wrong in using AjaxAutoComplete?
 
 Thanks
 Envoyé depuis iCloud
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/farrukh.ijaz%40fuegodigitalmedia.com
 
 This email sent to farrukh.i...@fuegodigitalmedia.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Rép : Re: How to get selected Object of AjaxAutoComplete

2011-10-13 Thread Raymond NANEON
HiFarrukh,The Object "session().selectedMotClefs" is null when my AjaxObserveField run the method refreshPop2. When I retired the attribute "select", there is the same thing. I get always null value insession().selectedMotClefs.Thaks for your helpEnvoyé depuis iCloudLe 13 oct 2011 à 05:16, Farrukh Ijaz farrukh.i...@fuegodigitalmedia.com a écrit:Hi Raymond,You should be able to retrieve the value from session().selectedMotCalefs property. You don't need to use "select" attribute. Simple code below using inline bindings:wo:AjaxAutoComplete list="$items" item="$item" value="$value" selection="$selectedItem" displayString="$item.propertyYouWantToShow" /FarrukhOn 2011-10-13, at 11:04 AM, Raymond NANEON wrote:Hi All,I have a lill' problem with AjaxAutoComplete. I am having difficult to get the selected Object bind to selection attribute.Here is my HMTL code :divid="searchForm"woname="autoCompAOF1"webobjectname="motClefsAutoComplete1"//wo/divHere is WOD code :motClefsAutoComplete1:AjaxAutoComplete{list=session.matchMotcClefs;value=session.motClefs;item=session.motClefsRepetition;displayString=session.motClefsRepetition.refidxval;selection=session.selectedMotClefs;select=session.selectedMotClefs.refidxval;//afterUpdateElement = ctrl.refreshPop2;}autoCompAOF1:AjaxObserveField{fullSubmit=true;elementName="span";action=ctrl.refreshPop2;updateContainerID="pop2";}Here is my java method to get Selected Object :   // ModulederecherchespublicWOActionResults refreshPop2() {if(getSelectedMotClefs() !=null) {//}returnnull;}am I doing something wrong in using AjaxAutoComplete?ThanksEnvoyé depuis iCloud___Do not post admin requests to the list. They will be ignored.Webobjects-dev mailing list (Webobjects-dev@lists.apple.com)Help/Unsubscribe/Update your Subscription:http://lists.apple.com/mailman/options/webobjects-dev/farrukh.ijaz%40fuegodigitalmedia.comThis email sent to farrukh.i...@fuegodigitalmedia.com ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: WOTabPanel - Refresh page problem

2011-10-13 Thread David LeBer
Raymond,

CCTabPanel should have enough css classes applied to it to allow you to style 
it pretty much anyway you want. Styling is left as an exercise for the user and 
there are lots of css tab examples on the web to get you started.

For a concrete example, the tab inspect pages in ERModernLook use CCTabPanel. 

i.e: From default_screen_stylesheet.css in ERModernDefaultSkin:

/* TABS */
.Tab,
.TabItemsList {
list-style-type: none;
padding: 0;
margin: 0;
}

.TabItemsList {
position: relative;
top:  1px;
width: 100%;
overflow: hidden;
}

.Tab {
padding-right: 30px;
float: left;
}

.Tab span {
display: block;
padding-bottom: 12px;
padding-top: 8px;
font-weight: bold;
}

.TPTab_Selected span {
background-image: url(pag_tab_sel.png);
background-position: center bottom;
background-repeat: no-repeat;
}

.TabPanelContent .InnerWrapper {
border-top: 1px solid #e1e1e1;
}


On 2011-10-13, at 6:34 AM, Raymond NANEON wrote:

 Hi,
 
 I finally use CCTabPanel but big problem in layout the tab. It displays like 
 'li' list et not like a tab. I use attribute tabClass but nothing is done.
 
 How to fix it?
 Envoyé depuis iCloud
 
 Le 13 oct 2011 à 02:49, Raymond NANEON rnan...@me.com a écrit :
 
 Sorry,
 
 I found it.
 
 er.coolcomponents.CCTabPanel.
 
 Thanks
 Envoyé depuis iCloud
 
 Le 13 oct 2011 à 02:48, Raymond NANEON rnan...@me.com a écrit :
 
 Hi Pascal,
 
 I ask this question after search on google and it's not clear for me. It's 
 in woextentions Library or er.extensions Library?
 
 I add them in My project but nothing appears in WOD.
 
 Thanks
 Envoyé depuis iCloud
 
 Le 13 oct 2011 à 02:43, Pascal Robert prob...@macti.ca a écrit :
 
 
 Le 2011-10-13 à 05:38, Raymond NANEON a écrit :
 
 Hi Alexis,
 
 In which library we found this component?
 
 http://lmgtfy.com/?q=CCTabPanel
 
 And have you seen my topic about AutoCompletion and getEntity pk?
 
 Thanks
 Envoyé depuis iCloud
 
 Le 13 oct 2011 à 02:22, Alexis Tual alexis.t...@gmail.com a écrit :
 
 Hi,
 
 use CCTabPanel from Wonder to have your form values submitted when 
 switching tabs,
 
 Cheers,
 
 Alex
 
 Le 13 oct. 2011 à 11:14, Raymond NANEON a écrit :
 
 Hi,
 I use WOTabPanel for the first time and I'm surprise on how this 
 component works. It refreshes the page each time you select a new tab 
 and you loose all data you insert in others tabs?
 
 There is a way to fix this issue?
 
 Thanks
 Envoyé depuis iCloud
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/alexis.tual%40gmail.com
 
 This email sent to alexis.t...@gmail.com
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.ca
 
 This email sent to prob...@macti.ca
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/rnaneon%40me.com
 
 This email sent to rnan...@me.com
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/dleber_wodev%40codeferous.com
 
 This email sent to dleber_wo...@codeferous.com


--
David LeBer
Codeferous Software
'co-def-er-ous' adj. Literally 'code-bearing'
site:   http://codeferous.com
blog:   http://davidleber.net
profile:http://www.linkedin.com/in/davidleber
twitter:http://twitter.com/rebeld
--
Toronto Area Cocoa / WebObjects developers group:
http://tacow.org






 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Rép : ERRest presentation in French

2011-10-13 Thread Raymond NANEON
Hi Pascal,Le 13 oct 2011 à 05:54, Pascal Robert prob...@macti.ca a écrit:For the French-speaking crowd, I'm doing a ERRest presentation in French (in our WebEx channel) on October 25th at 09:00am (GMT -4). To register:  https://wocommunity.webex.com/mw0306ld/mywebex/default.do?siteurl=wocommunityRegister done  (click on Monthly to see the event in the calendar). Seating is limited (we already have 10 attendees) so make sure you register if you want to attend. The presentation will go over how to use the HTTP protocol correctly, how routes and controllers works, HTML routing, with an example (using a EO model to create the routes and controllers).  Merci.Merci  ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Webobjects-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/webobjects-dev/rnaneon%40me.com  This email sent to rnan...@me.com ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Rép : Re: WOTabPanel - Refresh page problem

2011-10-13 Thread Raymond NANEON
Hi Dave,Thanks a lot.Try it and modify as I want.CheersEnvoyé depuis iCloudLe 13 oct 2011 à 06:00, David LeBer dleber_wo...@codeferous.com a écrit:Raymond,  CCTabPanel should have enough css classes applied to it to allow you to style it pretty much anyway you want. Styling is left as an exercise for the user and there are lots of css tab examples on the web to get you started.  For a concrete example, the tab inspect pages in ERModernLook use CCTabPanel.   i.e: From default_screen_stylesheet.css in ERModernDefaultSkin:  /* TABS */ .Tab, .TabItemsList { list-style-type: none; padding: 0; margin: 0; }  .TabItemsList { position: relative; top: 1px; width: 100%; overflow: hidden; }  .Tab { padding-right: 30px; float: left; }  .Tab span { display: block; padding-bottom: 12px; padding-top: 8px; font-weight: bold; }  .TPTab_Selected span { background-image: url(pag_tab_sel.png); background-position: center bottom; background-repeat: no-repeat; }  .TabPanelContent .InnerWrapper { border-top: 1px solid #e1e1e1; }   On 2011-10-13, at 6:34 AM, Raymond NANEON wrote:   Hi,I finally use CCTabPanel but big problem in layout the tab. It displays like 'li' list et not like a tab. I use attribute tabClass but nothing is done.How to fix it?  Envoyé depuis iCloudLe 13 oct 2011 à 02:49, Raymond NANEON rnan...@me.com a écrit :Sorry,I found it.er.coolcomponents.CCTabPanel.Thanks  Envoyé depuis iCloudLe 13 oct 2011 à 02:48, Raymond NANEON rnan...@me.com a écrit :Hi Pascal,I ask this question after search on google and it's not clear for me. It's in woextentions Library or er.extensions Library?I add them in My project but nothing appears in WOD.Thanks  Envoyé depuis iCloudLe 13 oct 2011 à 02:43, Pascal Robert prob...@macti.ca a écrit :  Le 2011-10-13 à 05:38, Raymond NANEON a écrit :Hi Alexis,In which library we found this component?http://lmgtfy.com/?q=CCTabPanelAnd have you seen my topic about AutoCompletion and getEntity pk?Thanks  Envoyé depuis iCloudLe 13 oct 2011 à 02:22, Alexis Tual alexis.t...@gmail.com a écrit :Hi,use CCTabPanel from Wonder to have your form values submitted when switching tabs,Cheers,AlexLe 13 oct. 2011 à 11:14, Raymond NANEON a écrit :Hi,  I use WOTabPanel for the first time and I'm surprise on how this component works. It refreshes the page each time you select a new tab and you loose all data you insert in others tabs?There is a way to fix this issue?Thanks  Envoyé depuis iCloud  ___  Do not post admin requests to the list. They will be ignored.  Webobjects-dev mailing list (Webobjects-dev@lists.apple.com)  Help/Unsubscribe/Update your Subscription:  http://lists.apple.com/mailman/options/webobjects-dev/alexis.tual%40gmail.comThis email sent to alexis.t...@gmail.com___  Do not post admin requests to the list. They will be ignored.  Webobjects-dev mailing list (Webobjects-dev@lists.apple.com)  Help/Unsubscribe/Update your Subscription:  http://lists.apple.com/mailman/options/webobjects-dev/probert%40macti.caThis email sent to prob...@macti.ca___  Do not post admin requests to the list. They will be ignored.  Webobjects-dev mailing list (Webobjects-dev@lists.apple.com)  Help/Unsubscribe/Update your Subscription:  http://lists.apple.com/mailman/options/webobjects-dev/rnaneon%40me.comThis email sent to rnan...@me.com  ___  Do not post admin requests to the list. They will be ignored.  Webobjects-dev mailing list (Webobjects-dev@lists.apple.com)  Help/Unsubscribe/Update your Subscription:  http://lists.apple.com/mailman/options/webobjects-dev/dleber_wodev%40codeferous.comThis email sent to dleber_wo...@codeferous.com   -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://codeferous.com blog: http://davidleber.net profile: http://www.linkedin.com/in/davidleber twitter: http://twitter.com/rebeld -- Toronto Area Cocoa / WebObjects developers group: http://tacow.org   ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: How to get selected Object of AjaxAutoComplete

2011-10-13 Thread Farrukh Ijaz
Hi, 

Try following:

1. Move the AAC out of AOF and see you get the selected value or
2. Make sure your AjaxObserveField is wrapped by a form, typically 
ERXOptionalForm otherwise the values will never be set.

I use quite often the AAC and I works just fine. It's a matter of setting it up 
properly.

Farrukh

On 2011-10-13, at 3:47 PM, Raymond NANEON wrote:

 Hi Farrukh,
 
 The Object session().selectedMotClefs is null when my AjaxObserveField run 
 the method refreshPop2. When I retired the attribute select, there is the 
 same thing. I get always null value in session().selectedMotClefs.
 
 Thaks for your help
 Envoyé depuis iCloud
 
 Le 13 oct 2011 à 05:16, Farrukh Ijaz farrukh.i...@fuegodigitalmedia.com a 
 écrit :
 
 Hi Raymond,
 
 You should be able to retrieve the value from session().selectedMotCalefs 
 property. You don't need to use select attribute. Simple code below using 
 inline bindings:
 
 wo:AjaxAutoComplete list=$items item=$item value=$value 
 selection=$selectedItem displayString=$item.propertyYouWantToShow /
 
 Farrukh
 
 On 2011-10-13, at 11:04 AM, Raymond NANEON wrote:
 
 Hi All,
 
 I have a lill' problem with AjaxAutoComplete. I am having difficult to get 
 the selected Object bind to selection attribute.
 
 Here is my HMTL code : 
 
 div id = searchFormwo name = autoCompAOF1webobject name = 
 motClefsAutoComplete1//wo/div
 
 Here is WOD code :
 
 motClefsAutoComplete1 : AjaxAutoComplete {
 list = session.matchMotcClefs;
 value = session.motClefs;
 item = session.motClefsRepetition;
 displayString = session.motClefsRepetition.refidxval;
 selection = session.selectedMotClefs;
 select = session.selectedMotClefs.refidxval;
 //afterUpdateElement = ctrl.refreshPop2;
 }
 
 autoCompAOF1 : AjaxObserveField {
 fullSubmit = true;
 elementName = span;
 action = ctrl.refreshPop2;
 updateContainerID = pop2;
 }
 
 Here is my java method to get Selected Object :
 
// Module de recherches
 public WOActionResults refreshPop2() {
 if (getSelectedMotClefs() != null) {
 //
 }
 return null;
 }
 
 am I doing something wrong in using AjaxAutoComplete?
 
 Thanks
 Envoyé depuis iCloud
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/farrukh.ijaz%40fuegodigitalmedia.com
 
 This email sent to farrukh.i...@fuegodigitalmedia.com
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/farrukh.ijaz%40fuegodigitalmedia.com
 
 This email sent to farrukh.i...@fuegodigitalmedia.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Rép : Re: How to get selected Object of AjaxAutoComplete

2011-10-13 Thread Raymond NANEON
Thanks Farrukh,I try again and tell you.Envoyé depuis iCloudLe 13 oct 2011 à 06:17, Farrukh Ijaz farrukh.i...@fuegodigitalmedia.com a écrit:Hi,Try following:1. Move the AAC out of AOF and see you get the selected value or2. Make sure your AjaxObserveField is wrapped by a form, typically ERXOptionalForm otherwise the values will never be set.I use quite often the AAC and I works just fine. It's a matter of setting it up properly.FarrukhOn 2011-10-13, at 3:47 PM, Raymond NANEON wrote:HiFarrukh,The Object "session().selectedMotClefs" is null when my AjaxObserveField run the method refreshPop2. When I retired the attribute "select", there is the same thing. I get always null value insession().selectedMotClefs.Thaks for your helpEnvoyé depuis iCloudLe 13 oct 2011 à 05:16, Farrukh Ijaz farrukh.i...@fuegodigitalmedia.com a écrit:Hi Raymond,You should be able to retrieve the value from session().selectedMotCalefs property. You don't need to use "select" attribute. Simple code below using inline bindings:wo:AjaxAutoComplete list="$items" item="$item" value="$value" selection="$selectedItem" displayString="$item.propertyYouWantToShow" /FarrukhOn 2011-10-13, at 11:04 AM, Raymond NANEON wrote:Hi All,I have a lill' problem with AjaxAutoComplete. I am having difficult to get the selected Object bind to selection attribute.Here is my HMTL code :divid="searchForm"woname="autoCompAOF1"webobjectname="motClefsAutoComplete1"//wo/divHere is WOD code :motClefsAutoComplete1:AjaxAutoComplete{list=session.matchMotcClefs;value=session.motClefs;item=session.motClefsRepetition;displayString=session.motClefsRepetition.refidxval;selection=session.selectedMotClefs;select=session.selectedMotClefs.refidxval;//afterUpdateElement = ctrl.refreshPop2;}autoCompAOF1:AjaxObserveField{fullSubmit=true;elementName="span";action=ctrl.refreshPop2;updateContainerID="pop2";}Here is my java method to get Selected Object :   // ModulederecherchespublicWOActionResults refreshPop2() {if(getSelectedMotClefs() !=null) {//}returnnull;}am I doing something wrong in using AjaxAutoComplete?ThanksEnvoyé depuis iCloud___Do not post admin requests to the list. They will be ignored.Webobjects-dev mailing list (Webobjects-dev@lists.apple.com)Help/Unsubscribe/Update your Subscription:http://lists.apple.com/mailman/options/webobjects-dev/farrukh.ijaz%40fuegodigitalmedia.comThis email sent to farrukh.i...@fuegodigitalmedia.com___Do not post admin requests to the list. They will be ignored.Webobjects-dev mailing list (Webobjects-dev@lists.apple.com)Help/Unsubscribe/Update your Subscription:http://lists.apple.com/mailman/options/webobjects-dev/farrukh.ijaz%40fuegodigitalmedia.comThis email sent to farrukh.i...@fuegodigitalmedia.com ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: AjaxDatePicker on ModalDialogBox

2011-10-13 Thread Chris Pastore
Alexis,

That does seem to do the trick! 

Are there any plans for this to get moved into the project? Is there a reason 
why this code should NOT be used?

Thanks for any help/information.

Thanks,

Chris Pastore


On Oct 12, 2011, at 3:41 PM, Alexis Tual wrote:

 Hello, 
 that sounds familiar, you might want to check this :
 http://lists.apple.com/archives/webobjects-dev/2011/Sep/msg00288.html
 
 and the fix :
 https://github.com/alextu/wonder/commit/25f57ecf4241503d991fa52dc2efbd19c45843ff
 
 Cheers,
 
 Alexis
 
 
 Le 12 oct. 2011 à 21:22, Chris Pastore a écrit :
 
 David,
 
 If I'm not mistaken though, the calendar table is positioned absolutely and 
 lined up with the form field. It also has an explicitly set z-index of 10001.
 
 Thanks,
 
 Chris Pastore
 
 
 
 -Original Message-
 From: David LeBer [mailto:dleber_wo...@codeferous.com] 
 Sent: Wednesday, October 12, 2011 3:13 PM
 To: Chris Pastore
 Cc: webobjects-dev@lists.apple.com
 Subject: Re: AjaxDatePicker on ModalDialogBox
 
 This is an IE 'feature'. In IE, each block that has a 'relative' positioning 
 gets it's own z-index stack.
 
 http://ltslashgt.com/2007/05/16/relative-zindex-and-ie/
 
 On 2011-10-12, at 2:51 PM, Chris Pastore wrote:
 
 I have an AjaxDatePicker that I use on a ModalDialogBox. Everything is fine 
 and all the form elements play fine on the ModalDialogBox, except when it 
 comes to Internet Explorer (isn't that always the case?). The issue, is 
 that I can open the date picker one time and it displays fine, but if I 
 close the modal dialog, and re-open it and try to open the date picker a 
 second time, the styling goes away. The calendar is placed where it should 
 be, but no white background, borders, or highlighting. First thought was 
 z-index, but since the date picker has a higher z-index than the modal 
 dialog box and the numbers actually show up, I'm thinking that is not the 
 problem.
 
 Has anyone seen this before?
 
 I included two screenshots... Not sure if that will work or not.
 
 image001.png
 
 
 image006.png
 Thanks,
 
 Chris Pastore
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/dleber_wodev%40codeferous.com
 
 This email sent to dleber_wo...@codeferous.com
 
 
 --
 David LeBer
 Codeferous Software
 'co-def-er-ous' adj. Literally 'code-bearing'
 site:http://codeferous.com
 blog:http://davidleber.net
 profile: http://www.linkedin.com/in/davidleber
 twitter: http://twitter.com/rebeld
 --
 Toronto Area Cocoa / WebObjects developers group:
 http://tacow.org
 
 
 
 
 
 
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/alexis.tual%40gmail.com
 
 This email sent to alexis.t...@gmail.com
 
 


 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: AjaxDatePicker on ModalDialogBox

2011-10-13 Thread Alexis Tual
Hi Paul,
Fortunately we just do the same here :)
But in this case, it's not an IE issue, it concerns the loading of css files by 
a component which is hidden and then shown by an ajax request.
Bogdan shows an example : 
http://lists.apple.com/archives/webobjects-dev/2011/Sep/msg00288.html

Cheers,

Alex

Le 13 oct. 2011 à 17:31, Paul Yu a écrit :

 I just ignore my IE customers and tell them to switch.
 
 ;)
 
 Paul
 On Oct 13, 2011, at 11:29 AM, Alexis Tual wrote:
 
 Hi,
 
 Le 13 oct. 2011 à 17:08, Chris Pastore a écrit :
 
 Alexis,
 
 That does seem to do the trick! 
 
 Are there any plans for this to get moved into the project? Is there a 
 reason why this code should NOT be used?
 I should have filled a github issue (or Jira ?)... and done a pull request 
 for reviewing. I will do it and remove the condition on 
 er.extensions.loadOnDemandDuringReplace from my code as it seems useless.
 I've done the fix 1 month ago and didn't face any issue since... I'm still 
 puzzled that there's only 3 people on the list having this specific issue, 
 apparently.
 
 
 Thanks for any help/information.
 
 Thanks,
 Chris Pastore
 you're welcome,
 
 Alex
 
 
 
 On Oct 12, 2011, at 3:41 PM, Alexis Tual wrote:
 
 Hello, 
 that sounds familiar, you might want to check this :
 http://lists.apple.com/archives/webobjects-dev/2011/Sep/msg00288.html
 
 and the fix :
 https://github.com/alextu/wonder/commit/25f57ecf4241503d991fa52dc2efbd19c45843ff
 
 Cheers,
 
 Alexis
 
 
 Le 12 oct. 2011 à 21:22, Chris Pastore a écrit :
 
 David,
 
 If I'm not mistaken though, the calendar table is positioned absolutely 
 and lined up with the form field. It also has an explicitly set z-index 
 of 10001.
 
 Thanks,
 
 Chris Pastore
 
 
 
 -Original Message-
 From: David LeBer [mailto:dleber_wo...@codeferous.com] 
 Sent: Wednesday, October 12, 2011 3:13 PM
 To: Chris Pastore
 Cc: webobjects-dev@lists.apple.com
 Subject: Re: AjaxDatePicker on ModalDialogBox
 
 This is an IE 'feature'. In IE, each block that has a 'relative' 
 positioning gets it's own z-index stack.
 
 http://ltslashgt.com/2007/05/16/relative-zindex-and-ie/
 
 On 2011-10-12, at 2:51 PM, Chris Pastore wrote:
 
 I have an AjaxDatePicker that I use on a ModalDialogBox. Everything is 
 fine and all the form elements play fine on the ModalDialogBox, except 
 when it comes to Internet Explorer (isn't that always the case?). The 
 issue, is that I can open the date picker one time and it displays fine, 
 but if I close the modal dialog, and re-open it and try to open the date 
 picker a second time, the styling goes away. The calendar is placed 
 where it should be, but no white background, borders, or highlighting. 
 First thought was z-index, but since the date picker has a higher 
 z-index than the modal dialog box and the numbers actually show up, I'm 
 thinking that is not the problem.
 
 Has anyone seen this before?
 
 I included two screenshots... Not sure if that will work or not.
 
 image001.png
 
 
 image006.png
 Thanks,
 
 Chris Pastore
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/dleber_wodev%40codeferous.com
 
 This email sent to dleber_wo...@codeferous.com
 
 
 --
 David LeBer
 Codeferous Software
 'co-def-er-ous' adj. Literally 'code-bearing'
 site: http://codeferous.com
 blog: http://davidleber.net
 profile:  http://www.linkedin.com/in/davidleber
 twitter:  http://twitter.com/rebeld
 --
 Toronto Area Cocoa / WebObjects developers group:
 http://tacow.org
 
 
 
 
 
 
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/alexis.tual%40gmail.com
 
 This email sent to alexis.t...@gmail.com
 
 
 
 
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/pyu%40mac.com
 
 This email sent to p...@mac.com
 

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: AjaxDatePicker on ModalDialogBox

2011-10-13 Thread David LeBer

On 2011-10-13, at 11:39 AM, Alexis Tual wrote:

 Hi Paul,
 Fortunately we just do the same here :)
 But in this case, it's not an IE issue, it concerns the loading of css files 
 by a component which is hidden and then shown by an ajax request.
 Bogdan shows an example : 
 http://lists.apple.com/archives/webobjects-dev/2011/Sep/msg00288.html
 
 Cheers,
 
 Alex

For those kinds of issues I usually punt and just merge the required css into 
one of the global (always loaded) stylesheets.

 
 Le 13 oct. 2011 à 17:31, Paul Yu a écrit :
 
 I just ignore my IE customers and tell them to switch.
 
 ;)
 
 Paul
 On Oct 13, 2011, at 11:29 AM, Alexis Tual wrote:
 
 Hi,
 
 Le 13 oct. 2011 à 17:08, Chris Pastore a écrit :
 
 Alexis,
 
 That does seem to do the trick! 
 
 Are there any plans for this to get moved into the project? Is there a 
 reason why this code should NOT be used?
 I should have filled a github issue (or Jira ?)... and done a pull request 
 for reviewing. I will do it and remove the condition on 
 er.extensions.loadOnDemandDuringReplace from my code as it seems useless.
 I've done the fix 1 month ago and didn't face any issue since... I'm still 
 puzzled that there's only 3 people on the list having this specific issue, 
 apparently.
 
 
 Thanks for any help/information.
 
 Thanks,
 Chris Pastore
 you're welcome,
 
 Alex
 
 
 
 On Oct 12, 2011, at 3:41 PM, Alexis Tual wrote:
 
 Hello, 
 that sounds familiar, you might want to check this :
 http://lists.apple.com/archives/webobjects-dev/2011/Sep/msg00288.html
 
 and the fix :
 https://github.com/alextu/wonder/commit/25f57ecf4241503d991fa52dc2efbd19c45843ff
 
 Cheers,
 
 Alexis
 
 
 Le 12 oct. 2011 à 21:22, Chris Pastore a écrit :
 
 David,
 
 If I'm not mistaken though, the calendar table is positioned absolutely 
 and lined up with the form field. It also has an explicitly set z-index 
 of 10001.
 
 Thanks,
 
 Chris Pastore
 
 
 
 -Original Message-
 From: David LeBer [mailto:dleber_wo...@codeferous.com] 
 Sent: Wednesday, October 12, 2011 3:13 PM
 To: Chris Pastore
 Cc: webobjects-dev@lists.apple.com
 Subject: Re: AjaxDatePicker on ModalDialogBox
 
 This is an IE 'feature'. In IE, each block that has a 'relative' 
 positioning gets it's own z-index stack.
 
 http://ltslashgt.com/2007/05/16/relative-zindex-and-ie/
 
 On 2011-10-12, at 2:51 PM, Chris Pastore wrote:
 
 I have an AjaxDatePicker that I use on a ModalDialogBox. Everything is 
 fine and all the form elements play fine on the ModalDialogBox, except 
 when it comes to Internet Explorer (isn't that always the case?). The 
 issue, is that I can open the date picker one time and it displays 
 fine, but if I close the modal dialog, and re-open it and try to open 
 the date picker a second time, the styling goes away. The calendar is 
 placed where it should be, but no white background, borders, or 
 highlighting. First thought was z-index, but since the date picker has 
 a higher z-index than the modal dialog box and the numbers actually 
 show up, I'm thinking that is not the problem.
 
 Has anyone seen this before?
 
 I included two screenshots... Not sure if that will work or not.
 
 image001.png
 
 
 image006.png
 Thanks,
 
 Chris Pastore
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/dleber_wodev%40codeferous.com
 
 This email sent to dleber_wo...@codeferous.com
 
 
 --
 David LeBer
 Codeferous Software
 'co-def-er-ous' adj. Literally 'code-bearing'
 site:http://codeferous.com
 blog:http://davidleber.net
 profile: http://www.linkedin.com/in/davidleber
 twitter: http://twitter.com/rebeld
 --
 Toronto Area Cocoa / WebObjects developers group:
 http://tacow.org
 
 
 
 
 
 
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/alexis.tual%40gmail.com
 
 This email sent to alexis.t...@gmail.com
 
 
 
 
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/pyu%40mac.com
 
 This email sent to p...@mac.com
 
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/dleber_wodev%40codeferous.com
 
 This email sent to dleber_wo...@codeferous.com


--
David LeBer
Codeferous Software

Re: AjaxDatePicker on ModalDialogBox

2011-10-13 Thread Alexis Tual
Hi,

Le 13 oct. 2011 à 17:08, Chris Pastore a écrit :

 Alexis,
 
 That does seem to do the trick! 
 
 Are there any plans for this to get moved into the project? Is there a reason 
 why this code should NOT be used?
I should have filled a github issue (or Jira ?)... and done a pull request for 
reviewing. I will do it and remove the condition on 
er.extensions.loadOnDemandDuringReplace from my code as it seems useless.
I've done the fix 1 month ago and didn't face any issue since... I'm still 
puzzled that there's only 3 people on the list having this specific issue, 
apparently.

 
 Thanks for any help/information.
 
 Thanks,
 Chris Pastore
you're welcome,

Alex


 
 On Oct 12, 2011, at 3:41 PM, Alexis Tual wrote:
 
 Hello, 
 that sounds familiar, you might want to check this :
 http://lists.apple.com/archives/webobjects-dev/2011/Sep/msg00288.html
 
 and the fix :
 https://github.com/alextu/wonder/commit/25f57ecf4241503d991fa52dc2efbd19c45843ff
 
 Cheers,
 
 Alexis
 
 
 Le 12 oct. 2011 à 21:22, Chris Pastore a écrit :
 
 David,
 
 If I'm not mistaken though, the calendar table is positioned absolutely and 
 lined up with the form field. It also has an explicitly set z-index of 
 10001.
 
 Thanks,
 
 Chris Pastore
 
 
 
 -Original Message-
 From: David LeBer [mailto:dleber_wo...@codeferous.com] 
 Sent: Wednesday, October 12, 2011 3:13 PM
 To: Chris Pastore
 Cc: webobjects-dev@lists.apple.com
 Subject: Re: AjaxDatePicker on ModalDialogBox
 
 This is an IE 'feature'. In IE, each block that has a 'relative' 
 positioning gets it's own z-index stack.
 
 http://ltslashgt.com/2007/05/16/relative-zindex-and-ie/
 
 On 2011-10-12, at 2:51 PM, Chris Pastore wrote:
 
 I have an AjaxDatePicker that I use on a ModalDialogBox. Everything is 
 fine and all the form elements play fine on the ModalDialogBox, except 
 when it comes to Internet Explorer (isn't that always the case?). The 
 issue, is that I can open the date picker one time and it displays fine, 
 but if I close the modal dialog, and re-open it and try to open the date 
 picker a second time, the styling goes away. The calendar is placed where 
 it should be, but no white background, borders, or highlighting. First 
 thought was z-index, but since the date picker has a higher z-index than 
 the modal dialog box and the numbers actually show up, I'm thinking that 
 is not the problem.
 
 Has anyone seen this before?
 
 I included two screenshots... Not sure if that will work or not.
 
 image001.png
 
 
 image006.png
 Thanks,
 
 Chris Pastore
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/dleber_wodev%40codeferous.com
 
 This email sent to dleber_wo...@codeferous.com
 
 
 --
 David LeBer
 Codeferous Software
 'co-def-er-ous' adj. Literally 'code-bearing'
 site:   http://codeferous.com
 blog:   http://davidleber.net
 profile:http://www.linkedin.com/in/davidleber
 twitter:http://twitter.com/rebeld
 --
 Toronto Area Cocoa / WebObjects developers group:
 http://tacow.org
 
 
 
 
 
 
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/alexis.tual%40gmail.com
 
 This email sent to alexis.t...@gmail.com
 
 
 
 

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: AjaxDatePicker on ModalDialogBox

2011-10-13 Thread Paul Yu
I just ignore my IE customers and tell them to switch.

;)

Paul
On Oct 13, 2011, at 11:29 AM, Alexis Tual wrote:

 Hi,
 
 Le 13 oct. 2011 à 17:08, Chris Pastore a écrit :
 
 Alexis,
 
 That does seem to do the trick! 
 
 Are there any plans for this to get moved into the project? Is there a 
 reason why this code should NOT be used?
 I should have filled a github issue (or Jira ?)... and done a pull request 
 for reviewing. I will do it and remove the condition on 
 er.extensions.loadOnDemandDuringReplace from my code as it seems useless.
 I've done the fix 1 month ago and didn't face any issue since... I'm still 
 puzzled that there's only 3 people on the list having this specific issue, 
 apparently.
 
 
 Thanks for any help/information.
 
 Thanks,
 Chris Pastore
 you're welcome,
 
 Alex
 
 
 
 On Oct 12, 2011, at 3:41 PM, Alexis Tual wrote:
 
 Hello, 
 that sounds familiar, you might want to check this :
 http://lists.apple.com/archives/webobjects-dev/2011/Sep/msg00288.html
 
 and the fix :
 https://github.com/alextu/wonder/commit/25f57ecf4241503d991fa52dc2efbd19c45843ff
 
 Cheers,
 
 Alexis
 
 
 Le 12 oct. 2011 à 21:22, Chris Pastore a écrit :
 
 David,
 
 If I'm not mistaken though, the calendar table is positioned absolutely 
 and lined up with the form field. It also has an explicitly set z-index of 
 10001.
 
 Thanks,
 
 Chris Pastore
 
 
 
 -Original Message-
 From: David LeBer [mailto:dleber_wo...@codeferous.com] 
 Sent: Wednesday, October 12, 2011 3:13 PM
 To: Chris Pastore
 Cc: webobjects-dev@lists.apple.com
 Subject: Re: AjaxDatePicker on ModalDialogBox
 
 This is an IE 'feature'. In IE, each block that has a 'relative' 
 positioning gets it's own z-index stack.
 
 http://ltslashgt.com/2007/05/16/relative-zindex-and-ie/
 
 On 2011-10-12, at 2:51 PM, Chris Pastore wrote:
 
 I have an AjaxDatePicker that I use on a ModalDialogBox. Everything is 
 fine and all the form elements play fine on the ModalDialogBox, except 
 when it comes to Internet Explorer (isn't that always the case?). The 
 issue, is that I can open the date picker one time and it displays fine, 
 but if I close the modal dialog, and re-open it and try to open the date 
 picker a second time, the styling goes away. The calendar is placed where 
 it should be, but no white background, borders, or highlighting. First 
 thought was z-index, but since the date picker has a higher z-index than 
 the modal dialog box and the numbers actually show up, I'm thinking that 
 is not the problem.
 
 Has anyone seen this before?
 
 I included two screenshots... Not sure if that will work or not.
 
 image001.png
 
 
 image006.png
 Thanks,
 
 Chris Pastore
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/dleber_wodev%40codeferous.com
 
 This email sent to dleber_wo...@codeferous.com
 
 
 --
 David LeBer
 Codeferous Software
 'co-def-er-ous' adj. Literally 'code-bearing'
 site:  http://codeferous.com
 blog:  http://davidleber.net
 profile:   http://www.linkedin.com/in/davidleber
 twitter:   http://twitter.com/rebeld
 --
 Toronto Area Cocoa / WebObjects developers group:
 http://tacow.org
 
 
 
 
 
 
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/alexis.tual%40gmail.com
 
 This email sent to alexis.t...@gmail.com
 
 
 
 
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/pyu%40mac.com
 
 This email sent to p...@mac.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Sequence component?

2011-10-13 Thread Pascal Robert
I'm looking for a component with a text field that have numeric values and have 
two arrows to changer the number from the text field. I'm pretty sure that this 
component exists, but I looked at the components in er.extensions.components et 
the coolcomponents, and I didn't find anything like this. Am I dreaming (maybe 
I saw this on a non-WO page) or does that component exists somewhere? 
___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Webobjects-dev Digest, Vol 8, Issue 760

2011-10-13 Thread Theodore Petrosky
Wow:

http://issues.objectstyle.org/jira/browse/WONDER-568

 
 
 --
 
 Message: 1
 Date: Thu, 13 Oct 2011 11:31:45 -0400
 From: Paul Yu p...@mac.com
 Subject: Re: AjaxDatePicker on ModalDialogBox
 To: Alexis Tual alexis.t...@gmail.com
 Cc: Chris Pastore cpast...@escholar.com,
     webobjects-dev@lists.apple.com
 webobjects-dev@lists.apple.com
 Message-ID: 06f0fa13-0bca-4a57-8c0e-a35457f23...@mac.com
 Content-Type: text/plain; charset=iso-8859-1
 
 I just ignore my IE customers and tell them to switch.
 
 ;)
 
 Paul
 On Oct 13, 2011, at 11:29 AM, Alexis Tual wrote:
 
  Hi,
  
  Le 13 oct. 2011 à 17:08, Chris Pastore a écrit :
  
  Alexis,
  
  That does seem to do the trick! 
  
  Are there any plans for this to get moved into the
 project? Is there a reason why this code should NOT be
 used?
  I should have filled a github issue (or Jira ?)... and
 done a pull request for reviewing. I will do it and remove
 the condition on er.extensions.loadOnDemandDuringReplace
 from my code as it seems useless.
  I've done the fix 1 month ago and didn't face any
 issue since... I'm still puzzled that there's only 3 people
 on the list having this specific issue, apparently.
  
  
  Thanks for any help/information.
  
  Thanks,
  Chris Pastore
  you're welcome,
  
  Alex
  
  
  
  On Oct 12, 2011, at 3:41 PM, Alexis Tual wrote:
  
  Hello, 
  that sounds familiar, you might want to check
 this :
  http://lists.apple.com/archives/webobjects-dev/2011/Sep/msg00288.html
  
  and the fix :
  https://github.com/alextu/wonder/commit/25f57ecf4241503d991fa52dc2efbd19c45843ff
  
  Cheers,
  
  Alexis
  
  
  Le 12 oct. 2011 à 21:22, Chris Pastore a
 écrit :
  
  David,
  
  If I'm not mistaken though, the calendar
 table is positioned absolutely and lined up with the form
 field. It also has an explicitly set z-index of 10001.
  
  Thanks,
  
  Chris Pastore
  
  
  
  -Original Message-
  From: David LeBer [mailto:dleber_wo...@codeferous.com]
 
  Sent: Wednesday, October 12, 2011 3:13 PM
  To: Chris Pastore
  Cc: webobjects-dev@lists.apple.com
  Subject: Re: AjaxDatePicker on
 ModalDialogBox
  
  This is an IE 'feature'. In IE, each block
 that has a 'relative' positioning gets it's own z-index
 stack.
  
  http://ltslashgt.com/2007/05/16/relative-zindex-and-ie/
  
  On 2011-10-12, at 2:51 PM, Chris Pastore
 wrote:
  
  I have an AjaxDatePicker that I use on
 a ModalDialogBox. Everything is fine and all the form
 elements play fine on the ModalDialogBox, except when it
 comes to Internet Explorer (isn't that always the case?).
 The issue, is that I can open the date picker one time and
 it displays fine, but if I close the modal dialog, and
 re-open it and try to open the date picker a second time,
 the styling goes away. The calendar is placed where it
 should be, but no white background, borders, or
 highlighting. First thought was z-index, but since the date
 picker has a higher z-index than the modal dialog box and
 the numbers actually show up, I'm thinking that is not the
 problem.
  
  Has anyone seen this before?
  
  I included two screenshots... Not sure
 if that will work or not.
  
  image001.png
  
  
  image006.png
  Thanks,
  
  Chris Pastore
  
 
 ___

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Sequence component?

2011-10-13 Thread Ramsey Gurley
Maybe you are remembering my presentation from WOWODC this year? I just used 
HTML5 input type='number'/

http://www.w3schools.com/html5/tryit.asp?filename=tryhtml5_form_number

Ramsey

On Oct 13, 2011, at 10:59 AM, Pascal Robert wrote:

 I'm looking for a component with a text field that have numeric values and 
 have two arrows to changer the number from the text field. I'm pretty sure 
 that this component exists, but I looked at the components in 
 er.extensions.components et the coolcomponents, and I didn't find anything 
 like this. Am I dreaming (maybe I saw this on a non-WO page) or does that 
 component exists somewhere? ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/rgurley%40smarthealth.com
 
 This email sent to rgur...@smarthealth.com

 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


HTML rendering of

2011-10-13 Thread Klaus Berkling
Hi All.

I have this in my component html:

webobject name = RefreshMETATag/

And this in the wod (ognl at work):

RefreshMETATag : WOGenericElement {
elementName = META;
http-equiv = Refresh;
content = ~\3;\ + redirectURL.toString;
}

It renders this HTML:

META http-equiv=Refresh content=3;/education/ /

It seems Internet Explorer has an issue with how the tag is terminated. It also 
does not pass w3c validation. I don't think I have control on how this renders. 
Tried HTML 4.01 strict and transitional and the tag did not change.

Is there a Wonder way to do this redirect?  I don't care if its in the HTTP 
header or not but I do need to return a page that has real content, not a 
WORedirect.  


kib

We keep moving forward, opening new doors, and doing new things, because we're 
curious and curiosity keeps leading us down new paths.
Walt Disney

Klaus Berkling
Web Application Dev.  Systems Analyst
DynEd International, Inc.
www.dyned.com | blog





smime.p7s
Description: S/MIME cryptographic signature
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: HTML rendering of

2011-10-13 Thread John Huss
Did you try WOMetaRefresh?

On Thu, Oct 13, 2011 at 2:18 PM, Klaus Berkling kberkl...@dyned.com wrote:

 Hi All.

 I have this in my component html:

 webobject name = RefreshMETATag/

 And this in the wod (ognl at work):

 RefreshMETATag : WOGenericElement {
 elementName = META;
 http-equiv = Refresh;
 content = ~\3;\ + redirectURL.toString;
 }

 It renders this HTML:

 META http-equiv=Refresh content=3;/education/ */*

 It seems Internet Explorer has an issue with how the tag is terminated. It
 also does not pass w3c validation. I don't think I have control on how this
 renders. Tried HTML 4.01 strict and transitional and the tag did not change.

 Is there a Wonder way to do this redirect?  I don't care if its in the HTTP
 header or not but I do need to return a page that has real content, not a
 WORedirect.


 kib

 *We keep moving forward, opening new doors, and doing new things, because
 we're curious and curiosity keeps leading us down new paths.*
 Walt Disney

 Klaus Berkling
 Web Application Dev.  Systems Analyst
 DynEd International, Inc.
 www.dyned.com | blog https://dyned.dyned.com/users/kberkling/




  ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/johnthuss%40gmail.com

 This email sent to johnth...@gmail.com


 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: HTML rendering of

2011-10-13 Thread Chuck Hill

On 2011-10-13, at 12:18 PM, Klaus Berkling wrote:

 Hi All.
 
 I have this in my component html:
 
   webobject name = RefreshMETATag/
 
 And this in the wod (ognl at work):
 
   RefreshMETATag : WOGenericElement {
   elementName = META;
   http-equiv = Refresh;
   content = ~\3;\ + redirectURL.toString;

That OGNL looks odd.  Shouldn't that be
content = ~\3; + redirectURL.toString + \;


Chuck


 }
 
 It renders this HTML:
 
   META http-equiv=Refresh content=3;/education/ /
 
 It seems Internet Explorer has an issue with how the tag is terminated. It 
 also does not pass w3c validation. I don't think I have control on how this 
 renders. Tried HTML 4.01 strict and transitional and the tag did not change.
 
 Is there a Wonder way to do this redirect?  I don't care if its in the HTTP 
 header or not but I do need to return a page that has real content, not a 
 WORedirect.  
 
 
 kib
 
 We keep moving forward, opening new doors, and doing new things, because 
 we're curious and curiosity keeps leading us down new paths.
 Walt Disney
 
 Klaus Berkling
 Web Application Dev.  Systems Analyst
 DynEd International, Inc.
 www.dyned.com | blog
 
 
 
 ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/chill%40global-village.net
 
 This email sent to ch...@global-village.net

-- 
Chuck Hill Senior Consultant / VP Development

Practical WebObjects - for developers who want to increase their overall 
knowledge of WebObjects or who are trying to solve specific problems.
http://www.global-village.net/products/practical_webobjects







 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: HTML rendering of

2011-10-13 Thread Klaus Berkling

On Oct 13, 2011, at 1:10 PM, Chuck Hill wrote:

  RefreshMETATag : WOGenericElement {
  elementName = META;
  http-equiv = Refresh;
  content = ~\3;\ + redirectURL.toString;
 
 That OGNL looks odd.  Shouldn't that be
 content = ~\3; + redirectURL.toString + \;

I might have had this, it took a bit of trial and error to get what I have to 
work. I'm sure there is more then one way to skin this cat. :-)


kib

The trouble with normal is it always gets worse.
Bruce Cockburn

Klaus Berkling
Web Application Dev.  Systems Analyst
DynEd International, Inc.
www.dyned.com | blog





smime.p7s
Description: S/MIME cryptographic signature
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: HTML rendering of

2011-10-13 Thread Klaus Berkling

On Oct 13, 2011, at 12:18 PM, Klaus Berkling wrote:

 I have this in my component html:
 
   webobject name = RefreshMETATag/
 
 And this in the wod (ognl at work):
 
   RefreshMETATag : WOGenericElement {
   elementName = META;
   http-equiv = Refresh;
   content = ~\3;\ + redirectURL.toString;
 }
 
 It renders this HTML:
 
   META http-equiv=Refresh content=3;/education/ /

User error.

This is the tag as it should be, the missing part was url=

META http-equiv=Refresh content=3;url=/education/ /

So the wod is:

RefreshMETATag : WOGenericElement {
elementName = META;
http-equiv = Refresh;
content = ~\3;url=\ + redirectURL.toString;
}

I can't find documentation on bindings for WOMetaRefresh.

kib

Live as if you were to die tomorrow. Learn as if you were to live forever.
Mahatma Gandhi

Klaus Berkling
Web Application Dev.  Systems Analyst
DynEd International, Inc.
www.dyned.com | blog





smime.p7s
Description: S/MIME cryptographic signature
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: HTML rendering of

2011-10-13 Thread John Huss
I found it here:

http://www.filibeto.org/unix/macos/lib/dev/documentation/WebObjects/Reference/WOJExtensions/WOExtensions.pdf

On Thu, Oct 13, 2011 at 4:20 PM, Klaus Berkling kberkl...@dyned.com wrote:


 I can't find documentation on bindings for WOMetaRefresh.

 kib

 *Live as if you were to die tomorrow. Learn as if you were to live
 forever.*
 Mahatma Gandhi

 Klaus Berkling
 Web Application Dev.  Systems Analyst
 DynEd International, Inc.
 www.dyned.com | blog https://dyned.dyned.com/users/kberkling/




  ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/johnthuss%40gmail.com

 This email sent to johnth...@gmail.com


 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: HTML rendering of

2011-10-13 Thread Klaus Berkling
Very nice. Thank you. 

Sent from my iPhone.

On Oct 13, 2011, at 2:40 PM, John Huss johnth...@gmail.com wrote:

 I found it here:
 
 http://www.filibeto.org/unix/macos/lib/dev/documentation/WebObjects/Reference/WOJExtensions/WOExtensions.pdf
 
 On Thu, Oct 13, 2011 at 4:20 PM, Klaus Berkling kberkl...@dyned.com wrote:
 
 I can't find documentation on bindings for WOMetaRefresh.
 
 kib
 
 Live as if you were to die tomorrow. Learn as if you were to live forever.
 Mahatma Gandhi
 
 Klaus Berkling
 Web Application Dev.  Systems Analyst
 DynEd International, Inc.
 www.dyned.com | blog
 
 
 
 
  ___
 Do not post admin requests to the list. They will be ignored.
 Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
 Help/Unsubscribe/Update your Subscription:
 http://lists.apple.com/mailman/options/webobjects-dev/johnthuss%40gmail.com
 
 This email sent to johnth...@gmail.com
 
 
 ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com