RE: Strategy for javascript validation with i18n

2005-11-25 Thread abdurrahman sahin
hi; in our project. I defined a User class that holds cultural information, date format, number patterns, etc, application starts up with a given default user. When a user logons to the system, the user interface guis is repainted regarding that logged user's cultural info. -Original Messa

RE: Strategy for javascript validation with i18n

2005-11-25 Thread abdurrahman sahin
hi; we developed our web gui interface on JSF all input components reads logged user info, render themselves with that user's culture info and attaching required javascript code. for client-side validations u should develop ur own js components. u should render user culture info for each page requ

RE: [OT] Re: Is JSF ready?

2005-12-13 Thread abdurrahman sahin
hi all; I'm currentyl using JSF for a project (I decided to use it because it has component model like asp.net does), I used ASP.NET before for some projects. In my opinion JSF so far away from what asp.net offers. I can't see any designer API provided (except that Sun Studio Creator). also its c

RE: Resource bundle from Database

2006-02-20 Thread abdurrahman sahin
hi; i strongly suggest you application level caching. at startup; query all messages and other things that is immutable among user sessions, then put all that things in a TreeMap/HashTable, per user session you can query your application level TreeMap/HashTable class. -Original Message- Fr

RE: [shale] still radio group in datatable

2006-02-24 Thread abdurrahman sahin
hi all; i need to set jsf componentss initial values while bean being loaded. according to the shale viewhelper doc. http://struts.apache.org/struts-shale/features-view-controller.html i thought i may do that in prerender() method with help of isPostBack property. whenever i try to set a components

RE: log 4 j error in struts 1.2.8

2006-04-19 Thread abdurrahman sahin
hi; you may try initializing logger in a servlet like below; public void init(ServletConfig config) throws ServletException { super.init(config); try { doLoggingSettings(config); s_logger.info("Initializing Gui Starter

RE: log 4 j error in struts 1.2.8

2006-04-19 Thread abdurrahman sahin
. -Original Message- From: Raghuveer [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 19, 2006 2:09 PM To: [EMAIL PROTECTED]; 'Struts Users Mailing List' Subject: RE: log 4 j error in struts 1.2.8 do i need to overide actionservlet for this ? -Original Message----- From: abdurra

RE: Session without cookies

2006-04-24 Thread abdurrahman sahin
are you sure that u did not start a new browser process each time.? because sessions are browser process based. starting a new process and opening a new window within a browser window are different things. http://asahin.net -Original Message- From: Chan Michael [mailto:[EMAIL PROTECTED]

RE: log4j - urgent

2006-06-13 Thread abdurrahman sahin
hi; i think u don't need such a specific "log4jservlet" servlet. you can use any servlet to initialize log4j here is a filter to init logger, you will need a logger property file in that case. public void doFilter( ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filter