RE: js open a page in new window.

2010-12-22 Thread Stony Zhang
21, 2010 at 9:34 PM, Stony Zhang zhangyon...@cyberobject.com.cn wrote: I encounter a problem about how to open a page in a new window by js. In the following js, the function play() will be called when user click a window, And then try to open VidioPlayer page in a new window, the id

js open a page in new window.

2010-12-21 Thread Stony Zhang
I encounter a problem about how to open a page in a new window by js. In the following js, the function play() will be called when user click a window, And then try to open VidioPlayer page in a new window, the id will be captured in VideoPlayer.java ( onActivate(int id)). Now my question

RE: Alternating table rows

2010-09-14 Thread Stony Zhang
Change code to, public boolean isEvenColumn () { return index % 2 == 0; } t:loop index=index source=list value=element t:if test=evenColumn tr class=even t:parameter name=else tr class=odd /t:parameter /t:if /tr /t:loop Thanks Stony

Can't upload file with Easy FCKeditor

2010-09-05 Thread Stony Zhang
I'm using T5.1.0.5 and Easy_FCKeditor 1.0.4 I just try the Easy_FCKeditor to upload image, but when I Click Image Button and then open Resouces Browser, I saw the url is as blow

RE: How to unsubscribe maillist?

2007-09-03 Thread Stony Zhang
Hi Lili, I have the same question as you. Afeter I sent a email to [EMAIL PROTECTED], receive the error message,too. Stony -Original Message- From: lili [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 04, 2007 10:19 AM To: Tapestry users Subject: RE: How to unsubscribe

How to set pages to the different folder

2007-03-27 Thread Stony Zhang
Hi everyone, Now I want to organize my folder structure, and I don't wish all page in the same folder. Then I new a folder, and add some page files(html files too) to the new folder, But I can't access the pages in the new folder! Anyone can tell me how to solve it? Thanks Stony

RE: How to link to another website

2007-02-07 Thread Stony Zhang
to another website You mean to another non-tapestry website? You just do a href=WEBSITE_URL /a If you don't want to use a static URL in your template then you could also use the @GenericLink component. On 2/7/07, Stony Zhang [EMAIL PROTECTED] wrote: Hello, I want to a link to another website

RE: How to link to another website

2007-02-07 Thread Stony Zhang
, keep in mind that you can add dynamic content to any tag using the @Any component. For example: a jwcid=@Any href=ognl:weburlCLiCK ME/a On 2/7/07, Stony Zhang [EMAIL PROTECTED] wrote: Thanks Daniel, But WEBSITE_URL need be got in server side. and I can't use ognl:weburl to do that. Best