[Wicket-user] Is there function like Actions in swing?

2006-07-25 Thread Rice Yeh
Hi, Is there function like Actions in swing in the wicket?Regards,Rice
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Please explain the usage of Border in the library example

2006-07-24 Thread Rice Yeh
Hi all, I get confused with the usage of Border in the library example. In the Home.html, a non-wicket tag table is in beween span wicket:id =border and /span and a tr for a list view is in the table. My question is how this table is automatically wrapped in the box border. I know that the box border is created in the 
Home.java's super class AuthenticatedWebPage.java. Is any content between span wicket:id =border../span added to the border automatically? But from the source code, the list view is added to the home page not the box border. Is not a borded content should be added to the border? Anyone can explain this to me?
Regards,Rice
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Please explain the usage of Border in the library example

2006-07-24 Thread Rice Yeh
No.On 7/24/06, Igor Vaynberg [EMAIL PROTECTED] wrote:
is the homepage's add() method overridden?-IgorOn 7/24/06, Rice Yeh 
[EMAIL PROTECTED] wrote:

Hi all, I get confused with the usage of Border in the library example. In the 
Home.html, a non-wicket tag table is in beween span wicket:id =border and /span and a tr for a list view is in the table. My question is how this table is automatically wrapped in the box border. I know that the box border is created in the 
Home.java's super class AuthenticatedWebPage.java. Is any content between span wicket:id =border../span added to the border automatically? But from the source code, the list view is added to the home page not the box border. Is not a borded content should be added to the border? Anyone can explain this to me?
Regards,Rice

-Take Surveys. Earn Cash. Influence the Future of ITJoin SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash

http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___Wicket-user mailing list

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


-Take Surveys. Earn Cash. Influence the Future of ITJoin SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] wicket.markup.html.tree.Tree is not suitable for very big tree

2006-07-24 Thread Rice Yeh
Sounds great!On 7/24/06, Matej Knopp [EMAIL PROTECTED] wrote:
I've just finished new (ajax based) tree (version for wicket 2.0 is insvn (/svnroot/wicket/trunk/wicket-sandbox/users/matej_k/tree) )It's about to be ported to wicket 1.2 and it will likely be a part ofwicket-extensions. It might help you because it works with TreeNode and
not DefaultMutableTreeNode.-MatejRice Yeh wrote: Hi, I find that the implementation of** Wicket.markup.html.tree.Tree** is not suitable for big tree. It seems because it depends on
 javax.swing.tree.DefaultMutableTreeNode too much, which asks for populating the whole tree before rendering **Wicket.markup.html.tree.Tree. **For my case, the tree is very big but users just click on some tree paths, so I hope I can just populate the
 tree step by step. However, this seems impossible because **Wicket.markup.html.tree.Tree **renders the tree based on the 'children' field in javax.swing.tree.DefaultMutableTreeNode, which I populate in the TreeModel's method getChildCount(Object parent). But
 this way does not work. Any suggestion? Regards, Rice  -
 Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT  business topics through brief surveys -- and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV 
 ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/wicket-user-Take Surveys. Earn Cash. Influence the Future of ITJoin SourceForge.net
's Techsay panel and you'll get the chance to share youropinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] Please explain the usage of Border in the library example

2006-07-24 Thread Rice Yeh
Thank you for your explanation. It is very clear. However, the javadoc is vague for me.RiceOn 7/25/06, Igor Vaynberg 
[EMAIL PROTECTED] wrote:ah, it was overridden in the older version. now we have support for special containers that can be transparent to the component hierarchy - which means components dont have to be added directly to them but instead to their parent.
border.setTransparentResolver(true);is the magic call that tells the border to be transparentand since the markup is like thisspan wicket:id=borderwicket:child//span
the contents of extending pages will be rendered inside the border.see the javadoc on border.settransparentresolver or whatever it extends from.
-IgorOn 7/24/06, 
Rice Yeh [EMAIL PROTECTED] wrote:

No.On 7/24/06, Igor Vaynberg 

[EMAIL PROTECTED] wrote:
is the homepage's add() method overridden?-IgorOn 7/24/06, Rice Yeh 


[EMAIL PROTECTED] wrote:

Hi all, I get confused with the usage of Border in the library example. In the 
Home.html, a non-wicket tag table is in beween span wicket:id =border and /span and a tr for a list view is in the table. My question is how this table is automatically wrapped in the box border. I know that the box border is created in the 
Home.java's super class AuthenticatedWebPage.java. Is any content between span wicket:id =border../span added to the border automatically? But from the source code, the list view is added to the home page not the box border. Is not a borded content should be added to the border? Anyone can explain this to me?
Regards,Rice

-Take Surveys. Earn Cash. Influence the Future of ITJoin SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash



http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___Wicket-user mailing list



Wicket-user@lists.sourceforge.net


https://lists.sourceforge.net/lists/listinfo/wicket-user


-Take Surveys. Earn Cash. Influence the Future of ITJoin SourceForge.net's Techsay panel and you'll get the chance to share your


opinions on IT  business topics through brief surveys -- and earn cash


http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___Wicket-user mailing list


Wicket-user@lists.sourceforge.net

https://lists.sourceforge.net/lists/listinfo/wicket-user


-Take Surveys. Earn Cash. Influence the Future of ITJoin SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash

http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___Wicket-user mailing list

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


-Take Surveys. Earn Cash. Influence the Future of ITJoin SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Any example for dynamically loading very big tree?

2006-07-22 Thread Rice Yeh
Hi, Is there any example for dynamically loading very big tree? The nested example given in wicket-examples is fully populated before tree is rendered.Regards,Rice
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] wicket.markup.html.tree.Tree is not suitable for very big tree

2006-07-21 Thread Rice Yeh
Hi Dave, 
 Could you give me more detailed information on what methods in Tree I should override?

Regards,
RiceOn 7/21/06, David Leangen [EMAIL PROTECTED] wrote:
As an additional note:Actually, I needed to load the data one level lower than what wasdisplayed, otherwise the junction images (with the + signs) were notdisplayed correctly.Cheers,Dave
On Fri, 2006-07-21 at 15:50 +0900, David Leangen wrote: I also have a very big tree, and it works just fine. The secret is to load only the data that is displayed. You need to override the Tree class (it is made for this) and implement it so that
 only the required data is loaded. Good luck! On Fri, 2006-07-21 at 13:46 +0800, Rice Yeh wrote:  Hi,  I find that the implementation of 
Wicket.markup.html.tree.Tree is  not suitable for big tree. It seems because it depends on  javax.swing.tree.DefaultMutableTreeNode too much, which asks for  populating the whole tree before rendering
  Wicket.markup.html.tree.Tree. For my case, the tree is very big but  users just click on some tree paths, so I hope I can just populate the  tree step by step. However, this seems impossible because
  Wicket.markup.html.tree.Tree renders the tree based on the 'children'  field in javax.swing.tree.DefaultMutableTreeNode, which I populate in  the TreeModel's method getChildCount(Object parent). But this way does
  not work. Any suggestion?   Regards,  Rice  -  Take Surveys. Earn Cash. Influence the Future of IT
  Join SourceForge.net's Techsay panel and you'll get the chance to share your  opinions on IT  business topics through brief surveys -- and earn cash  
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV  ___ Wicket-user mailing list 
Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user -
 Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT  business topics through brief surveys -- and earn cash
 http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV ___
 Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user
-Take Surveys. Earn Cash. Influence the Future of ITJoin SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cashhttp://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] Tree not shown correctly

2006-07-20 Thread Rice Yeh
Hi, I write a tree component by extending wicket.markup.html.tree.Tree. Also I extend the javax.swing.tree.DefaultTreeModel. I have my TreeModel tested in swing. It works fine. However, my tree just show the root node in wicket. What is going wrong? I have my code attached.
Regards,Rice


Tree.java
Description: Binary data


PartyManagementPage.java
Description: Binary data


Application.java
Description: Binary data
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] wicket.markup.html.tree.Tree is not suitable for very big tree

2006-07-20 Thread Rice Yeh
Hi, I find that the implementation of Wicket.markup.html.tree.Tree is not suitable for big tree. It seems because it depends on javax.swing.tree.DefaultMutableTreeNode
 too much, which asks for populating the whole tree before rendering Wicket.markup.html.tree.Tree. For my case, the tree is very big but users just click on some tree paths, so I hope I can just populate the tree step by step. However, this seems impossible because 
Wicket.markup.html.tree.Tree renders the tree based on the 'children' field in javax.swing.tree.DefaultMutableTreeNode, which I populate in the TreeModel's method getChildCount(Object parent). But this way does not work. Any suggestion?
Regards,Rice
-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user