Re: [Wicket-user] Using AjaxEventBehavior On A Page Component

2006-10-18 Thread Frank Bille
getBodyContainer().getBodyContainer() returns the WebMarkupContainer
which corresponds with the  tag. (Though I don't know how good
the support is for having javascript events on the  tag in the
different browsers)

Frank

On 10/19/06, Frank Bille <[EMAIL PROTECTED]> wrote:
> You need to attach the event to a tag in the markup. Since the Page
> component is not directly attached to any tag then you can't use that.
> Instead use:
>
>
> public class Index extends WebPage
> {
> public Index()
> {
> super();
>
> final Label testLabel = new Label(this, "message", "Hello
> World");
> testLabel.setOutputMarkupId(true);
>
> getBodyContainer().getBodyContainer().add(new
> AjaxEventBehavior(ClientEvent.KEYPRESS)
> {
> protected void onEvent(final AjaxRequestTarget target)
> {
>  target.addComponent(testLabel);
> target.appendJavascript("new Effect.Highlight($('" +
> testLabel.getMarkupId() + "'));");
> }
> });
> }
> }
>
>
> PLEASE note the two levels of getBodyContainer(). Both are needed.
>
> Frank
>
> On 10/19/06, Matthew P. Tilchen <[EMAIL PROTECTED]> wrote:
> > Greetings,
> >
> > I am not certain as to whether this post will end up being a bug
> > report or a feature request but hopefully one of you may have some
> > advice.
> > Ultimately I am trying to invoke ajax calls as a result of capturing
> > "onkeypress" events fired by the document object. I have successfully
> > achieved this on components other than Page components but I can not
> > get it to work on Page objects. Here is the code for the Page
> > subclass that I am speaking of:
> >
> > public class Index extends WebPage
> > {
> >  public Index()
> >  {
> >  super();
> >
> >  final Label testLabel = new Label(this, "message", "Hello
> > World");
> >  testLabel.setOutputMarkupId(true);
> >
> >  add(new AjaxEventBehavior(ClientEvent.KEYPRESS)
> >  {
> >  protected void onEvent(final AjaxRequestTarget target)
> >  {
> >   target.addComponent(testLabel);
> >  target.appendJavascript("new Effect.Highlight($('" +
> > testLabel.getMarkupId() + "'));");
> >  }
> >  });
> >  }
> > }
> >
> > My assumption is that the "onEvent" method will be invoked when the
> > Page (or document in JS) fires a "onkeypress" event. Attempting to
> > trigger the behavior on the loaded page does not invoke "onEvent" and
> > the in page AJAX debugger shows no activity either.
> >
> > Has anyone else attempted this type of thing? If this is currently
> > not supported it seems like this is something that would be
> > consistent with Wicket Ajax implementation's design and I would love
> > to see it added.
> >
> > Thanks.
> >
> > -MT
> >
> > -
> > Using Tomcat but need to do more? Need to support web services, security?
> > Get stuff done quickly with pre-integrated technology to make your job
> > easier
> > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
>

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Using AjaxEventBehavior On A Page Component

2006-10-18 Thread Frank Bille
You need to attach the event to a tag in the markup. Since the Page
component is not directly attached to any tag then you can't use that.
Instead use:


public class Index extends WebPage
{
public Index()
{
super();

final Label testLabel = new Label(this, "message", "Hello
World");
testLabel.setOutputMarkupId(true);

getBodyContainer().getBodyContainer().add(new
AjaxEventBehavior(ClientEvent.KEYPRESS)
{
protected void onEvent(final AjaxRequestTarget target)
{
 target.addComponent(testLabel);
target.appendJavascript("new Effect.Highlight($('" +
testLabel.getMarkupId() + "'));");
}
});
}
}


PLEASE note the two levels of getBodyContainer(). Both are needed.

Frank

On 10/19/06, Matthew P. Tilchen <[EMAIL PROTECTED]> wrote:
> Greetings,
>
> I am not certain as to whether this post will end up being a bug
> report or a feature request but hopefully one of you may have some
> advice.
> Ultimately I am trying to invoke ajax calls as a result of capturing
> "onkeypress" events fired by the document object. I have successfully
> achieved this on components other than Page components but I can not
> get it to work on Page objects. Here is the code for the Page
> subclass that I am speaking of:
>
> public class Index extends WebPage
> {
>  public Index()
>  {
>  super();
>
>  final Label testLabel = new Label(this, "message", "Hello
> World");
>  testLabel.setOutputMarkupId(true);
>
>  add(new AjaxEventBehavior(ClientEvent.KEYPRESS)
>  {
>  protected void onEvent(final AjaxRequestTarget target)
>  {
>   target.addComponent(testLabel);
>target.appendJavascript("new Effect.Highlight($('" +
> testLabel.getMarkupId() + "'));");
>  }
>  });
>  }
> }
>
> My assumption is that the "onEvent" method will be invoked when the
> Page (or document in JS) fires a "onkeypress" event. Attempting to
> trigger the behavior on the loaded page does not invoke "onEvent" and
> the in page AJAX debugger shows no activity either.
>
> Has anyone else attempted this type of thing? If this is currently
> not supported it seems like this is something that would be
> consistent with Wicket Ajax implementation's design and I would love
> to see it added.
>
> Thanks.
>
> -MT
>
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Components Entirely In Java?

2006-10-18 Thread Igor Vaynberg
this is asked often on the list, search the archives.-IgorOn 10/18/06, Dorel Vaida <[EMAIL PROTECTED]
> wrote:I wanted to ask, just for curiosity, in case that somebody wants to
develop components/pages in wicket, BUT place the HTMLs outside thepackage where their corresponding java classes are (avoid the folderhierarchy due to java packages, e.g. have the HTML pages in a web/pagesfolder and have wicket know where to get those pages from) ?
Thanks,DorelIgor Vaynberg wrote:> you can encapsulate a great deal of markup and css into the> components, however unless you go to extremes some basic knowledge of> html is still needed. wicket doesnt use layout managers so you have to
> provide some basic html - at least  tags to position the> components.>> in some cases if the components being added are just stacked you can> use a repeater like RepeatingView to take care of that so end users can go
>> MyPage() {>getNavContainer().add(new MyNewComponnet1());>getNavContainer().add(new MyNewComponent2());>getBodyContainer().add(new MyNewCompoenent3());> }>
> etc>> -Igor>>> On 10/18/06, *Jonathan Sharp * <[EMAIL PROTECTED]> [EMAIL PROTECTED]
>> wrote:>> I'm a UI developer on a team of about 10 and are in the evaulation> process of wicket. Pardon my ignorance if this is obvious or> misses the boat...>> How complex would it be to provide a jar of components to our
> developers that they can use to build their interfaces without> having to touch HTML? The goal would be that they would build the> application without having to write any HTML but simply "append"
> components to each other similar to how you can with the DOM> browser side. Our AppBasePage would then have a > tag which is where it would render these components. Does this
> make sense?>> Example Components:> - Form> - FieldSet> - FieldPair> - SaveButton>>> Developers would then:>> class MyPage extends AppBaseBase {
> public MyPage() {> Form f = new Form("myForm");> f.add(new SaveButton("id", "Label"));> add(f);> }
> }>>> Cheers,> -js>> -> Using Tomcat but need to do more? Need to support web services,
> security?> Get stuff done quickly with pre-integrated technology to make your> job easier> Download IBM WebSphere Application Server v.1.0.1 based on Apache> Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642> <
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642>>> ___> Wicket-user mailing list> 
Wicket-user@lists.sourceforge.net> Wicket-user@lists.sourceforge.net>> 
https://lists.sourceforge.net/lists/listinfo/wicket-user> >>
>> >> -> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo> 
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642>> __ NOD32 1.1758 (20060915) Information __>> This message was checked by NOD32 Antivirus System.
> http://www.nod32.com>>> >> ___
> Wicket-user mailing list> Wicket-user@lists.sourceforge.net> https://lists.sourceforge.net/lists/listinfo/wicket-user
>-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimohttp://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Components Entirely In Java?

2006-10-18 Thread Dorel Vaida
I wanted to ask, just for curiosity, in case that somebody wants to 
develop components/pages in wicket, BUT place the HTMLs outside the 
package where their corresponding java classes are (avoid the folder 
hierarchy due to java packages, e.g. have the HTML pages in a web/pages 
folder and have wicket know where to get those pages from) ?

Thanks,
Dorel

Igor Vaynberg wrote:
> you can encapsulate a great deal of markup and css into the 
> components, however unless you go to extremes some basic knowledge of 
> html is still needed. wicket doesnt use layout managers so you have to 
> provide some basic html - at least  tags to position the 
> components.
>
> in some cases if the components being added are just stacked you can 
> use a repeater like RepeatingView to take care of that so end users can go
>
> MyPage() {
>getNavContainer().add(new MyNewComponnet1());
>getNavContainer().add(new MyNewComponent2());
>getBodyContainer().add(new MyNewCompoenent3());
> }
>
> etc
>
> -Igor
>
>
> On 10/18/06, *Jonathan Sharp * <[EMAIL PROTECTED] 
> > wrote:
>
> I'm a UI developer on a team of about 10 and are in the evaulation
> process of wicket. Pardon my ignorance if this is obvious or
> misses the boat...
>
> How complex would it be to provide a jar of components to our
> developers that they can use to build their interfaces without
> having to touch HTML? The goal would be that they would build the
> application without having to write any HTML but simply "append"
> components to each other similar to how you can with the DOM
> browser side. Our AppBasePage would then have a 
> tag which is where it would render these components. Does this
> make sense?
>
> Example Components:
> - Form
> - FieldSet
> - FieldPair
> - SaveButton
>
>
> Developers would then:
>
> class MyPage extends AppBaseBase {
> public MyPage() {
> Form f = new Form("myForm");
> f.add(new SaveButton("id", "Label"));
> add(f);
> }
> }
>
>
> Cheers,
> -js
>
> -
> Using Tomcat but need to do more? Need to support web services,
> security?
> Get stuff done quickly with pre-integrated technology to make your
> job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache
> Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> 
>
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> 
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
>
>
>
> 
>
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>
> __ NOD32 1.1758 (20060915) Information __
>
> This message was checked by NOD32 Antivirus System.
> http://www.nod32.com
>
>   
> 
>
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>   


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] 2007迪拜美容展(beauty world)

2006-10-18 Thread zhiyuesu

第12届中东(迪拜)国际化妆品、美容及护肤用品博览会
The 12th international Trade Fair for perfumes,Cosmetics & Body Care
  

展会时间:2007年5月20日至22日
展会地点:阿联酋迪拜世界贸易中心
海湾国际美容用品展2007
3平方米---您事业成功的平台
800个国际标准展位   ●推荐新产品,开拓新市场
专业化、个性化的新颖格局 ●巩固已有市场,扩大产品市场份额
世界名品相互辉映  ●与采购商、进出口商及厂商直接会面洽谈
1多名专业人士莅临盛会  ●寻找最新的原料及供应来源
●促成交易,直接创汇
展品范围

化妆品(专业/大众)、护肤品、美容产品包装、美容器械、SPA产品、个人美甲用品/足部护理、香水、美发用品、假发、专业美容沙龙用品、专业美容沙龙家具、洗浴/剃须/盥洗室用品、饮食及营养、时尚配件、专业出版物

上届回顾
2006年5月,第十一届中东国际美容美发展览会在阿联酋迪拜世界贸易中心顺利闭幕。整体展商数量与2005年相比增长了近33%,展商来自41个不同的国家和地区,包括中国、德国、英国、美国、波兰、黎巴嫩、埃及、比利时、荷兰、约旦、韩国、印度、澳大利亚、瑞典、意大利、台湾、沙特阿拉伯、加拿大、土耳其、西班牙、伊朗、阿根廷、阿拉伯联合酋长国等。
观众方面,有来自30多个国家和地区的1多名专业观众到会洽谈。与2005年的展会相比,专业观众的数量增长了近10%。观众中有25%来自迪拜;11%来自沙迦;7%来自阿布扎比;另有超过24%的观众来自其余的阿拉伯海湾国家,如沙特阿拉伯,科威特,巴林,卡塔尔和阿曼苏丹;除此之外,还有超过10%的观众来自中东的其他国家和北非洲,伊朗的参观者达到4%;印度半岛的观众人数也超过了3%。
专业观众的总体水准另人兴奋。超过53%的观众是企业高层管理者或私营企业主,30%是美容店、SPA店、宾馆、药店或者零售店的管理者,超过13%的参观者是美容美发界从业人员。

我司同时组织的美容展
2007乌克兰国际美容展   2007.2.8-2.10  乌克兰 基辅
西班牙巴塞罗那国际美容美发展   2007.3.10-3.12  西班牙 巴塞罗那
HAIR  BRASIL   2007.3.31-4.2   巴西 圣保罗 
波兰华沙国际美容展 2007.5.24-5.26  波兰 华沙
俄罗斯莫斯科国际美容博览会 2007.10.26-29   俄罗斯 莫斯科
………
迪拜简介
迪拜素有"中东的香港"之美誉,是阿联酋的金融经济中心,以其自由宽松的经济政策、得天独厚的地理位置、完善齐备的基础设施,迅速成为中东地区的交通枢纽和最大的货物集散地。通过迪拜,货物可转销到海湾地区、俄罗斯、东欧、非洲、地中海,甚至世界各地。目前我国产品以种类繁多、档次适中、品种齐全、价格具竞争力颇受青睐,广受中东及世界商家的推崇。
上海国际广告展览有限公司
地  址:上海恒丰路218号现代交通商务大厦21层   联系人: 支月素小姐
电  话:021-51276768-8035  ( 13774389983 )网  址:www.me360.net
传  真:021-51276766[EMAIL PROTECTED]


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] cookies

2006-10-18 Thread Scott Swank
Thanks, I searched through the Wicket source until I found WebRequest
& WebResponse.  Now I'm set...

public void onClick() {
  getWebResponse().addCookie(new Cookie("foo", "bar"));
  setResponsePage(new CookiePage());
}

public CookiePage() {
  String value = "";

  for (Cookie c : getWebRequest().getCookies())
if (c.getName().equals("foo"))
  value = c.getValue();

  this.add(new Label("cookieInfo", value));
}

On 10/18/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote:
> Depends on what exactly you want to do.
> FormComponent.setPersisent(true) will "save" the forms value in a
> cookie and load it into the same FormComponent when the user reloads
> the page (login page: rememberMe). This approach doesnt require any
> cookie knowledge from users. If you need some thing else than get the
> servlet response object and handle the cookie yourself. No magic about
> it.
>
> Juergen
>
> On 10/19/06, Scott Swank <[EMAIL PROTECTED]> wrote:
> > I've searched the wiki & email list to no avail.  Does Wicket provide
> > any APIs for manipulating cookies?
> >
> > Thanks once again.
> >
> >
> > --
> > Scott Swank
> > reformed mathematician
> >
> > -
> > Using Tomcat but need to do more? Need to support web services, security?
> > Get stuff done quickly with pre-integrated technology to make your job 
> > easier
> > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
>
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>


-- 
Scott Swank
reformed mathematician

Power is not a means, it is an end. One does not establish a
dictatorship in order to safeguard a revolution; one makes the
revolution in order to establish the dictatorship. The object of
persecution is persecution. The object of torture is torture. The
object of power is power.  -- George Orwell, 1984

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] cookies

2006-10-18 Thread Juergen Donnerstag
Depends on what exactly you want to do.
FormComponent.setPersisent(true) will "save" the forms value in a
cookie and load it into the same FormComponent when the user reloads
the page (login page: rememberMe). This approach doesnt require any
cookie knowledge from users. If you need some thing else than get the
servlet response object and handle the cookie yourself. No magic about
it.

Juergen

On 10/19/06, Scott Swank <[EMAIL PROTECTED]> wrote:
> I've searched the wiki & email list to no avail.  Does Wicket provide
> any APIs for manipulating cookies?
>
> Thanks once again.
>
>
> --
> Scott Swank
> reformed mathematician
>
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] cookies

2006-10-18 Thread Scott Swank
I've searched the wiki & email list to no avail.  Does Wicket provide
any APIs for manipulating cookies?

Thanks once again.


-- 
Scott Swank
reformed mathematician

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Components Entirely In Java?

2006-10-18 Thread Igor Vaynberg
you can encapsulate a great deal of markup and css into the components, however unless you go to extremes some basic knowledge of html is still needed. wicket doesnt use layout managers so you have to provide some basic html - at least  tags to position the components.
in some cases if the components being added are just stacked you can use a repeater like RepeatingView to take care of that so end users can goMyPage() {   getNavContainer().add(new MyNewComponnet1());
   getNavContainer().add(new MyNewComponent2());   getBodyContainer().add(new MyNewCompoenent3());}etc-IgorOn 10/18/06, Jonathan Sharp
 <[EMAIL PROTECTED]> wrote:I'm a UI developer on a team of about 10 and are in the evaulation process of wicket. Pardon my ignorance if this is obvious or misses the boat...
How complex would it be to provide a jar of components to our developers that they can use to build their interfaces without having to touch HTML? The goal would be that they would build the application without having to write any HTML but simply "append" components to each other similar to how you can with the DOM browser side. Our AppBasePage would then have a  tag which is where it would render these components. Does this make sense?
Example Components:- Form- FieldSet- FieldPair- SaveButtonDevelopers would then:class MyPage extends AppBaseBase {    public MyPage() {    Form f = new Form("myForm");
    f.add(new SaveButton("id", "Label"));    add(f);    }}Cheers,-js

-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Safari yes, Firefox no

2006-10-18 Thread Iman Rahmatizadeh
Seems something is done with your pages after the page has been
rendered. Typical causes might be the browser generating a new request
to the same page after the page has been rendered, or somehow the page
getting removed from the PageMap after getting displayed.
If it should be related to the browser, try removing components and
elements from your page one by one, seeing if removing any of them
would make the problem disapear ( you could start with the embed tags
). Check for empty url attributes, like src="" etc., since these would
cause problems in firefox.

On 10/18/06, Michael Welter <[EMAIL PROTECTED]> wrote:
> Correction.  The last two  tags display the *Quicktime* icon
> rather than the audio controls.
>
>
>
> Michael Welter wrote:
> > No, refreshing the page in Firefox yields the Page Expired message.
> >
> > The tabbed panels don't work at all with IE.  IE has the same Page
> > Expired problem.
> >
> > Everything works well in Safari.
> >
> > The page includes several  tags.  The
> > first two are properly painted with the audio controls (which work), but
> > the last two are improperly painted with the circular MS Media Player icon.
> >
> > The development platform is Mac OS/X.
> >
> > Thanks for your help.
> >
> >
> > Iman Rahmatizadeh wrote:
> >> Can you refresh the page ? Does it bring up the Page Expired again ?
> >> Try it with ie. I guess that shouldn't have any problems as well.
> >>
> >> On 10/18/06, Michael Welter <[EMAIL PROTECTED]> wrote:
> >>> This is a very strange problem.  In Firefox, the page display is more or
> >>> less normal.  However, if I display the source, I see the "Page Expired"
> >>> source.  Clicking on any of the links on the page takes me to the "Page
> >>> Expired" page.
> >>>
> >>> Using Safari, I don't have this problem.
> >>>
> >>> Has anyone seen this before?
> >>>
> >>> Thanks,
> >>>
> >>> -
> >>> Using Tomcat but need to do more? Need to support web services, security?
> >>> Get stuff done quickly with pre-integrated technology to make your job 
> >>> easier
> >>> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> >>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> >>> ___
> >>> Wicket-user mailing list
> >>> Wicket-user@lists.sourceforge.net
> >>> https://lists.sourceforge.net/lists/listinfo/wicket-user
> >>>
> >> -
> >> Using Tomcat but need to do more? Need to support web services, security?
> >> Get stuff done quickly with pre-integrated technology to make your job 
> >> easier
> >> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> >> ___
> >> Wicket-user mailing list
> >> Wicket-user@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
> >>
> >>
> >
>
> --
> Michael Welter
> Telecom Matters Corp.
> Denver, Colorado US
> +1.303.414.4980
> [EMAIL PROTECTED]
> www.TelecomMatters.net
>
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Using AjaxEventBehavior On A Page Component

2006-10-18 Thread Matthew P. Tilchen
Greetings,

I am not certain as to whether this post will end up being a bug  
report or a feature request but hopefully one of you may have some  
advice.
Ultimately I am trying to invoke ajax calls as a result of capturing  
"onkeypress" events fired by the document object. I have successfully  
achieved this on components other than Page components but I can not  
get it to work on Page objects. Here is the code for the Page  
subclass that I am speaking of:

public class Index extends WebPage
{
 public Index()
 {
 super();

 final Label testLabel = new Label(this, "message", "Hello  
World");
 testLabel.setOutputMarkupId(true);

 add(new AjaxEventBehavior(ClientEvent.KEYPRESS)
 {
 protected void onEvent(final AjaxRequestTarget target)
 {
  target.addComponent(testLabel);
 target.appendJavascript("new Effect.Highlight($('" +  
testLabel.getMarkupId() + "'));");
 }
 });
 }
}

My assumption is that the "onEvent" method will be invoked when the  
Page (or document in JS) fires a "onkeypress" event. Attempting to  
trigger the behavior on the loaded page does not invoke "onEvent" and  
the in page AJAX debugger shows no activity either.

Has anyone else attempted this type of thing? If this is currently  
not supported it seems like this is something that would be  
consistent with Wicket Ajax implementation's design and I would love  
to see it added.

Thanks.

-MT

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Components Entirely In Java?

2006-10-18 Thread Nick Heudecker
I wrote that page.  What do you want to know about the implementation?  I can sell you my survey code. :)On 10/18/06, Jonathan Sharp <
[EMAIL PROTECTED]> wrote:I think this is similar to what I'm trying to do. Are there any details of this implementation?
http://www.wicket-wiki.org.uk/wiki/index.php/Forms_with_dynamic_elements
Cheers,-jsOn 10/18/06, Jonathan Sharp <
[EMAIL PROTECTED]> wrote:
I'm a UI developer on a team of about 10 and are in the evaulation process of wicket. Pardon my ignorance if this is obvious or misses the boat...How complex would it be to provide a jar of components to our developers that they can use to build their interfaces without having to touch HTML? The goal would be that they would build the application without having to write any HTML but simply "append" components to each other similar to how you can with the DOM browser side. Our AppBasePage would then have a  tag which is where it would render these components. Does this make sense?
Example Components:- Form- FieldSet- FieldPair- SaveButtonDevelopers would then:class MyPage extends AppBaseBase {    public MyPage() {    Form f = new Form("myForm");
    f.add(new SaveButton("id", "Label"));    add(f);    }}Cheers,-js



-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Components Entirely In Java?

2006-10-18 Thread Jonathan Sharp
I think this is similar to what I'm trying to do. Are there any details of this implementation?http://www.wicket-wiki.org.uk/wiki/index.php/Forms_with_dynamic_elements
Cheers,-jsOn 10/18/06, Jonathan Sharp <[EMAIL PROTECTED]> wrote:
I'm a UI developer on a team of about 10 and are in the evaulation process of wicket. Pardon my ignorance if this is obvious or misses the boat...How complex would it be to provide a jar of components to our developers that they can use to build their interfaces without having to touch HTML? The goal would be that they would build the application without having to write any HTML but simply "append" components to each other similar to how you can with the DOM browser side. Our AppBasePage would then have a  tag which is where it would render these components. Does this make sense?
Example Components:- Form- FieldSet- FieldPair- SaveButtonDevelopers would then:class MyPage extends AppBaseBase {    public MyPage() {    Form f = new Form("myForm");
    f.add(new SaveButton("id", "Label"));    add(f);    }}Cheers,-js


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Components Entirely In Java?

2006-10-18 Thread Jonathan Sharp
I'm a UI developer on a team of about 10 and are in the evaulation process of wicket. Pardon my ignorance if this is obvious or misses the boat...How complex would it be to provide a jar of components to our developers that they can use to build their interfaces without having to touch HTML? The goal would be that they would build the application without having to write any HTML but simply "append" components to each other similar to how you can with the DOM browser side. Our AppBasePage would then have a  tag which is where it would render these components. Does this make sense?
Example Components:- Form- FieldSet- FieldPair- SaveButtonDevelopers would then:class MyPage extends AppBaseBase {    public MyPage() {    Form f = new Form("myForm");
    f.add(new SaveButton("id", "Label"));    add(f);    }}Cheers,-js
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Outage of wicketframework.org solved

2006-10-18 Thread Martijn Dashorst
All,

Some of you might have noticed that the http://wicketframework.org url
didn't respond yesterday and today.

This was an issue with Sourceforge and is currently solved (it works for me).

>From the sf.net status page:

(2006-10-18 10:03:12 - Project VHOST Service )   2006-10-18:
Currently, we're experiencing difficulty in our project VHOSTing
service. This extends to hosted domain names.
PROJECTNAME.sourceforge.net still works. We apologise for the
convenience are are working to address this issue.

Best regards,

Martijn

-- 
http://www.thebeststuffintheworld.com/vote_for/wicket";>Vote
for http://www.thebeststuffintheworld.com/stuff/wicket";>Wicket
at the http://www.thebeststuffintheworld.com/";>Best Stuff in
the World!

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Table question

2006-10-18 Thread Igor Vaynberg
same applies-IgorOn 10/18/06, Manuel Alejandro de Brito Fontes <[EMAIL PROTECTED]
> wrote:I forget to mention that I'm using 2.0-SNAPSHOTOn 18-10-2006, at 13:25, Manuel Alejandro de Brito Fontes wrote:
> Thanks for the reply.> You suggest that  "what you do is extend AbstractColumn and provide> your own markup via either a panel or a fragment."> Ok, i understand that, but the column don't  read my own markup in
> a panel.> I only get Markup with path '' not found in fragment: cell>> Can show me an example?>> Thanks in advice.>> On 18-10-2006, at 13:01, Igor Vaynberg wrote:
>>> the problem is that the markup is >> span> ... you cannot attach an image to a span tag, you need>> markup with an img tag.>>
>> -Igor>> On 10/18/06, Marc-Andre Houle <[EMAIL PROTECTED]> wrote:>> Why not adding directly an Image or a NonCachableImage instead of
>> a Label?  Does it really need a panel or a fragment for that? Marc>> On 10/18/06, Igor Vaynberg <[EMAIL PROTECTED]
> wrote:>> what you do is extend AbstractColumn and provide your own markup>> via either a panel or a fragment. see how PropertyColumn works...but instead of a label you add your
>> panel that contains the image -Igor>> On 10/18/06, Manuel Alejandro de Brito Fontes <>> [EMAIL PROTECTED]
> wrote:>> Hi, Im trying to  create a table (AjaxFallbackDefaultDataTable)>> with a column that display a modal window that permit modify the>> row content. That works perfect, modify the data and the table
>> updates the table content.>> My problem is that the column in question display a text "cell">> and i want to display an image. I don't find any example of this,>> so i try to do it.
>> So extend the AjaxLink and add an Image instance, but the cell>> only contains a MarkupFragment>> [, , [, [cell], >> span>], , ]>> obviously the html that i create in the component that extends>> AjaxLink is useless.>> Sorry if I'm complicating the things, I'm a newbie :)>>
>> Thanks in advice. PS: Sorry for my bad english too. ->> >> Using Tomcat but need to do more? Need to support web services,
>> security?>> Get stuff done quickly with pre-integrated technology to make your>> job easier>> Download IBM WebSphere Application Server v.1.0.1 based on Apache>> Geronimo
>> http://sel.as-us.falkag.net/sel?>> cmd=lnk&kid=120709&bid=263057&dat=121642 ___
>> Wicket-user mailing list>> Wicket-user@lists.sourceforge.net>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>> ->> >> Using Tomcat but need to do more? Need to support web services,
>> security?>> Get stuff done quickly with pre-integrated technology to make your>> job easier>> Download IBM WebSphere Application Server v.1.0.1 based on Apache>> Geronimo
>> http://sel.as-us.falkag.net/sel?>> cmd=lnk&kid=120709&bid=263057&dat=121642 ___
>> Wicket-user mailing list>> Wicket-user@lists.sourceforge.net>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>> ->> >> Using Tomcat but need to do more? Need to support web services,
>> security?>> Get stuff done quickly with pre-integrated technology to make your>> job easier>> Download IBM WebSphere Application Server v.1.0.1 based on Apache>> Geronimo
>> http://sel.as-us.falkag.net/sel?>> cmd=lnk&kid=120709&bid=263057&dat=121642 ___
>> Wicket-user mailing list>> Wicket-user@lists.sourceforge.net>> https://lists.sourceforge.net/lists/listinfo/wicket-user
 ->> >> Using Tomcat but need to do more? Need to support web services,>> security?
>> Get stuff done quickly with pre-integrated technology to make your>> job easier>> Download IBM WebSphere Application Server v.1.0.1 based on Apache>> Geronimo>> 
http://sel.as-us.falkag.net/sel?>> cmd=lnk&kid=120709&bid=263057&dat=121642_>> __>> Wicket-user mailing list>> 
Wicket-user@lists.sourceforge.net>> https://lists.sourceforge.net/lists/listinfo/wicket-user>> Manuel Alejandro de Brito Fontes
> [EMAIL PROTECTED]>> Any fool can write code that a computer can understand.> Good programmers write code that humans can understand."
>>   --- Martin Fowler, Refactoring: Improving the> Design of Existing CodeManuel Alejandro de Brito Fontes
[EMAIL PROTECTED]Any fool can write code that a computer can understand.Good programmers write code that humans can understand."   --- Martin Fowler, Refactoring: Improving the
Design of Existing Code-Using Tomcat but need to do more? Need to support web services, security?Get stuff do

Re: [Wicket-user] Compound Property model and Palette

2006-10-18 Thread samyem

Hi Igor,
No that didn't work. You have just added a new constructor signature, but
not fixed the real problem. The problem is that when Palette is constructed,
it tries to make a new RecorderComponent which reads the model at
construction time. Since I am using the 1.x wicket, Palette does not know
its parent container at construction time and hence it cannot find the
compound property model set on the palette's container. To fix this, you'll
have to make the Palette's components read from the model at render time and
remove the logic from the constructors, like the other FormComponents are
already doing. Please give it another try and I'll check again once you are
done.

Thanks,
Samyem


igor.vaynberg wrote:
> 
> and its patched, let me know if it works.
> 
> -Igor
> 
> 
> On 10/14/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
>>
>> it is a limitation, i will patch it soon.
>>
>> -Igor
>>
>>
>> On 10/14/06, samyem <[EMAIL PROTECTED]> wrote:
>> >
>> >
>> > Since the Palette does not allow you to implicitly use the container's
>> > compound model, there does not appear to be an obvious way for Palette
>> > to
>> > behave the same way as the other FormComponents. So I was wondering if
>> > this
>> > is a limitation of Palette or it was done this way by design?
>> >
>> >
>> > samyem wrote:
>> > >
>> > > Is it possible for a Palette to take the CompoundPropertyModel set on
>> > the
>> > > form?
>> > >
>> >
>> > --
>> > View this message in context:
>> http://www.nabble.com/Compound-Property-model-and-Palette-tf2439928.html#a6812005
>> >
>> > Sent from the Wicket - User mailing list archive at Nabble.com.
>> >
>> >
>> >
>> >
>> -
>> > Using Tomcat but need to do more? Need to support web services,
>> > security?
>> > Get stuff done quickly with pre-integrated technology to make your job
>> > easier
>> > Download IBM WebSphere Application Server v.1.0.1 based on Apache
>> > Geronimo
>> >
>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>> > ___
>> > Wicket-user mailing list
>> > Wicket-user@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >
>>
>>
> 
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Compound-Property-model-and-Palette-tf2439928.html#a6885413
Sent from the Wicket - User mailing list archive at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Link To & Generate CSS

2006-10-18 Thread Jonathan Sharp
Wonderful! Exactly what I was looking for!-jsOn 10/18/06, Eelco Hillenius <[EMAIL PROTECTED]
> wrote:If you generate the CSS in Java: add(newTextHeaderContributor(generated)); or look at wicket-extension's
TextTemplateHeaderContributor.forCssEelcoOn 10/18/06, Jonathan Sharp <[EMAIL PROTECTED]> wrote:> I have a particular component that needs to generate some CSS on the fly.
> What would be the easiest way to have this component register a link tag> with the head (assuming HeaderContributor) that points back to a POJO to do> the work?>> -js>> -
> Using Tomcat but need to do more? Need to support web services, security?> Get stuff done quickly with pre-integrated technology to make your job> easier> Download IBM WebSphere Application Server 
v.1.0.1 based on Apache Geronimo> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>> ___> Wicket-user mailing list> Wicket-user@lists.sourceforge.net> 
https://lists.sourceforge.net/lists/listinfo/wicket-user>>>-Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Link To & Generate CSS

2006-10-18 Thread Eelco Hillenius
If you generate the CSS in Java: add(new
TextHeaderContributor(generated)); or look at wicket-extension's
TextTemplateHeaderContributor.forCss

Eelco


On 10/18/06, Jonathan Sharp <[EMAIL PROTECTED]> wrote:
> I have a particular component that needs to generate some CSS on the fly.
> What would be the easiest way to have this component register a link tag
> with the head (assuming HeaderContributor) that points back to a POJO to do
> the work?
>
> -js
>
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>
>

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Link To & Generate CSS

2006-10-18 Thread Jonathan Sharp
I have a particular component that needs to generate some CSS on the fly. What would be the easiest way to have this component register a link tag with the head (assuming HeaderContributor) that points back to a POJO to do the work?
-js
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Table question

2006-10-18 Thread Manuel Alejandro de Brito Fontes
I forget to mention that I'm using 2.0-SNAPSHOT

On 18-10-2006, at 13:25, Manuel Alejandro de Brito Fontes wrote:

> Thanks for the reply.
> You suggest that  "what you do is extend AbstractColumn and provide  
> your own markup via either a panel or a fragment."
> Ok, i understand that, but the column don't  read my own markup in  
> a panel.
> I only get Markup with path '' not found in fragment: cell
>
> Can show me an example?
>
> Thanks in advice.
>
> On 18-10-2006, at 13:01, Igor Vaynberg wrote:
>
>> the problem is that the markup is > span> ... you cannot attach an image to a span tag, you need  
>> markup with an img tag.
>>
>> -Igor
>>
>>
>> On 10/18/06, Marc-Andre Houle <[EMAIL PROTECTED]> wrote:
>> Why not adding directly an Image or a NonCachableImage instead of  
>> a Label?  Does it really need a panel or a fragment for that?
>>
>> Marc
>>
>>
>> On 10/18/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
>> what you do is extend AbstractColumn and provide your own markup  
>> via either a panel or a fragment.
>>
>> see how PropertyColumn works...but instead of a label you add your  
>> panel that contains the image
>>
>> -Igor
>>
>>
>> On 10/18/06, Manuel Alejandro de Brito Fontes <  
>> [EMAIL PROTECTED]> wrote:
>> Hi, Im trying to  create a table (AjaxFallbackDefaultDataTable)  
>> with a column that display a modal window that permit modify the  
>> row content. That works perfect, modify the data and the table  
>> updates the table content.
>> My problem is that the column in question display a text "cell"  
>> and i want to display an image. I don't find any example of this,  
>> so i try to do it.
>> So extend the AjaxLink and add an Image instance, but the cell  
>> only contains a MarkupFragment
>> [, , [, [cell], > span>], , ]
>> obviously the html that i create in the component that extends  
>> AjaxLink is useless.
>> Sorry if I'm complicating the things, I'm a newbie :)
>>
>> Thanks in advice.
>>
>> PS: Sorry for my bad english too.
>>
>> - 
>> 
>> Using Tomcat but need to do more? Need to support web services,  
>> security?
>> Get stuff done quickly with pre-integrated technology to make your  
>> job easier
>> Download IBM WebSphere Application Server v.1.0.1 based on Apache  
>> Geronimo
>> http://sel.as-us.falkag.net/sel? 
>> cmd=lnk&kid=120709&bid=263057&dat=121642
>>
>> ___
>> Wicket-user mailing list
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
>>
>>
>>
>> - 
>> 
>> Using Tomcat but need to do more? Need to support web services,  
>> security?
>> Get stuff done quickly with pre-integrated technology to make your  
>> job easier
>> Download IBM WebSphere Application Server v.1.0.1 based on Apache  
>> Geronimo
>> http://sel.as-us.falkag.net/sel? 
>> cmd=lnk&kid=120709&bid=263057&dat=121642
>>
>> ___
>> Wicket-user mailing list
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
>>
>>
>>
>> - 
>> 
>> Using Tomcat but need to do more? Need to support web services,  
>> security?
>> Get stuff done quickly with pre-integrated technology to make your  
>> job easier
>> Download IBM WebSphere Application Server v.1.0.1 based on Apache  
>> Geronimo
>> http://sel.as-us.falkag.net/sel? 
>> cmd=lnk&kid=120709&bid=263057&dat=121642
>>
>> ___
>> Wicket-user mailing list
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
>>
>>
>> - 
>> 
>> Using Tomcat but need to do more? Need to support web services,  
>> security?
>> Get stuff done quickly with pre-integrated technology to make your  
>> job easier
>> Download IBM WebSphere Application Server v.1.0.1 based on Apache  
>> Geronimo
>> http://sel.as-us.falkag.net/sel? 
>> cmd=lnk&kid=120709&bid=263057&dat=121642_ 
>> __
>> Wicket-user mailing list
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
> Manuel Alejandro de Brito Fontes
> [EMAIL PROTECTED]
>
> Any fool can write code that a computer can understand.
> Good programmers write code that humans can understand."
>
>   --- Martin Fowler, Refactoring: Improving the  
> Design of Existing Code
>
>
>
>

Manuel Alejandro de Brito Fontes
[EMAIL PROTECTED]

Any fool can write code that a computer can understand.
Good programmers write code that humans can understand."

   --- Martin Fowler, Refactoring: Improving the  
Design of Existing Code





--

Re: [Wicket-user] Table question

2006-10-18 Thread Marc-Andre Houle
Thanks!On 10/18/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
the problem is that the markup is  ... you cannot attach an image to a span tag, you need markup with an img tag.-Igor
On 10/18/06, 
Marc-Andre Houle <[EMAIL PROTECTED]> wrote:

Why not adding directly an Image or a NonCachableImage instead of a Label?  Does it really need a panel or a fragment for that?Marc
On 10/18/06, Igor Vaynberg
 <[EMAIL PROTECTED]> wrote:


what you do is extend AbstractColumn and provide your own markup via either a panel or a fragment.see how PropertyColumn works...but instead of a label you add your panel that contains the image-Igor



On 10/18/06, Manuel Alejandro de Brito Fontes <


[EMAIL PROTECTED]> wrote:

Hi, Im trying to  create a table (AjaxFallbackDefaultDataTable) with a column that display a modal window that permit modify the row content. That works perfect, modify the data and the table updates the table content.
My problem is that the column in question display a text "cell" and i want to display an image. I don't find any example of this, so i try to do it. So extend the AjaxLink and add an Image instance, but the cell only contains a MarkupFragment 
[, , [, [cell], ], , ]
obviously the html that i create in the component that extends AjaxLink is useless.
Sorry if I'm complicating the things, I'm a newbie :)



Thanks in advice.
PS: Sorry for my bad english too.

-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo



http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing list



Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user


-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo


http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing list


Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user


-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing list

Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user


-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] floss

2006-10-18 Thread Elsie Kimball
polygon electrician tinkle familiar
Check  A R S S  right now, stockjobbers drop the price, it's time to get in
and get profit!
athlete's foot state distinctively pagan


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Programatically access to CSS

2006-10-18 Thread wicketmarsh

Thanks,
HeaderContributor.forCss("style/abc.css")  this worked with wicket 1.2.2 , i
had 1.2 earlier
but absoulte path didn't work..
marsh


Eelco Hillenius wrote:
> 
>> I have my .css file in web context directory i.e webapp/style/abc.css
>> since
>> this .css is used by plain html and wicket , i can't place it in my
>> wicket
>> webpages directory.
>> I want to access this .css file in my webpage. i know , we can access is
>> using HeaderContributor.forCss(Class scope,String path) but it seems it
>> alway need class for scope. so it expect .css in relative  to scope
>> Class.
>> how do I access .css from my application context i.e.webapp/style/abc.css
> 
> HeaderContributor.forCss("style/abc.css") should do the trick (don't
> put a slash in front though, as that'll make it absolute).
> 
> Eelco
> 
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Programatically-access-to-CSS-tf2463427.html#a6880344
Sent from the Wicket - User mailing list archive at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Table question

2006-10-18 Thread Manuel Alejandro de Brito Fontes
Thanks for the reply. You suggest that  "what you do is extend AbstractColumn and provide your own markup via either a panel or a fragment."Ok, i understand that, but the column don't  read my own markup in a panel.I only get Markup with path '' not found in fragment: cellCan show me an example?Thanks in advice.On 18-10-2006, at 13:01, Igor Vaynberg wrote:the problem is that the markup is  ... you cannot attach an image to a span tag, you need markup with an img tag.-IgorOn 10/18/06, Marc-Andre Houle <[EMAIL PROTECTED]> wrote: Why not adding directly an Image or a NonCachableImage instead of a Label?  Does it really need a panel or a fragment for that?Marc On 10/18/06, Igor Vaynberg  <[EMAIL PROTECTED]> wrote: what you do is extend AbstractColumn and provide your own markup via either a panel or a fragment.see how PropertyColumn works...but instead of a label you add your panel that contains the image-Igor On 10/18/06, Manuel Alejandro de Brito Fontes < [EMAIL PROTECTED]> wrote: Hi, Im trying to  create a table (AjaxFallbackDefaultDataTable) with a column that display a modal window that permit modify the row content. That works perfect, modify the data and the table updates the table content. My problem is that the column in question display a text "cell" and i want to display an image. I don't find any example of this, so i try to do it. So extend the AjaxLink and add an Image instance, but the cell only contains a MarkupFragment  [, , [, [cell], ], , ] obviously the html that i create in the component that extends AjaxLink is useless. Sorry if I'm complicating the things, I'm a newbie :) Thanks in advice. PS: Sorry for my bad english too.  -Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing list Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user  -Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing list Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user  -Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing list Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user -Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimohttp://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing listWicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user  Manuel Alejandro de Brito Fontes[EMAIL PROTECTED]Any fool can write code that a computer can understand.Good programmers write code that humans can understand."                  --- Martin Fowler, Refactoring: Improving the Design of Existing Code -
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Programatically access to CSS

2006-10-18 Thread Eelco Hillenius
You don't need it, but it saves you writing the link tag. Unless
you're putting it in a page, in which case you don't need any Wicket
code, but can just put it in the HTML.

Eelco

On 10/18/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote:
> if you build the path yourself you dont need the headercontributor to create
> the url...wasnt that the whole point that you wanted?
>
> -Igor
>
>
>
> On 10/18/06, wicketmarsh <[EMAIL PROTECTED]> wrote:
> >
> > Hi tried this
> > HeaderContributor.forCss(xyz.class,
> >
> "/"+((WebRequest)getRequest()).getHttpServletRequest().getContextPath()
> > +"/style/abc.css")
> >
> > where xyz.class is my webpage in com.ma.itg.test.app directory,
> > i am getting error
> > wicket.WicketRuntimeException: Unable to find package resource [path =
> > //webapp/style/IEEE.css, style = null, locale = null]
> > at
> > wicket.markup.html.PackageResource.getResourceStream
> (PackageResource.java:520)
> > at
> >
> wicket.protocol.http.WicketServlet.getLastModified(WicketServlet.java:395)
> > at
> javax.servlet.http.HttpServlet.service(HttpServlet.java:736)
> > at javax.servlet.http.HttpServlet.service
> (HttpServlet.java:853)
> > at
> >
> weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1072)
> > at
> >
> weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
> :465)
> > at
> >
> weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:348)
> > at
> >
> weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java
> :6981)
> > at
> >
> weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
> > at
> >
> weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
> > at
> >
> weblogic.servlet.internal.WebAppServletContext.invokeServlet
> (WebAppServletContext.java:3892)
> > at
> >
> weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2766)
> > at
> weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
> > at
> weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
> >
> > i even tries with removing first "/" before context path .. but still it
> > gives error Unable to find package resource [path =
> /webapp/style/IEEE.css,
> > style = null, locale = null]
> >
> > here i don't know what is the class  scope i need to pass , i just pass
> any
> > class i.e XYZ.class
> >
> > thanks in advance..
> >
> > marsh
> >
> >
> > igor.vaynberg wrote:
> > >
> > > the best way is to build the path manually by doing
> > > "/"+contextpath+"/style/abc.css" you can get the
> contextpath from the
> > > httpservletrequest object
> > >
> ((WebRequest)getRequest()).getHttpServletRequest().getContextPath()
> > >
> > > -Igor
> > >
> > >
> > >
> > >
> > > On 10/17/06, wicketmarsh <[EMAIL PROTECTED]> wrote:
> > >>
> > >>
> > >> Hi everybody,
> > >>
> > >> I have my .css file in web context directory i.e webapp/style/abc.css
> > >> since
> > >> this .css is used by plain html and wicket , i can't place it in my
> > >> wicket
> > >> webpages directory.
> > >> I want to access this .css file in my webpage. i know , we can access
> is
> > >> using HeaderContributor.forCss(Class scope,String path) but it seems it
> > >> alway need class for scope. so it expect .css in relative  to scope
> > >> Class.
> > >> how do I access .css from my application context
> i.e.webapp/style/abc.css
> > >>
> > >> thanks in advance,
> > >>
> > >> marsh
> > >> --
> > >> View this message in context:
> > >>
> http://www.nabble.com/Programatically-access-to-CSS-tf2463427.html#a6867612
> > >> Sent from the Wicket - User mailing list archive at Nabble.com.
> > >>
> > >>
> > >>
> -
> > >> Using Tomcat but need to do more? Need to support web services,
> security?
> > >> Get stuff done quickly with pre-integrated technology to make your job
> > >> easier
> > >> Download IBM WebSphere Application Server v.1.0.1 based on Apache
> > >> Geronimo
> > >>
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > >> ___
> > >> Wicket-user mailing list
> > >> Wicket-user@lists.sourceforge.net
> > >>
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> > >>
> > >
> > >
> -
> > > Using Tomcat but need to do more? Need to support web services,
> security?
> > > Get stuff done quickly with pre-integrated technology to make your job
> > > easier
> > > Download IBM WebSphere Application Server v.1.0.1 based on Apache
> Geronimo
> > >
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > > ___
> > > Wicket-user mailing list
> > > Wicket-user@lists.sourceforge.net
> > >
> https://

Re: [Wicket-user] Table question

2006-10-18 Thread Igor Vaynberg
the problem is that the markup is  ... you cannot attach an image to a span tag, you need markup with an img tag.-IgorOn 10/18/06, 
Marc-Andre Houle <[EMAIL PROTECTED]> wrote:
Why not adding directly an Image or a NonCachableImage instead of a Label?  Does it really need a panel or a fragment for that?Marc
On 10/18/06, Igor Vaynberg
 <[EMAIL PROTECTED]> wrote:

what you do is extend AbstractColumn and provide your own markup via either a panel or a fragment.see how PropertyColumn works...but instead of a label you add your panel that contains the image-Igor


On 10/18/06, Manuel Alejandro de Brito Fontes <

[EMAIL PROTECTED]> wrote:

Hi, Im trying to  create a table (AjaxFallbackDefaultDataTable) with a column that display a modal window that permit modify the row content. That works perfect, modify the data and the table updates the table content.
My problem is that the column in question display a text "cell" and i want to display an image. I don't find any example of this, so i try to do it. So extend the AjaxLink and add an Image instance, but the cell only contains a MarkupFragment 
[, , [, [cell], ], , ]
obviously the html that i create in the component that extends AjaxLink is useless.
Sorry if I'm complicating the things, I'm a newbie :)


Thanks in advice.
PS: Sorry for my bad english too.

-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo


http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing list


Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user


-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing list

Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user


-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Table question

2006-10-18 Thread Marc-Andre Houle
Why not adding directly an Image or a NonCachableImage instead of a Label?  Does it really need a panel or a fragment for that?MarcOn 10/18/06, Igor Vaynberg
 <[EMAIL PROTECTED]> wrote:
what you do is extend AbstractColumn and provide your own markup via either a panel or a fragment.see how PropertyColumn works...but instead of a label you add your panel that contains the image-Igor

On 10/18/06, Manuel Alejandro de Brito Fontes <
[EMAIL PROTECTED]> wrote:

Hi, Im trying to  create a table (AjaxFallbackDefaultDataTable) with a column that display a modal window that permit modify the row content. That works perfect, modify the data and the table updates the table content.
My problem is that the column in question display a text "cell" and i want to display an image. I don't find any example of this, so i try to do it. So extend the AjaxLink and add an Image instance, but the cell only contains a MarkupFragment 
[, , [, [cell], ], , ]
obviously the html that i create in the component that extends AjaxLink is useless.
Sorry if I'm complicating the things, I'm a newbie :)

Thanks in advice.
PS: Sorry for my bad english too.

-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing list

Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user


-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Table question

2006-10-18 Thread Martijn Dashorst
Hmm...

ModalWindow inside a AjaxDataTable... almost as crazy as my idea of
nesting a datatable inside an TreeTable.

Subclass AbstractColumn and add a new fragment or panel of your own,
where you create the link and image yourself.

Martijn

On 10/18/06, Manuel Alejandro de Brito Fontes
<[EMAIL PROTECTED]> wrote:
> Hi, Im trying to  create a table (AjaxFallbackDefaultDataTable) with a
> column that display a modal window that permit modify the row content. That
> works perfect, modify the data and the table updates the table content.
> My problem is that the column in question display a text "cell" and i want
> to display an image. I don't find any example of this, so i try to do it.
> So extend the AjaxLink and add an Image instance, but the cell only contains
> a MarkupFragment
> [, , [, [cell], ], ,
> ]
> obviously the html that i create in the component that extends AjaxLink is
> useless.
> Sorry if I'm complicating the things, I'm a newbie :)
>
> Thanks in advice.
>
> PS: Sorry for my bad english too.
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>
>


-- 
http://www.thebeststuffintheworld.com/vote_for/wicket";>Vote
for http://www.thebeststuffintheworld.com/stuff/wicket";>Wicket
at the http://www.thebeststuffintheworld.com/";>Best Stuff in
the World!

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] missing commons-logging dependency in wicket-extensions 2.

2006-10-18 Thread Martijn Dashorst
http://maven.apache.org/plugins/maven-help-plugin/effective-pom-mojo.html

On 10/18/06, Gwyn Evans <[EMAIL PROTECTED]> wrote:
> On 18/10/06, karthik Guru <[EMAIL PROTECTED]> wrote:
> > and ofcourse they go away the moment I add the commons-logging dependency.
> > Any idea why it doesn't work for me?
>
>   Nothing specific - Things to check would be the wicket pom involved,
> e.g. the wicket\wicket\2.0-SNAPSHOT\wicket-2.0-SNAPSHOT.pom file in
> your local repo, to see if the dependency's there?
>
>   You should be able to get an idea of what dependencies are being
> looked for where via "mvn -X ".  Maybe "mvn -U ..." would help,
> but I don't know.
>
> /Gwyn
> --
> Download Wicket 1.2.2 now! - http://wicketframework.org
>
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>


-- 
http://www.thebeststuffintheworld.com/vote_for/wicket";>Vote
for http://www.thebeststuffintheworld.com/stuff/wicket";>Wicket
at the http://www.thebeststuffintheworld.com/";>Best Stuff in
the World!

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Table question

2006-10-18 Thread Igor Vaynberg
what you do is extend AbstractColumn and provide your own markup via either a panel or a fragment.see how PropertyColumn works...but instead of a label you add your panel that contains the image-Igor
On 10/18/06, Manuel Alejandro de Brito Fontes <[EMAIL PROTECTED]> wrote:
Hi, Im trying to  create a table (AjaxFallbackDefaultDataTable) with a column that display a modal window that permit modify the row content. That works perfect, modify the data and the table updates the table content.
My problem is that the column in question display a text "cell" and i want to display an image. I don't find any example of this, so i try to do it. So extend the AjaxLink and add an Image instance, but the cell only contains a MarkupFragment 
[, , [, [cell], ], , ]
obviously the html that i create in the component that extends AjaxLink is useless.
Sorry if I'm complicating the things, I'm a newbie :)
Thanks in advice.
PS: Sorry for my bad english too.

-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Add an event to DataTable.setCurrentPage(int)?

2006-10-18 Thread Igor Vaynberg
please file a jira issue.-IgorOn 10/18/06, Renaut, Jonathan E CTR DISA GIG-CS <[EMAIL PROTECTED]
> wrote:









I'd like to fire an event every time the page on my datatable changes, but I can't overwrite setCurrentPage because it's final.  Is there a way to do this without changing the .jar file?



-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Programatically access to CSS

2006-10-18 Thread Martijn Dashorst
By supplying the Class parameter, you tell Wicket to search for it on
the classpath. You need the single parameter version, which
automagically prepends the context path.

HeaderContributor.forCss("style/abc.css");

http://wicket.sourceforge.net/apidocs/wicket/behavior/HeaderContributor.html#forCss(java.lang.String)

Martijn

On 10/18/06, wicketmarsh <[EMAIL PROTECTED]> wrote:
>
> Hi tried this
> HeaderContributor.forCss(xyz.class,
> "/"+((WebRequest)getRequest()).getHttpServletRequest().getContextPath()
> +"/style/abc.css")
>
> where xyz.class is my webpage in com.ma.itg.test.app directory,
> i am getting error
> wicket.WicketRuntimeException: Unable to find package resource [path =
> //webapp/style/IEEE.css, style = null, locale = null]
> at
> wicket.markup.html.PackageResource.getResourceStream(PackageResource.java:520)
> at
> wicket.protocol.http.WicketServlet.getLastModified(WicketServlet.java:395)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:736)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> at
> weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1072)
> at
> weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
> at
> weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:348)
> at
> weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6981)
> at
> weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
> at
> weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
> at
> weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3892)
> at
> weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2766)
> at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
> at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
>
> i even tries with removing first "/" before context path .. but still it
> gives error Unable to find package resource [path = /webapp/style/IEEE.css,
> style = null, locale = null]
>
> here i don't know what is the class  scope i need to pass , i just pass any
> class i.e XYZ.class
>
> thanks in advance..
>
> marsh
>
>
> igor.vaynberg wrote:
> >
> > the best way is to build the path manually by doing
> > "/"+contextpath+"/style/abc.css" you can get the contextpath from the
> > httpservletrequest object
> > ((WebRequest)getRequest()).getHttpServletRequest().getContextPath()
> >
> > -Igor
> >
> >
> >
> >
> > On 10/17/06, wicketmarsh <[EMAIL PROTECTED]> wrote:
> >>
> >>
> >> Hi everybody,
> >>
> >> I have my .css file in web context directory i.e webapp/style/abc.css
> >> since
> >> this .css is used by plain html and wicket , i can't place it in my
> >> wicket
> >> webpages directory.
> >> I want to access this .css file in my webpage. i know , we can access is
> >> using HeaderContributor.forCss(Class scope,String path) but it seems it
> >> alway need class for scope. so it expect .css in relative  to scope
> >> Class.
> >> how do I access .css from my application context i.e.webapp/style/abc.css
> >>
> >> thanks in advance,
> >>
> >> marsh
> >> --
> >> View this message in context:
> >> http://www.nabble.com/Programatically-access-to-CSS-tf2463427.html#a6867612
> >> Sent from the Wicket - User mailing list archive at Nabble.com.
> >>
> >>
> >> -
> >> Using Tomcat but need to do more? Need to support web services, security?
> >> Get stuff done quickly with pre-integrated technology to make your job
> >> easier
> >> Download IBM WebSphere Application Server v.1.0.1 based on Apache
> >> Geronimo
> >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> >> ___
> >> Wicket-user mailing list
> >> Wicket-user@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
> >>
> >
> > -
> > Using Tomcat but need to do more? Need to support web services, security?
> > Get stuff done quickly with pre-integrated technology to make your job
> > easier
> > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
> >
>
> --
> View this message in context: 
> http://www.nabble.com/Programatically-access-to-CSS-tf2463427.html#a6878003
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> -
> Using Tomcat but need to

Re: [Wicket-user] Programatically access to CSS

2006-10-18 Thread Igor Vaynberg
if you build the path yourself you dont need the headercontributor to create the url...wasnt that the whole point that you wanted?-IgorOn 10/18/06, 
wicketmarsh <[EMAIL PROTECTED]> wrote:
Hi tried thisHeaderContributor.forCss(xyz.class,"/"+((WebRequest)getRequest()).getHttpServletRequest().getContextPath()+"/style/abc.css")where xyz.class is my webpage in com.ma.itg.test.app
 directory,i am getting errorwicket.WicketRuntimeException: Unable to find package resource [path =//webapp/style/IEEE.css, style = null, locale = null]atwicket.markup.html.PackageResource.getResourceStream
(PackageResource.java:520)atwicket.protocol.http.WicketServlet.getLastModified(WicketServlet.java:395)at javax.servlet.http.HttpServlet.service(HttpServlet.java:736)at javax.servlet.http.HttpServlet.service
(HttpServlet.java:853)atweblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1072)atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
:465)atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:348)atweblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java
:6981)atweblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)atweblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)atweblogic.servlet.internal.WebAppServletContext.invokeServlet
(WebAppServletContext.java:3892)atweblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2766)at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)at 
weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)i even tries with removing first "/" before context path .. but still itgives error Unable to find package resource [path = /webapp/style/IEEE.css,
style = null, locale = null]here i don't know what is the class  scope i need to pass , i just pass anyclass i.e XYZ.classthanks in advance..marshigor.vaynberg wrote:>
> the best way is to build the path manually by doing> "/"+contextpath+"/style/abc.css" you can get the contextpath from the> httpservletrequest object> ((WebRequest)getRequest()).getHttpServletRequest().getContextPath()
>> -Igor> On 10/17/06, wicketmarsh <[EMAIL PROTECTED]> wrote:>> Hi everybody,
 I have my .css file in web context directory i.e webapp/style/abc.css>> since>> this .css is used by plain html and wicket , i can't place it in my>> wicket>> webpages directory.
>> I want to access this .css file in my webpage. i know , we can access is>> using HeaderContributor.forCss(Class scope,String path) but it seems it>> alway need class for scope. so it expect .css in relative  to scope
>> Class.>> how do I access .css from my application context i.e.webapp/style/abc.css thanks in advance, marsh>> -->> View this message in context:
>> http://www.nabble.com/Programatically-access-to-CSS-tf2463427.html#a6867612>> Sent from the Wicket - User mailing list archive at 
Nabble.com.>> ->> Using Tomcat but need to do more? Need to support web services, security?
>> Get stuff done quickly with pre-integrated technology to make your job>> easier>> Download IBM WebSphere Application Server v.1.0.1 based on Apache>> Geronimo>> 
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642>> ___>> Wicket-user mailing list>> 
Wicket-user@lists.sourceforge.net>> https://lists.sourceforge.net/lists/listinfo/wicket-user -
> Using Tomcat but need to do more? Need to support web services, security?> Get stuff done quickly with pre-integrated technology to make your job> easier> Download IBM WebSphere Application Server 
v.1.0.1 based on Apache Geronimo> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___> Wicket-user mailing list> Wicket-user@lists.sourceforge.net> 
https://lists.sourceforge.net/lists/listinfo/wicket-user>>--View this message in context: http://www.nabble.com/Programatically-access-to-CSS-tf2463427.html#a6878003
Sent from the Wicket - User mailing list archive at Nabble.com.-Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user
-
U

Re: [Wicket-user] Programatically access to CSS

2006-10-18 Thread Eelco Hillenius
If you use HeaderContributor.forCss(String), you can refer files
relative to the context path (or absolute if you want).

If you use HeaderContributor.forCss(Class, String), the class should
be in the same package as where the resource you want to reference is.
This will generate urls like:

foo/bar/resources/com.blerk.MyClass/something.css

where foo is the contextpaht, bar the servlet name, resources a fixed
identifier used by Wicket to recognize shared resources,
com.blerk.MyClass the scope and something.css sits in the same package
as MyClass. Hence, HeaderContributor.forCss(Class, String) should only
be used for resources in packages.

Eelco


On 10/18/06, wicketmarsh <[EMAIL PROTECTED]> wrote:
>
> Hi tried this
> HeaderContributor.forCss(xyz.class,
> "/"+((WebRequest)getRequest()).getHttpServletRequest().getContextPath()
> +"/style/abc.css")
>
> where xyz.class is my webpage in com.ma.itg.test.app directory,
> i am getting error
> wicket.WicketRuntimeException: Unable to find package resource [path =
> //webapp/style/IEEE.css, style = null, locale = null]
> at
> wicket.markup.html.PackageResource.getResourceStream(PackageResource.java:520)
> at
> wicket.protocol.http.WicketServlet.getLastModified(WicketServlet.java:395)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:736)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
> at
> weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1072)
> at
> weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
> at
> weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:348)
> at
> weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6981)
> at
> weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
> at
> weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
> at
> weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3892)
> at
> weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2766)
> at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
> at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)
>
> i even tries with removing first "/" before context path .. but still it
> gives error Unable to find package resource [path = /webapp/style/IEEE.css,
> style = null, locale = null]
>
> here i don't know what is the class  scope i need to pass , i just pass any
> class i.e XYZ.class
>
> thanks in advance..
>
> marsh
>
>
> igor.vaynberg wrote:
> >
> > the best way is to build the path manually by doing
> > "/"+contextpath+"/style/abc.css" you can get the contextpath from the
> > httpservletrequest object
> > ((WebRequest)getRequest()).getHttpServletRequest().getContextPath()
> >
> > -Igor
> >
> >
> >
> >
> > On 10/17/06, wicketmarsh <[EMAIL PROTECTED]> wrote:
> >>
> >>
> >> Hi everybody,
> >>
> >> I have my .css file in web context directory i.e webapp/style/abc.css
> >> since
> >> this .css is used by plain html and wicket , i can't place it in my
> >> wicket
> >> webpages directory.
> >> I want to access this .css file in my webpage. i know , we can access is
> >> using HeaderContributor.forCss(Class scope,String path) but it seems it
> >> alway need class for scope. so it expect .css in relative  to scope
> >> Class.
> >> how do I access .css from my application context i.e.webapp/style/abc.css
> >>
> >> thanks in advance,
> >>
> >> marsh
> >> --
> >> View this message in context:
> >> http://www.nabble.com/Programatically-access-to-CSS-tf2463427.html#a6867612
> >> Sent from the Wicket - User mailing list archive at Nabble.com.
> >>
> >>
> >> -
> >> Using Tomcat but need to do more? Need to support web services, security?
> >> Get stuff done quickly with pre-integrated technology to make your job
> >> easier
> >> Download IBM WebSphere Application Server v.1.0.1 based on Apache
> >> Geronimo
> >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> >> ___
> >> Wicket-user mailing list
> >> Wicket-user@lists.sourceforge.net
> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
> >>
> >
> > -
> > Using Tomcat but need to do more? Need to support web services, security?
> > Get stuff done quickly with pre-integrated technology to make your job
> > easier
> > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.

Re: [Wicket-user] missing commons-logging dependency in wicket-extensions 2.

2006-10-18 Thread Gwyn Evans
On 18/10/06, karthik Guru <[EMAIL PROTECTED]> wrote:
> and ofcourse they go away the moment I add the commons-logging dependency.
> Any idea why it doesn't work for me?

  Nothing specific - Things to check would be the wicket pom involved,
e.g. the wicket\wicket\2.0-SNAPSHOT\wicket-2.0-SNAPSHOT.pom file in
your local repo, to see if the dependency's there?

  You should be able to get an idea of what dependencies are being
looked for where via "mvn -X ".  Maybe "mvn -U ..." would help,
but I don't know.

/Gwyn
-- 
Download Wicket 1.2.2 now! - http://wicketframework.org

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] wicket encoding problem, does wicket will be up to mark????

2006-10-18 Thread Johan Compagner
aha.. but not always.. we seem to have a bug somewhere. will investigate.johanOn 10/18/06, Erik van Oosten <
[EMAIL PROTECTED]> wrote:Please read this:
http://cwiki.apache.org/WW/how-to-support-utf-8-uriencoding-with-tomcat.htmlRegards,Erik.ketan gote schreef:> hello> friends> does wicket support UTF-8 setting by default,
> but it doesn't work in oracle application server .> and also on tomcat?>> WebResponse webres = (WebResponse )getResponse();> HttpServletResponse hsr = webres.getServletHttpResponse();> 
Systsem.out.println("**"+hsr> .getCharacterEncoding())> this prints ISO-8859-1> can this be set to UTF-8 default.> so wicket becoming big issue>> regard's
>> ketan d.gote> >> -> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo> 
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642> >> ___
> Wicket-user mailing list> Wicket-user@lists.sourceforge.net> https://lists.sourceforge.net/lists/listinfo/wicket-user
>--Erik van Oostenhttp://www.day-to-day-stuff.blogspot.com/-
Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing listWicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Programatically access to CSS

2006-10-18 Thread Eelco Hillenius
> I have my .css file in web context directory i.e webapp/style/abc.css since
> this .css is used by plain html and wicket , i can't place it in my wicket
> webpages directory.
> I want to access this .css file in my webpage. i know , we can access is
> using HeaderContributor.forCss(Class scope,String path) but it seems it
> alway need class for scope. so it expect .css in relative  to scope Class.
> how do I access .css from my application context i.e.webapp/style/abc.css

HeaderContributor.forCss("style/abc.css") should do the trick (don't
put a slash in front though, as that'll make it absolute).

Eelco

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] wicket encoding problem, does wicket will be up to mark????

2006-10-18 Thread Johan Compagner
If i test this (on tomcat) for example in the RequestCycle.detach() method the result is: UTF-8johanOn 10/18/06, ketan gote <
[EMAIL PROTECTED]> wrote:hello
friends
does wicket support UTF-8 setting by default,
but it doesn't work in oracle application server .
and also on tomcat?
WebResponse webres = (WebResponse )getResponse();


HttpServletResponse hsr = webres.getServletHttpResponse();
Systsem.out.println("**"+hsr
.getCharacterEncoding())> this prints 
ISO-8859-1can this be set to UTF-8 default.so wicket becoming big issueregard'sketan d.gote

-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Table question

2006-10-18 Thread Manuel Alejandro de Brito Fontes
Hi, Im trying to  create a table (AjaxFallbackDefaultDataTable) with a column that display a modal window that permit modify the row content. That works perfect, modify the data and the table updates the table content.My problem is that the column in question display a text "cell" and i want to display an image. I don't find any example of this, so i try to do it. So extend the AjaxLink and add an Image instance, but the cell only contains a MarkupFragment [, , [, [cell], ], , ]obviously the html that i create in the component that extends AjaxLink is useless.Sorry if I'm complicating the things, I'm a newbie :)Thanks in advice.PS: Sorry for my bad english too.-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Programatically access to CSS

2006-10-18 Thread wicketmarsh

Hi tried this 
HeaderContributor.forCss(xyz.class,
"/"+((WebRequest)getRequest()).getHttpServletRequest().getContextPath()
+"/style/abc.css")

where xyz.class is my webpage in com.ma.itg.test.app directory, 
i am getting error 
wicket.WicketRuntimeException: Unable to find package resource [path =
//webapp/style/IEEE.css, style = null, locale = null]
at
wicket.markup.html.PackageResource.getResourceStream(PackageResource.java:520)
at
wicket.protocol.http.WicketServlet.getLastModified(WicketServlet.java:395)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:736)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:1072)
at
weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:465)
at
weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:348)
at
weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6981)
at
weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
at
weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
at
weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3892)
at
weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2766)
at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:224)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:183)

i even tries with removing first "/" before context path .. but still it
gives error Unable to find package resource [path = /webapp/style/IEEE.css,
style = null, locale = null]

here i don't know what is the class  scope i need to pass , i just pass any
class i.e XYZ.class

thanks in advance..

marsh


igor.vaynberg wrote:
> 
> the best way is to build the path manually by doing
> "/"+contextpath+"/style/abc.css" you can get the contextpath from the
> httpservletrequest object
> ((WebRequest)getRequest()).getHttpServletRequest().getContextPath()
> 
> -Igor
> 
> 
> 
> 
> On 10/17/06, wicketmarsh <[EMAIL PROTECTED]> wrote:
>>
>>
>> Hi everybody,
>>
>> I have my .css file in web context directory i.e webapp/style/abc.css
>> since
>> this .css is used by plain html and wicket , i can't place it in my
>> wicket
>> webpages directory.
>> I want to access this .css file in my webpage. i know , we can access is
>> using HeaderContributor.forCss(Class scope,String path) but it seems it
>> alway need class for scope. so it expect .css in relative  to scope
>> Class.
>> how do I access .css from my application context i.e.webapp/style/abc.css
>>
>> thanks in advance,
>>
>> marsh
>> --
>> View this message in context:
>> http://www.nabble.com/Programatically-access-to-CSS-tf2463427.html#a6867612
>> Sent from the Wicket - User mailing list archive at Nabble.com.
>>
>>
>> -
>> Using Tomcat but need to do more? Need to support web services, security?
>> Get stuff done quickly with pre-integrated technology to make your job
>> easier
>> Download IBM WebSphere Application Server v.1.0.1 based on Apache
>> Geronimo
>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>> ___
>> Wicket-user mailing list
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
> 
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Programatically-access-to-CSS-tf2463427.html#a6878003
Sent from the Wicket - User mailing list archive at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] missing commons-logging dependency in wicket-extensions 2.

2006-10-18 Thread karthik Guru
Uhhm, yes you are right. I'm not sure why its not building on my machine without the commons-logging dependency.I just do>mvn -Dmaven.test.skip=true installand I have maven 2 installed on my machine.
D:\software\java\Wicket\svn-latest\wicket\trunk\wicket-extensions>mvn -Dmaven.test.skip=true install[INFO] Scanning for projects...[INFO] 
[INFO] Building Wicket Extensions[INFO]    task-segment: [install][INFO] [INFO] [resources:resources][INFO] Using default encoding to copy filtered resources.
[INFO] [compiler:compile]Compiling 147 source files to D:\software\java\Wicket\svn-latest\wicket\trunk\wicket-extensions\target\classes[INFO] 
[ERROR] BUILD FAILURE[INFO] [INFO] Compilation failureD:\software\java\Wicket\svn-latest\wicket\trunk\wicket-extensions\src\java\wicket\extensions\markup\
html\datepicker\DatePickerSettings.java:[28,34] package org.apache.commons.logging does not existD:\software\java\Wicket\svn-latest\wicket\trunk\wicket-extensions\src\java\wicket\extensions\markup\html\datepicker\DatePickerSettings.java:[29,34] package 
org.apache.commons.logging does not existD:\software\java\Wicket\svn-latest\wicket\trunk\wicket-extensions\src\java\wicket\extensions\markup\html\datepicker\DatePickerSettings.java:[48,29] cannot find symbol
symbol  : class Loglocation: class wicket.extensions.markup.html.datepicker.DatePickerSettingsD:\software\java\Wicket\svn-latest\wicket\trunk\wicket-extensions\src\java\wicket\extensions\util\encoding\CharSetUtil.java:[27,34] package 
org.apache.commons.logging does not existD:\software\java\Wicket\svn-latest\wicket\trunk\wicket-extensions\src\java\wicket\extensions\util\encoding\CharSetUtil.java:[44,29] cannot find symbolsymbol  : class Log
location: class wicket.extensions.util.encoding.CharSetUtilD:\software\java\Wicket\svn-latest\wicket\trunk\wicket-extensions\src\java\wicket\extensions\markup\html\image\resource\ThumbnailImageResource.java:[29,34] package 
org.apache.commons.logging does notexistD:\software\java\Wicket\svn-latest\wicket\trunk\wicket-extensions\src\java\wicket\extensions\markup\html\image\resource\ThumbnailImageResource.java:[50,29] cannot find symbol
symbol  : class Loglocation: class wicket.extensions.markup.html.image.resource.ThumbnailImageResourceD:\software\java\Wicket\svn-latest\wicket\trunk\wicket-extensions\src\java\wicket\extensions\markup\
html\datepicker\DatePickerSettings.java:[48,39] cannot find symbolsymbol  : variable LogFactorylocation: class wicket.extensions.markup.html.datepicker.DatePickerSettingsD:\software\java\Wicket\svn-latest\wicket\trunk\wicket-extensions\src\java\wicket\extensions\util\en
coding\CharSetUtil.java:[44,39] cannot find symbolsymbol  : variable LogFactorylocation: class wicket.extensions.util.encoding.CharSetUtilD:\software\java\Wicket\svn-latest\wicket\trunk\wicket-extensions\src\java\wicket\extensions\markup\
html\image\resource\ThumbnailImageResource.java:[50,39] cannot find symbolsymbol  : variable LogFactorylocation: class wicket.extensions.markup.html.image.resource.ThumbnailImageResource[INFO] 
[INFO] For more information, run Maven with the -e switch[INFO] [INFO] Total time: 6 seconds[INFO] Finished at: Wed Oct 18 20:11:42 IST 2006
[INFO] Final Memory: 5M/21M[INFO] and ofcourse they go away the moment I add the commons-logging dependency. Any idea why it doesn't work for me?
On 10/18/06, Gwyn Evans <[EMAIL PROTECTED]> wrote:
On 18/10/06, karthik Guru <[EMAIL PROTECTED]> wrote:> While building wicket-extensions 2.0, i didn't notice the commons-logging> dependency in pom.xml
. May be you can verify if that is indeed the case in> the trunk and update it.>> > commons-logging> commons-logging
> 1.0.4> jar> compile>  >> thanks.> -- karthik --
How are you building it, as isn't wicket-extensions dependent onwicket, which should hava a dependency on clogging, so shouldn't thatbe included automagically?Certainly the IDEA plugin seems to think so when generating the module
file, for example.../Gwyn--Download Wicket 1.2.2 now! - http://wicketframework.org-
Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642__

[Wicket-user] Add an event to DataTable.setCurrentPage(int)?

2006-10-18 Thread Renaut, Jonathan E CTR DISA GIG-CS
Title: Add an event to DataTable.setCurrentPage(int)?






I'd like to fire an event every time the page on my datatable changes, but I can't overwrite setCurrentPage because it's final.  Is there a way to do this without changing the .jar file?


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Wicket-user Digest, Vol 5, Issue 173

2006-10-18 Thread Juergen Donnerstag
And of course make sure that your browser does not request the
information in ISO-8859-1 formatting.

Juergen

On 10/18/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote:
> UTF-8 is default for Wicket. The issue is usually with Tomcat and
> Oracle settings. Please search the mail archive for information on how
> to set-up tomcat properly. For Oracle you might have to read there
> docs.
>
> Juergen
>
> On 10/18/06, ketan gote <[EMAIL PROTECTED]> wrote:
> > hello
> > friends
> >
> > does wicket support UTF-8 setting by default,
> > but it doesn't work in oracle application server .
> > and also on tomcat?
> >
> > WebResponse webres = (WebResponse )getResponse();
> > HttpServletResponse hsr = webres.getServletHttpResponse();
> > Systsem.out.println("**"+hsr.getCharacterEncoding())>
> > this prints ISO-8859-1
> > can this be set to UTF-8 default.
> > so wicket becoming big issue
> >
> > regard's
> >
> > ketan d.gote
> >
> > -
> > Using Tomcat but need to do more? Need to support web services, security?
> > Get stuff done quickly with pre-integrated technology to make your job
> > easier
> > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> >
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
> >
> >
>

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Wicket-user Digest, Vol 5, Issue 173

2006-10-18 Thread Juergen Donnerstag
UTF-8 is default for Wicket. The issue is usually with Tomcat and
Oracle settings. Please search the mail archive for information on how
to set-up tomcat properly. For Oracle you might have to read there
docs.

Juergen

On 10/18/06, ketan gote <[EMAIL PROTECTED]> wrote:
> hello
> friends
>
> does wicket support UTF-8 setting by default,
> but it doesn't work in oracle application server .
> and also on tomcat?
>
> WebResponse webres = (WebResponse )getResponse();
> HttpServletResponse hsr = webres.getServletHttpResponse();
> Systsem.out.println("**"+hsr.getCharacterEncoding())>
> this prints ISO-8859-1
> can this be set to UTF-8 default.
> so wicket becoming big issue
>
> regard's
>
> ketan d.gote
>
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>
>

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] wicket encoding problem, does wicket will be up to mark????

2006-10-18 Thread Erik van Oosten
Please read this:
http://cwiki.apache.org/WW/how-to-support-utf-8-uriencoding-with-tomcat.html

Regards,
Erik.

ketan gote schreef:
> hello
> friends
> does wicket support UTF-8 setting by default,
> but it doesn't work in oracle application server .
> and also on tomcat?
>
> WebResponse webres = (WebResponse )getResponse();
> HttpServletResponse hsr = webres.getServletHttpResponse();
> Systsem.out.println("**"+hsr
> .getCharacterEncoding())> this prints ISO-8859-1
> can this be set to UTF-8 default.
> so wicket becoming big issue
>
> regard's
>
> ketan d.gote
> 
>
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> 
>
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>   

-- 
Erik van Oosten
http://www.day-to-day-stuff.blogspot.com/


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Safari yes, Firefox no

2006-10-18 Thread Michael Welter
Correction.  The last two  tags display the *Quicktime* icon 
rather than the audio controls.



Michael Welter wrote:
> No, refreshing the page in Firefox yields the Page Expired message.
> 
> The tabbed panels don't work at all with IE.  IE has the same Page 
> Expired problem.
> 
> Everything works well in Safari.
> 
> The page includes several  tags.  The 
> first two are properly painted with the audio controls (which work), but 
> the last two are improperly painted with the circular MS Media Player icon.
> 
> The development platform is Mac OS/X.
> 
> Thanks for your help.
> 
> 
> Iman Rahmatizadeh wrote:
>> Can you refresh the page ? Does it bring up the Page Expired again ?
>> Try it with ie. I guess that shouldn't have any problems as well.
>>
>> On 10/18/06, Michael Welter <[EMAIL PROTECTED]> wrote:
>>> This is a very strange problem.  In Firefox, the page display is more or
>>> less normal.  However, if I display the source, I see the "Page Expired"
>>> source.  Clicking on any of the links on the page takes me to the "Page
>>> Expired" page.
>>>
>>> Using Safari, I don't have this problem.
>>>
>>> Has anyone seen this before?
>>>
>>> Thanks,
>>>
>>> -
>>> Using Tomcat but need to do more? Need to support web services, security?
>>> Get stuff done quickly with pre-integrated technology to make your job 
>>> easier
>>> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
>>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>>> ___
>>> Wicket-user mailing list
>>> Wicket-user@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>>
>> -
>> Using Tomcat but need to do more? Need to support web services, security?
>> Get stuff done quickly with pre-integrated technology to make your job easier
>> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>> ___
>> Wicket-user mailing list
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
>>
> 

-- 
Michael Welter
Telecom Matters Corp.
Denver, Colorado US
+1.303.414.4980
[EMAIL PROTECTED]
www.TelecomMatters.net

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] wicket encoding problem, does wicket will be up to mark????

2006-10-18 Thread ketan gote
hello
friends
does wicket support UTF-8 setting by default,
but it doesn't work in oracle application server .
and also on tomcat?
WebResponse webres = (WebResponse )getResponse();


HttpServletResponse hsr = webres.getServletHttpResponse();
Systsem.out.println("**"+hsr
.getCharacterEncoding())> this prints 
ISO-8859-1can this be set to UTF-8 default.so wicket becoming big issueregard'sketan d.gote
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Wicket-user Digest, Vol 5, Issue 173

2006-10-18 Thread ketan gote
hellofriendsdoes wicket support UTF-8 setting by default,but it doesn't work in oracle application server .and also on tomcat?
WebResponse webres = (WebResponse )getResponse();
HttpServletResponse hsr = webres.getServletHttpResponse();Systsem.out.println("**"+hsr.getCharacterEncoding())> this prints 
ISO-8859-1can this be set to UTF-8 default.so wicket becoming big issueregard'sketan d.gote
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Ajax refresh feedback

2006-10-18 Thread Marc-Andre Houle
Thanks again, it was exactly what I was searching for.  Just for the records, for people like me that like to search in historic and found good answer, I will just tell to place the script outside of the  tag.  If putting it into the head, it 
wicket-ajax.js will be loaded after your script and it will fail.  But elsewhere, everything works as expected.Thansk again.MarcOn 10/17/06, 
Igor Vaynberg <[EMAIL PROTECTED]> wrote:
there is really nothing to itsomewhere in body haveLOADING...and before your body tag have

Re: [Wicket-user] Submit button behave differently after ajax request

2006-10-18 Thread drakonis

Hi Matej,
Well i have no problem with the ajax request. It is processed and the two
textfields are being displayed.
I I would not want to send the form so i cannot use AjaxSubmitButton. My
problem was that the default submit button no longer executes the onSubmit.
I will try AjaxLink as a workaround instead of a button, but i am just
curios, if it was normal.


Matej Knopp wrote:
> 
> The behavior wont work on button. Why don't you use AjaxSubmitButton 
> instead?
> 
> -Matej
> 
> drakonis wrote:
>> Hi, i have a curious problem. 
>> I have a form with a submit button. If i click the submit button the
>> onSubmit method of the button is called so is the onSubmit method of the
>> form.
>> 
>> And also inside the page i have a button to which i added
>> 
>> final Button ajaxButton = new Button("ajaxButton");
>> ajaxButton.add(new AjaxFormComponentUpdatingBehavior("onclick") {
>> .
>> }. 
>> 
>> Inside the method i have code that replaces an empty panel with a panel
>> that
>> has 2 textfields
>> 
>> add(new TextField("username"));
>> add(new PasswordTextField("password"));
>> 
>> The weird problem is that after i click the ajax button and the 2
>> textfields
>> appear, clicking on the form's submit button does not call the onSubmit
>> on
>> neither the button or the form.
>> So when i do not click the ajax producing button and proced directly to
>> the
>> form's submit the onSubmit is executed.
>> If i click the ajaxButton and after that the submit button, the onSubmit
>> is
>> not called.
>> 
>> Is this normal?
>> I'm using Wicket 1.2.2
>> 
>> Thank you.
> 
> 
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job
> easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Submit-button-behave-differently-after-ajax-request-tf2466458.html#a6876847
Sent from the Wicket - User mailing list archive at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Submit button behave differently after ajax request

2006-10-18 Thread Matej Knopp
The behavior wont work on button. Why don't you use AjaxSubmitButton 
instead?

-Matej

drakonis wrote:
> Hi, i have a curious problem. 
> I have a form with a submit button. If i click the submit button the
> onSubmit method of the button is called so is the onSubmit method of the
> form.
> 
> And also inside the page i have a button to which i added
> 
> final Button ajaxButton = new Button("ajaxButton");
> ajaxButton.add(new AjaxFormComponentUpdatingBehavior("onclick") {
> .
> }. 
> 
> Inside the method i have code that replaces an empty panel with a panel that
> has 2 textfields
> 
> add(new TextField("username"));
> add(new PasswordTextField("password"));
> 
> The weird problem is that after i click the ajax button and the 2 textfields
> appear, clicking on the form's submit button does not call the onSubmit on
> neither the button or the form.
> So when i do not click the ajax producing button and proced directly to the
> form's submit the onSubmit is executed.
> If i click the ajaxButton and after that the submit button, the onSubmit is
> not called.
> 
> Is this normal?
> I'm using Wicket 1.2.2
> 
> Thank you.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Submit button behave differently after ajax request

2006-10-18 Thread drakonis

Hi, i have a curious problem. 
I have a form with a submit button. If i click the submit button the
onSubmit method of the button is called so is the onSubmit method of the
form.

And also inside the page i have a button to which i added

final Button ajaxButton = new Button("ajaxButton");
ajaxButton.add(new AjaxFormComponentUpdatingBehavior("onclick") {
.
}. 

Inside the method i have code that replaces an empty panel with a panel that
has 2 textfields

add(new TextField("username"));
add(new PasswordTextField("password"));

The weird problem is that after i click the ajax button and the 2 textfields
appear, clicking on the form's submit button does not call the onSubmit on
neither the button or the form.
So when i do not click the ajax producing button and proced directly to the
form's submit the onSubmit is executed.
If i click the ajaxButton and after that the submit button, the onSubmit is
not called.

Is this normal?
I'm using Wicket 1.2.2

Thank you.
-- 
View this message in context: 
http://www.nabble.com/Submit-button-behave-differently-after-ajax-request-tf2466458.html#a6875759
Sent from the Wicket - User mailing list archive at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] narrow disintegrate

2006-10-18 Thread Mathilda Cummings





This isn't your average medieval knights and horses story - for a start,
due to a shortage in the kingdom, all the horses have been replaced by
servants clopping coconuts together! Shrek and Princess Fiona return
from their honeymoon to find an invitation to visit Fiona's parents, the
King and Queen of the Kingdom of Far, Far Away. Featuring the vocal
talents of Renee Zellwegger, Robert DeNiro, Martin Scorcese, Angelina
Jolie, Doug E. Pamela comes to the conclusion that she let him go when
she turned down Robert Dickson thirteen years ago.
When a series of events lead to a monumental misunderstanding, Oscar and
Lenny's paths meet. Sure, she's traveled the world, has an award-winning
career, and owns real estate. Now Oscar has a false reputation to
uphold, and Lenny wants to escape from his overbearing family
responsibilities. Together they come up with a scheme to satisfy both
their needs. Now the King must enlist the help of a powerful Fairy
Godmother, the handsome Prince Charming and that famed ogre killer Puss
In Boots to put right his version of "happily ever after.
Shrek and Princess Fiona return from their honeymoon to find an
invitation to visit Fiona's parents, the King and Queen of the Kingdom
of Far, Far Away. Now the King must enlist the help of a powerful Fairy
Godmother, the handsome Prince Charming and that famed ogre killer Puss
In Boots to put right his version of "happily ever after. While
accompanying the drug lord out of Los Angeles into the hands of the
Feds, the S. If not, be prepared for a lot of mindless vulgarity in a
very ordinary flick which, to date, hasn't been reviewed by any credible
critics nor received any awards. Sure, she's traveled the world, has an
award-winning career, and owns real estate. Now, they're coming back to
see if their love was true. At the same time, Obi-Wan's investigations
lead him to a water planet where he discovers the creation of an army
unlike anything he has ever seen before.
Fans of Aardman Animations should appreciate the detailed animation and
clever humor.
Both Oscar and Lenny have one fundamental lesson to learn.
At the same time, Obi-Wan's investigations lead him to a water planet
where he discovers the creation of an army unlike anything he has ever
seen before.
Amused by his fledgling captors, the seasoned mobster agrees to help
them.
Based on the novel The Two Towers, the second in The Lord of the Rings
trilogy by J. Once a job is complete, his memory is erased so as not to
divulge any company secrets. Rather than kill her, he takes Cassandra
hostage, deep into the desolate Valley of the Dead, where he rallies his
allies and prepares them for a final confrontation with Memnon.
Pop singer Robbie Williams narrates the story, and Mark Knopfler
provides the music. He dreams of being a "Somebody" and living at the
top of the reef. While accompanying the drug lord out of Los Angeles
into the hands of the Feds, the S.
The new adventure is set against a backdrop of revolution and greed.
They came in search of the American Dream. Faced with a choice between
losing the one he loves or giving up his soul to gain the power to save
her, Anakin will fall prey to the seductive temptations of the dark side
of the Force. Based on Robert Louis Stevenson's classic adventure story,
Treasure Island. Amused by his fledgling captors, the seasoned mobster
agrees to help them. The war will end tonight, with Neo's destiny and
the fate of two civilizations inexorably tied to the outcome of his
cataclysmic confrontation with Smith. Picard and his crew must risk
everything to prevent this sinister villain from destroying Earth.
Canadian Connection: Actors Keanu Reeves and Carrie-Anne Moss.
but not before he cautions them that the guilty party might be right
under their noses.
If you're a Ronnie fan, you'll probably like this flick.
Doug, and Ziggy Marley. You can bet HBO made it with your dollar in
mind. In exchange for a date with Victor's younger sister, Vicky, Carlos
will help Victor win Judy's affections.



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] missing commons-logging dependency in wicket-extensions 2.

2006-10-18 Thread Gwyn Evans
On 18/10/06, karthik Guru <[EMAIL PROTECTED]> wrote:
> While building wicket-extensions 2.0, i didn't notice the commons-logging
> dependency in pom.xml. May be you can verify if that is indeed the case in
> the trunk and update it.
>
> 
> commons-logging
> commons-logging
> 1.0.4
> jar
> compile
>  
>
> thanks.
> -- karthik --

How are you building it, as isn't wicket-extensions dependent on
wicket, which should hava a dependency on clogging, so shouldn't that
be included automagically?

Certainly the IDEA plugin seems to think so when generating the module
file, for example...

/Gwyn
-- 
Download Wicket 1.2.2 now! - http://wicketframework.org

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] missing commons-logging dependency in wicket-extensions 2.

2006-10-18 Thread karthik Guru
While building wicket-extensions 2.0, i didn't notice the commons-logging dependency in pom.xml. May be you can verify if that is indeed the case in the trunk and update it.            commons-logging
            commons-logging            1.0.4            jar            compile 
thanks.-- karthik -- 

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] WIKI move

2006-10-18 Thread Gwyn Evans
As part of the move to Apache, the Wicket WIKI has moved to a new home
on the Apache Confluence site, and can now be found at:

   http://cwiki.apache.org/WICKET/

Notes on the move are at http://cwiki.apache.org/WICKET/wiki-move.html

Many of the pages have been converted, but a number do remain!

The existing wiki will remain online for the foreseeable future (I
only renewed the hosting a month or so back :-)) but will be set to
read only.

There bulk of the information's there, but both the way that Apache
hosts the pages, together with the way there's been (and continues to
be) some reorganisation such that it's not just a simple host-name
substitution.

e.g.
Old: http://www.wicket-wiki.org.uk/wiki/index.php/Documentation_Index
New: http://cwiki.apache.org/WICKET/reference-library.html

Old: http://www.wicket-wiki.org.uk/wiki/index.php/Reference_library
New: http://cwiki.apache.org/WICKET/reference-library.html

In the same manner as with the old WIKI, editing will require a user
to be signed-in, but again in the same manner as with the old wiki,
accounts can be created as required.

-- 
Download Wicket 1.2.2 now! - http://wicketframework.org

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Ajax refresh feedback

2006-10-18 Thread Dipu



fantastic , thats really cool !!!
 
Cheers 
Dipu 

  - Original Message - 
  From: 
  Igor 
  Vaynberg 
  To: wicket-user@lists.sourceforge.net 
  
  Sent: Tuesday, October 17, 2006 7:45 
  PM
  Subject: Re: [Wicket-user] Ajax refresh 
  feedback
  there is really nothing to itsomewhere in body 
  haveLOADING...and before your body 
  tag have

Re: [Wicket-user] Safari yes, Firefox no

2006-10-18 Thread Michael Welter
No, refreshing the page in Firefox yields the Page Expired message.

The tabbed panels don't work at all with IE.  IE has the same Page 
Expired problem.

Everything works well in Safari.

The page includes several  tags.  The 
first two are properly painted with the audio controls (which work), but 
the last two are improperly painted with the circular MS Media Player icon.

The development platform is Mac OS/X.

Thanks for your help.


Iman Rahmatizadeh wrote:
> Can you refresh the page ? Does it bring up the Page Expired again ?
> Try it with ie. I guess that shouldn't have any problems as well.
> 
> On 10/18/06, Michael Welter <[EMAIL PROTECTED]> wrote:
>> This is a very strange problem.  In Firefox, the page display is more or
>> less normal.  However, if I display the source, I see the "Page Expired"
>> source.  Clicking on any of the links on the page takes me to the "Page
>> Expired" page.
>>
>> Using Safari, I don't have this problem.
>>
>> Has anyone seen this before?
>>
>> Thanks,
>>
>> -
>> Using Tomcat but need to do more? Need to support web services, security?
>> Get stuff done quickly with pre-integrated technology to make your job easier
>> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
>> ___
>> Wicket-user mailing list
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
> 
> -
> Using Tomcat but need to do more? Need to support web services, security?
> Get stuff done quickly with pre-integrated technology to make your job easier
> Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> 

-- 
Michael Welter
Telecom Matters Corp.
Denver, Colorado US
+1.303.414.4980
[EMAIL PROTECTED]
www.TelecomMatters.net

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user