Re: New ANNOUNCEMENT mailing list

2005-09-19 Thread ssobot
im glad to read that. fow a few months im leaving JSF pojects (became SWT dev.;), but i'd like to be informed about the great stuff u guys are doing... btw: i'm trying to unsubscribe from this list by sending mail at: [EMAIL PROTECTED], but i keep receiving error messages? whats wrong? do u guy

Re: How to call a method in the backing bean from a JSF page

2005-08-24 Thread ssobot
but remember that getter may be called few times! i assume that in order to see your page user must click sth (ex. somme kind of menu) and i assume that u have action binded to that click that returs string maped to desired page. so just add call your method in that action. Słąwek Sobótka > Tha

Re: confusion on best practices in regard to a VO in BackingBean

2005-08-24 Thread ssobot
thats right > I believe Slawek was referring to "Rick Hightower". > > On 8/24/05, Rick Reumann <[EMAIL PROTECTED]> wrote: > > On 8/24/05, Slawek <[EMAIL PROTECTED]> wrote: > > > > > > but Rick says in his article that: > > > view is only jsp page, controler is backing bean and model has busines

Re: Redirect on Session Timeout

2005-07-07 Thread ssobot
try my way: public void doFilter(ServletRequest request, ServletResponse response,FilterChain chain) throws IOException, ServletException { HttpServletRequest hsr = (HttpServletRequest)request; HttpServletResponse hsr2 = (HttpServletResponse)response; HttpSession hs = hsr.g

Re: tag div & centering a table row

2005-07-07 Thread ssobot
try instead of Slawek > Hi, > I have some diffucults in centering table rows using tag. > So far I haven't found a specifing parameter to center my single row: > I used : > > //beginning of my table > > > // this doesn't work !!! >

=?iso-8859-2?Q?transparent_image_on_button?=

2005-06-07 Thread ssobot
hi i need a commandbutton with transparent image in it. in opera it looks fine but ff and exploder i see white background:/ when i use commandlink instead of button than everything is ok, but i MUST use button cause it has to ask user if he is sure (JS confirm). i wonder how did You solved it?

download file+https+tomcat+i exploder

2005-06-02 Thread ssobot
hi maybe someone faced folowing internet exploder bug: we have dowload page with links to download somme files. app runs on https. in opera, firefox, mozilla user can download file without any problem but #$%^ exploder says that it cant find file:/ we have googledout that problem may occurs bec

problem while migratig myfaces 1.0.8 to 1.0.9

2005-05-27 Thread ssobot
hi im using eclipse+sysdeo plugin+tomcat5 i needed tree2 so i have changed my 1.0.8 web-inf/lib/myfaces.jar to 1.0.9 since then server throws error when booting or trying to run my app: //* 09:49:23,577 INFO FacesConfigurator:226 - Reading standard confi

[OFFTOPIC] logged users count

2005-05-23 Thread ssobot
hi is there anty posibility to check how many users are logged in jsf application (i mean just how many sessions are created)? if yes - is there any posibilty to get their mannaged beans? slawek

[OFFTOPIC] app base dir

2005-05-19 Thread ssobot
hi how to get path of application base dir on server machine? slawek

nbsp in value attribute

2005-04-11 Thread ssobot
hi i want to render a href containing two words and i want to make sure that words will be in one line (not broken into two lines). i tried to do it like this: where MENU_TEMP_ORDER=word1 word2 or like this: where MENU_TEMP_ORDER1=word1 and MENU_TEMP_ORDER2=word2 in both cases i see rendere

=?iso-8859-2?Q?_and_JS_onclick_on_row?=

2005-03-14 Thread ssobot
suppose we have a dataTable and one of collumns cointaining inputText in each row. when user clik on somme input to type something i would like to highlight (change style) row cointaining that input... how to define onmouseover, onclick and ohter JS events on each row or cell of dataTable? Sla

Re: myfaces + sitemesh, any known problems?

2005-02-22 Thread ssobot
what excatcly are u trying to do? i guess that u have written decorator page with JSF tags... am i right? im not sure but i think its impossible to do that:/ your decorator page must be secified in conf file (for example: mainDecorator.jsp), BUT jsf pages must be requested by somme virtual pat

- 1.0.7 vs 1.0.8?

2005-02-16 Thread ssobot
Hi! i have noticed a strange behaviour in selectOneListBox. i don't know if i have to debug my project because of my stupdness;) or its corect behaviour.. problem: for somme time i was using myfaces 1.0.7 and combobox implemented for ex. like this: //array of SelectItem wh