[jboss-user] [JBoss Seam] - Date formatting in EL expression

2007-12-06 Thread chawax
Hi, In a properties file I have a resource containing an EL expression with dates. But I can't find how to format this date. For example, the following resource : Du #{da.lignes[0].dateDebut} au #{da.lignes[0].dateFin} The EL is evaluated this way : Du Mon Dec 03 00:00:00 CET 2007 au Mon Dec 1

[jboss-user] [JBoss Seam] - Date Picker Start Year

2007-11-29 Thread avinashreddy
In the seam booking example, what do i need to do to set the starting year to some year I like (say 2000) rather than the default year specifeid for the date picker component? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4109003#4109003 Reply to the post :

[jboss-user] [JBoss Seam] - date type issue

2007-07-20 Thread joab
We are using JBoss Seam 2.0 for our application development and the code is generated using seam genearte-entities. I have a table with a composite primary key with one key as a date. When I generate the code, it generates the date as java.util.Date. But when I deploy it, it gives an error that

[jboss-user] [JBoss Seam] - Date Convert Error

2007-06-27 Thread kaviarasu
Hi i like to insert date inside oracle 10 database in the date field which i assigned field as date format. Tdate(date) i try to insert in 23-jun-2007 format but it giving exception value must be a datetime. can any View the original post : http://www.jboss.com/index.html?module

[jboss-user] [JBoss Seam] - Date fields

2007-04-18 Thread ejbengine
I have a field that maps to a Date in my Entity class.The html looks as shown below : Date (-MM-DD) When I enter a date string such as 2007-01-01 , I'm getting redirected to the same page and my session bean never gets called.However if I skip the date field , all works fine.Do i need to s

[jboss-user] [JBoss Seam] - Date

2007-02-20 Thread KoniKoni
I want to displa follow output on the page:Friday, 19.01.2007 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4019544#4019544 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4019544 _

[jboss-user] [JBoss Seam] - Date

2007-02-20 Thread KoniKoni
//get aktuell locale | Locale locale = localeSelector.getLocale(); | | //make calendar | Calendar cal = new GregorianCalendar( TimeZone.getTimeZone("ECT") ); | | //format date to locale | DateFormat

[jboss-user] [JBoss Seam] - Date format with parameter

2007-02-02 Thread rengar
If i put , the date is showed well. | | | | But this parameter is at this format in url : "diaLlegada=Feb%202,%202007" I tried : | | java.util.Date

[jboss-user] [JBoss Seam] - Date parameter at s:button

2007-01-08 Thread rengar
I have : In jsf "lstEstablecimientos": | | | | | | In bean stateful "lstEstablecimientosBean": | private Date diaLlegada; | ... | public Date getDiaLlegada() { | return diaLlegada; | } | | public void setDiaLlegada(Date diaLlega