Re: [Wicket-user] Page expired problem

2006-07-08 Thread Iman Rahmatizadeh
Hmmm, I remember having such problems before. The problem was with firefox generating invalid requests because of a bad script in my page. Look at (http://www.wicket-wiki.org.uk/wiki/index.php/Best_Practices_and_Gotchas) to read about it. However, what we can do here is see what exactly is

Re: [Wicket-user] I require Ajax TextArea

2006-07-08 Thread Imran M Yousuf
Dear EelcoThanks once again for enlightening me. I would still apraise a comment on my method. Thanks in advance.Imran 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

Re: [Wicket-user] Loading ...

2006-07-08 Thread Paolo Di Tommaso
So I will have only to define this two _javascript_ functions in my page to show and hide my notification message or whatever I want .. clean and simple. Great!Thank you.-- Paolo On 7/8/06, Igor Vaynberg [EMAIL PROTECTED] wrote: ok the patch is in so feel free to play around with it if you

[Wicket-user] Any method of using PagingNavigation ....

2006-07-08 Thread [EMAIL PROTECTED] Imam
Hello users,I wanted to know if wicket has support for using a component similar to PagingNavigation to tell it to selectively bring the items it will view in a Page depending on the page link clicked.My actual problem is the list (generated froma database) i will feed to the ListView component

[Wicket-user] Sending data back from popup page

2006-07-08 Thread michal petras
On my page i have a link with popup settings that opens a popup dialog page. In the dialog page user can make some selections and than close the dialog. i would like to refresh (with AJAX) a part of the base page according to the data received from the dialog without reloading the whole page. How

Re: [Wicket-user] Any method of using PagingNavigation ....

2006-07-08 Thread Matej Knopp
Look at DataView from wicket-extensions. -Matej [EMAIL PROTECTED] Imam wrote: Hello users, I wanted to know if wicket has support for using a component similar to PagingNavigation to tell it to selectively bring the items it will view in a Page depending on the page link clicked. My

Re: [Wicket-user] Loading ...

2006-07-08 Thread Igor Vaynberg
yep, thats the idea :)-IgorOn 7/8/06, Paolo Di Tommaso [EMAIL PROTECTED] wrote: So I will have only to define this two _javascript_ functions in my page to show and hide my notification message or whatever I want .. clean and simple. Great! Thank you.-- Paolo On 7/8/06, Igor Vaynberg [EMAIL

Re: [Wicket-user] Sending data back from popup page

2006-07-08 Thread Igor Vaynberg
you can try something like this --pass the ajax url you want to execute to the popupthen when the popup is done it can call window.opener.wicketAjaxGet(url+appended_params)-Igor On 7/8/06, michal petras [EMAIL PROTECTED] wrote: On my page i have a link with popup settings that opens a popup dialog

Re: [Wicket-user] Any method of using PagingNavigation ....

2006-07-08 Thread Igor Vaynberg
there is also DataTable if you want to show tabular data, both dataview and datatable use IDataProvider which looks like thisIDataProvider { int size(); iterator iterator(int first, int count); } == looks familiar? :) -IgorOn 7/8/06, Matej Knopp [EMAIL PROTECTED] wrote: Look at DataView from

Re: [Wicket-user] Sending data back from popup page

2006-07-08 Thread michal petras
Well, yes. Like this it's working but i thoght that maybe there is more elegant way of passing the data through Java. -- View this message in context: http://www.nabble.com/Sending-data-back-from-popup-page-tf1910863.html#a5232501 Sent from the Wicket - User forum at Nabble.com. Using Tomcat

Re: [Wicket-user] Sending data back from popup page

2006-07-08 Thread Igor Vaynberg
not really, popup windows are a _javascript_ beast so if you want to trigger something on another page you have to do it through _javascript_-IgorOn 7/8/06, michal petras [EMAIL PROTECTED] wrote: Well, yes. Like this it's working but i thoght that maybe there is moreelegant way of passing the

[Wicket-user] How PageableListView retrieves data from a list

2006-07-08 Thread Imran M Yousuf
Dear Users, I have a small question. Asking it as I wanted to know how does PageableListView fetch data from a List? Does it use List.get(int index) or does it use List.subList(int fromIndex, int toIndex) or does it use someother method? Thanks in advance. Imran

[Wicket-user] How PageableListView retrieves data from a list

2006-07-08 Thread Imran M Yousuf
Dear Users, I have a small question. Asking it as I wanted to know how does PageableListView fetch data from a List? Does it use List.get(int index) or does it use List.subList(int fromIndex, int toIndex) or does it use someother method? Thanks in advance. Imran

Re: [Wicket-user] How PageableListView retrieves data from a list

2006-07-08 Thread Igor Vaynberg
why does it matter? if you only want to retrieve parts of your dataset for display you shouldnt be using a listview, you should be using dataview/datatable/refershingview. listview and friends are only for situations where you have the entire list in memory. -IgorOn 7/8/06, Imran M Yousuf [EMAIL

Re: [Wicket-user] Any method of using PagingNavigation ....

2006-07-08 Thread [EMAIL PROTECTED] Imam
Thanx for the replyThe IDataProvider seems interesting.My problem was that i was using PagingListView that didnt use IDataProvider.Now I'll have to use DataView i guess.Currently I am implementing this feature using PageList view along with the List implementation method i mentioned earlierOn

Re: [Wicket-user] Sending data back from popup page

2006-07-08 Thread Nili Adoram
There is a very nice framework for modal dialogs: http://www.mail-archive.com/wicket-user@lists.sourceforge.net/msg09537.html Inside the onClose of the modal dialog you can add information to the popup/opener page using AJAX. michal petras wrote: On my page i have a link with popup settings