Re: AjaxFallbackDefaultDataTable: cell not receiving event after sorting

2013-06-09 Thread dlock
Hi Sven. I created a QuickStart as per your suggestion and in the process of writing it I discovered what the issue was. Basically the mark-up had an erroneous enclosure tag defined which was causing the problem. ** [table] * *

Re: AjaxFallbackDefaultDataTable: cell not receiving event after sorting

2013-06-08 Thread Sven Meier
Hi, when a column is sorted, the whole table will be updated on the Ajax request: That includes its HTML markup *and* the JavaScript in the header. So normally the markup ids should match. I can't think of a reason why this fails on your project. Could you create a quickstart? Sven On 06/0

Re: AjaxFallbackDefaultDataTable: cell not receiving event after sorting

2013-06-08 Thread dlock
Hi Sven. Thanks for taking a look at my question. I have been trying to debug the issue (Ajax is new to me so please be patient). It looks like the issue is more fundamental than what I first thought. I added a simple row listener like so... @Override protected Item newR

Re: AjaxFallbackDefaultDataTable: cell not receiving event after sorting

2013-06-07 Thread Sven Meier
Hi, your solution looks good to me. Check the Ajax debug window for any problems with the requests. Then put a breakpoint on your behavior's #onEvent() and check whether is is triggered. Sven On 06/07/2013 04:15 PM, dlock wrote: Hi. I have a simple abstract panel that I display as a cell

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-19 Thread Sven Meier
Hi, the classes in the following archive duplicate AjaxNavigationToolbar but use AjaxFormSubmitBehaviors instead: https://dl.dropboxusercontent.com/u/52076310/AjaxSubmitPaging.zip Usage: Form form = new Form("form"); add(form); form.add(new AjaxSubmitDefaultDataTable("table", c

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-19 Thread dhongyt
Right which is what I have but I'm having a tough time understanding how I need to override the navigator. I have done it many ways and none of them seem to work. I think I'm supposed to override this But SubmitLink wants the form to be in its constructor for it to work correctly right? And h

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-19 Thread Sven Meier
Easiest is to wrap the whole table in a form. Sven On 04/19/2013 07:34 PM, dhongyt wrote: I have been playing some more with the code and I'm now thinking that maybe I should just overrite the newNavigation function. That will allow me to override the newPagingNavigationLink function. My trou

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-19 Thread dhongyt
I have been playing some more with the code and I'm now thinking that maybe I should just overrite the newNavigation function. That will allow me to override the newPagingNavigationLink function. My troubles are that if I want to return a SubmitLink here, where would my form tags be in the mark u

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-19 Thread dhongyt
I noticed that I was using PagingNavigator instead of the PagingNavigation. Changed my code over to use PagingNavigation results in: Last cause: The component(s) below failed to render. Possible reasons could be that: 1) you have added a component in code but forgot to reference it in the markup (

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-19 Thread dhongyt
This is the markup that I have. The span "navigation" closing tag is obviously there. Am I missing something? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxFallbackDefaultDataTable-and-CheckBox-Column-tp4657998p4658118.html Sent from the Users forum mailing l

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-19 Thread Sven Meier
Check SubmitLinkPagingNavigator's markup. Sven On 04/19/2013 12:03 AM, dhongyt wrote: I think I wrapped my head on it a bit more and starting to understand what navigation is. So now I have this. I believe I need to override the PagingNavigator populateItem function but I'm trying to get a re

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-18 Thread dhongyt
I think I wrapped my head on it a bit more and starting to understand what navigation is. So now I have this. I believe I need to override the PagingNavigator populateItem function but I'm trying to get a regular population working but now I have this error: Last cause: Close tag not found for t

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-18 Thread dhongyt
So I'm trying to override the PagingNavigator by creating my own custom navigator. My issue is that for some reason I can't seem to put the page numbers on pageNumber. My error is: Unable to find component with id 'navigation' in [Form [Component id = linkForm]] Not quite sure what navigation

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-17 Thread Sven Meier
Either you have a AjaxFormComponentUpdatingBehavior on each Checkbox, so a selection is automatically synced to the server. Or you make the paging submit a containing form: http://apache-wicket.1842946.n4.nabble.com/Wicket-user-Editable-DataTable-with-Paging-td1925442.html Regards Sven On 04/

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-17 Thread dhongyt
So if I would like to store the checks on many different pages, then I would have to override the AjaxPagingNavigationBehavior function? And in that function when the page changes save the current CheckBox ArrayList into some sort of HashMap maybe? And load the page of checks depending on the page?

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-16 Thread Sven Meier
Hi, on each click, AjaxFormChoiceUpdatingBehavior sends *all* checked checkboxes to the server, overwriting the previously selected with the now selected ones. For a paging DataTable only those checkboxes from the current paging are visible, thus the selection from the previous paging is lost.

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-16 Thread dhongyt
Could you please explain the reason why we lose the CheckGroup from the previous paging? Is it because the CheckGroup is set on the first 50 and when going to the next 50 it creates a new CheckGroup therefore losing the first CheckGroup? -- View this message in context: http://apache-wicket.18

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-16 Thread Sven Meier
Sorry, you're right, you have to add the behavior to the CheckGroup. And you're right too that the CheckGroup will lose its selection from a previous paging. I'm afraid you'll have to implement your own solution with ChekBoxes and an AjaxFormComponentBehavior, managing the selected items in you

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-16 Thread dhongyt
Looks like it does save. I created an AjaxFormChoiceComponentBehavior on my CheckGroup. When I do the check on page one, go to page 2, and return the checks are still there. When I do the check on page one, go to page 2, and check off items in page 2, and return to page one check on page one are g

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-16 Thread dhongyt
I have added this to my check But now I get the error "Behavior can only be added to an instance of a FormComponent" I was looking at the javadoc and seems to me that Check is not a FormComponent, do you mean for me to add this behavior to the CheckGroup? But adding it to the CheckGroup doesn't

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-16 Thread Sven Meier
Hi, you'll have to add FormChoiceComponentUpdatingBehavior to your Check components, so selection is sent to the server immediately. Regards Sven On 04/16/2013 05:05 PM, dhongyt wrote: Thanks again Sven. I was able to implement the CheckGroup/Check functionality to the DataTable but the res

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-16 Thread dhongyt
Thanks again Sven. I was able to implement the CheckGroup/Check functionality to the DataTable but the results I am expecting isn't quite what I want. Not sure if its an issue of implementation or if it supposed to work like that. When I select the checkboxes on the first page, go to page 2, and

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-16 Thread Sven Meier
http://www.wicket-library.com/wicket-examples/compref/wicket/bookmarkable/org.apache.wicket.examples.compref.CheckGroupPage It uses a ListView instead of a DataTable, but usage of CheckGroup/Check is the same. Hope this helps Sven On 04/15/2013 10:53 PM, dhongyt wrote: Thanks Sven. For the

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-15 Thread dhongyt
Thanks Sven. For the CheckGroup/Check which wicket-example are you talking about? Are you talking about the ones on this page? http://www.wicket-library.com/wicket-examples/index.html If so then which example are you talking about on that page? -- View this message in context: http://apache-w

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-15 Thread Sven Meier
Wicket iterates all files anyway for rendering, so iterating them once again to find the selected ones will be no problem. If you want to keep selection across paging on your DataTable, you should definitely look into using CheckGroup/Check. Sven On 04/15/2013 10:32 PM, dhongyt wrote: If th

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-15 Thread dhongyt
If there are tons of files that might be listed, iterating through all those files just to see which on is select could present a time issue correct? Will CheckGroup and Check components solve this issue? Is there a way to just grab checked files instead of iterating though and seeing which one i

Re: AjaxFallbackDefaultDataTable and CheckBox Column

2013-04-15 Thread Sven Meier
Does your File object have a boolean property to store the selection in? Then you have to bind your chechbox to the property: public CheckboxPanel(String id, IModel model) { super(id, model); add(new CheckBox("check", new PropertyModel(model, "selected")); } In your

Re: AjaxFallbackDefaultDataTable

2013-04-08 Thread Vignesh Palanisamy
thanks martin... i will try it and come back to you On Mon, Apr 8, 2013 at 5:59 PM, Martin Grigorov wrote: > Check http://stackoverflow.com/questions/6677035/jquery-scroll-to-element > You will need to use some sort of selector to find the table. If it doesn't > have id then by class for exa

Re: AjaxFallbackDefaultDataTable

2013-04-08 Thread Martin Grigorov
Check http://stackoverflow.com/questions/6677035/jquery-scroll-to-element You will need to use some sort of selector to find the table. If it doesn't have id then by class for example. On Mon, Apr 8, 2013 at 12:51 PM, Vignesh Palanisamy wrote: > thanks martin, > > i try it already, my problem is

Re: AjaxFallbackDefaultDataTable

2013-04-08 Thread Vignesh Palanisamy
thanks martin, i try it already, my problem is, i had two dataTable in a same page. while i paginate focus move to the top of the page, i want top of the table. i had tried target.focusComponent(to the topToolBar) but its outputMarkId was not true. is there any way to focus to the top of the tab

Re: AjaxFallbackDefaultDataTable

2013-04-08 Thread Martin Grigorov
Hi, Try with : target.appendJavaScript("window.scrollTo(0, 0);") On Mon, Apr 8, 2013 at 5:20 AM, Vignesh Palanisamy wrote: > hi, > >I had create a CustomAjaxFallbackDefaultDataTable to add the > AjaxNavigationToolbar in bottomToolBar. > >my DataTable content is so big. while i

Re: AjaxFallbackDefaultDataTable with checkbox column

2013-01-24 Thread Ernesto Reinaldo Barreiro
Hi, On Thu, Jan 24, 2013 at 12:17 PM, Marco Di Sabatino Di Diodoro < marco.disabat...@tirasa.net> wrote: > Hi all, > > I need to implement a AjaxFallbackDefaultDataTable that allow the user to > select one or more rows by clicking on checkboxes located in a column. In > addition I must implement

Re: AjaxFallbackDefaultDataTable Refresh Data Provider

2011-12-03 Thread Martin Grigorov
Hi, Just make your data provider a bit smarter/dynamic. Currently you pass the filter data statically: new SortableIncidentDataProvider("INCIDENT_TS",myListParams). Rework it to be dynamic: new SortableIncidentDataProvider("INCIDENT_TS) { protected MyParams generateParameters() { return ex

Re: AjaxFallbackDefaultDataTable Refresh Data Provider

2011-12-03 Thread Josh Kamau
Hi Matt; Make a dynamic dataprovider as follows: public abstract class UserDataProvider extends SortableDataProvider { public UserDataProvider(){ setSort("id", SortOrder.ASCENDING); } public Iterator iterator(int start, int count) { return User.getItems(getSearchPara

Re: AjaxFallbackDefaultDataTable

2011-01-12 Thread Altuğ Bilgin Altıntaş
As Igor said, I create a new instance DataTable (with new Columns) and add form again. // users = new MyAjaxFallbackDefaultDataTable ("users", createColumnsForExcel(), dataProvider, 10); form.remove(users); form.add(users) solved. Thanks. 12 Ocak 2011 15:08

Re: AjaxFallbackDefaultDataTable

2011-01-12 Thread Alexander Morozov
You should replace you table component with another column list and when export to excel. I do not know other way to hide some columns. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxFallbackDefaultDataTable-tp3213858p3214022.html Sent from the Users forum maili

Re: AjaxFallbackDefaultDataTable

2011-01-12 Thread Altuğ Bilgin Altıntaş
martin's suggestion is right, i've made my own DataTable but still couldn't find how to remove (visible = false) some columns from datatable while exporting to excel. 2011/1/12 Ernesto Reinaldo Barreiro > The markup of AjaxFallbackDefaultDataTable comes from Data table and is: > > > > > >

Re: AjaxFallbackDefaultDataTable

2011-01-12 Thread Ernesto Reinaldo Barreiro
The markup of AjaxFallbackDefaultDataTable comes from Data table and is: [cell] maybe you can create a MyAjaxFallbackDefaultDataTable and use the markup

Re: AjaxFallbackDefaultDataTable

2011-01-12 Thread Martin Grigorov
you may need to create your own ajaxdatatable defaultdatatable is a datatable with default toolbars 2011/1/12 Altuğ Bilgin Altıntaş > Hi, > > I've questions about AjaxFallbackDefaultDataTable, here they are > > 1 - Is it possible to remove NavigationToolbar from top of this because i > want navi

Re: AjaxFallbackDefaultDataTable turn off Sorting

2010-05-30 Thread James Carman
You'll have to re-create the table, perhaps? On Sun, May 30, 2010 at 5:50 PM, wrote: > Hi All, > > I need to turn off sorting in AjaxFallbackDefaultDataTable  initially and > then  click of a Ajax Link button in need to turn  it On.  I > > Thanks in advance. > > ---

Re: AjaxFallbackDefaultDataTable Model Not Updating

2010-04-30 Thread Igor Vaynberg
On Thu, Apr 29, 2010 at 3:42 PM, Corbin, James wrote: > A co-worker of mine created an AjaxFallbackDefaultDataTable with editable > cells.  In this case they are dropdowns.  She is dynamically adding rows to > the table.  If she modifies one of the component drop down (PropertyModel) > values i

RE: AjaxFallbackDefaultDataTable Model Not Updating

2010-04-30 Thread Corbin, James
Is the solution to add AjaxFormComponentUpdatingBehavior/AjaxFormChoiceComponentUpdatingBehavior to each of the editable form components? -Original Message- From: Corbin, James [mailto:jcor...@iqnavigator.com] Sent: Thursday, April 29, 2010 4:42 PM To: users@wicket.apache.org Subject: A

Re: AjaxFallbackDefaultDataTable and delete via ModalWindow

2010-02-02 Thread Riyad Kalla
t; > Ok Riyad, what is smarter than the AjaxFallbackDefaultDataTable in your > opinion ;-) > > Andreas > > > -Original Message- > > From: Riyad Kalla [mailto:rka...@gmail.com] > > Sent: Monday, February 01, 2010 4:40 PM > > To: users@wicket.apache.org; sam.lu

RE: AjaxFallbackDefaultDataTable and delete via ModalWindow

2010-02-02 Thread Andreas Lüdtke
n the AjaxFallbackDefaultDataTable in your opinion ;-) Andreas > -Original Message- > From: Riyad Kalla [mailto:rka...@gmail.com] > Sent: Monday, February 01, 2010 4:40 PM > To: users@wicket.apache.org; sam.lued...@t-online.de > Subject: Re: AjaxFallbackDefaultData

Re: AjaxFallbackDefaultDataTable and delete via ModalWindow

2010-02-01 Thread Riyad Kalla
if that timer is > running > every second? I only need it to run once after I changed the model... > > Thanks > > Andreas > > > -Original Message- > > From: Riyad Kalla [mailto:rka...@gmail.com] > > Sent: Friday, January 29, 2010 8:35 PM > > To: user

RE: AjaxFallbackDefaultDataTable and delete via ModalWindow

2010-01-30 Thread Andreas Lüdtke
--- > From: Riyad Kalla [mailto:rka...@gmail.com] > Sent: Friday, January 29, 2010 8:35 PM > To: users@wicket.apache.org; sam.lued...@t-online.de > Subject: Re: AjaxFallbackDefaultDataTable and delete via ModalWindow > > Andreas, > > This might be a dumb question, but are y

Re: AjaxFallbackDefaultDataTable and delete via ModalWindow

2010-01-29 Thread Riyad Kalla
Andreas, This might be a dumb question, but are you sure at the point that the page reloads and re-renders, the object *has* been erased from the database or cache you are utilizing? For example, right after you delete, if you put in some silly/junk code to immediately re-query for that object, it

RE: AjaxFallbackDefaultDataTable - modifying look

2009-10-20 Thread Jeffrey Schneller
Thanks. That worked perfectly. I now have my own AjaxFallbackCustomDataTable. Jeff -Original Message- From: Pedro Santos [mailto:pedros...@gmail.com] Sent: Tuesday, October 20, 2009 2:03 PM To: users@wicket.apache.org Subject: Re: AjaxFallbackDefaultDataTable - modifying look

Re: AjaxFallbackDefaultDataTable - modifying look

2009-10-20 Thread Pedro Santos
age- > From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] > Sent: Tuesday, October 20, 2009 1:53 PM > To: users@wicket.apache.org > Subject: Re: AjaxFallbackDefaultDataTable - modifying look > > dont use the Default version of the data table, create one yourself. > > -ig

RE: AjaxFallbackDefaultDataTable - modifying look

2009-10-20 Thread Jeffrey Schneller
Fair enough. Is there an example of how one should be created? -Original Message- From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] Sent: Tuesday, October 20, 2009 1:53 PM To: users@wicket.apache.org Subject: Re: AjaxFallbackDefaultDataTable - modifying look dont use the Default

Re: AjaxFallbackDefaultDataTable - modifying look

2009-10-20 Thread Igor Vaynberg
dont use the Default version of the data table, create one yourself. -igor On Tue, Oct 20, 2009 at 10:48 AM, Jeffrey Schneller wrote: > I am using the AjaxFallbackDefaultDataTable for displaying a data table > on my page.  I have everything working [displaying of data, sorting > columns. Paging]

RE: AjaxFallbackDefaultDataTable has no thead

2009-10-12 Thread Stefan Lindner
Forget my post. Some FF-Plugins must have mixed up the html. After a fresh FF-Installation the is back again. Strange. Stefan -Ursprüngliche Nachricht- Von: Stefan Lindner [mailto:lind...@visionet.de] Gesendet: Montag, 12. Oktober 2009 01:36 An: users@wicket.apache.org Betreff: AjaxFal

Re: AjaxFallbackDefaultDataTable header disappear

2009-09-25 Thread Che Schneider
Meh, I am too retarded: Apparently Wicket 1.4.1 does solve this issue. Thanks a lot and sorry for the double post, Che Che Schneider wrote: Hello all, First of all, great mailing list and awesome knowledge assembled here. Some of the posts are true eye-openers... I have a little problem w

Re: AjaxFallbackDefaultDataTable, navigation toolbar disappears

2009-09-03 Thread fachhoch
yes it fixed it , I found 1.4.1 for most of wicket I am using but did not find for org.wicketstuff.jquery ,please tell me where to find this igor.vaynberg wrote: > > use wicket 1.4.1, fixed there. > > -igor > > On Thu, Sep 3, 2009 at 12:04 PM, tubin gen wrote: >> I am using   AjaxFallbackDef

Re: AjaxFallbackDefaultDataTable, navigation toolbar disappears

2009-09-03 Thread Igor Vaynberg
use wicket 1.4.1, fixed there. -igor On Thu, Sep 3, 2009 at 12:04 PM, tubin gen wrote: > I am using   AjaxFallbackDefaultDataTable ,My page has a search form and > AjaxFallbackDefaultDataTable , so whenever search from is submitted I am > adding the panel which contains  AjaxFallbackDefaultDataTa

Re: AjaxFallbackDefaultDataTable: redirect to specific page

2009-04-07 Thread Roman Zechner
thanks!! Igor Vaynberg wrote: new link("edit") { onclick() { setresponsepage(new editpage(getpage().getpagereference(), getmodel())); } } class editpage { public editpage(pagereference ref, imodel model) { setresponsepage(ref.getpage()); } } -igor On Tue, Apr 7,

Re: AjaxFallbackDefaultDataTable: redirect to specific page

2009-04-07 Thread Igor Vaynberg
new link("edit") { onclick() { setresponsepage(new editpage(getpage().getpagereference(), getmodel())); } } class editpage { public editpage(pagereference ref, imodel model) { setresponsepage(ref.getpage()); } } -igor On Tue, Apr 7, 2009 at 12:12 PM, Roman Zechner

Re: AjaxFallbackDefaultDataTable and AjaxSelfUpdatingTimerBehavior

2009-03-28 Thread Murat Yücel
Hi, Thank to both of you. I have solved the issue by adding AjaxSelfUpdatingTimerBehavior to the panel which i add to my cellItem. Another bug was as igor wrote that my models wasnt chained properly. /Murat 2009/3/28 nino martinez wael > we had a thread about updating... when i did the wicket

Re: AjaxFallbackDefaultDataTable and AjaxSelfUpdatingTimerBehavior

2009-03-28 Thread nino martinez wael
we had a thread about updating... when i did the wicket reaction game... search for wicket reavtion game on nabble 2009/3/28 Murat Yücel : > Is it enough to do this to get the model refreshed? > cellItem.setOutputMarkupId(true); > cellItem.add(new AjaxSelfUpdatingTimerBehavior(1)); > > or should e

Re: AjaxFallbackDefaultDataTable and AjaxSelfUpdatingTimerBehavior

2009-03-28 Thread Igor Vaynberg
populate item is only called when the repeater renders. you are not rerendering the repeater, you are rerendering the repeater item - thus populate item is not called. -igor 2009/3/28 Murat Yücel : > Is it enough to do this to get the model refreshed? > cellItem.setOutputMarkupId(true); > cellIte

Re: AjaxFallbackDefaultDataTable and AjaxSelfUpdatingTimerBehavior

2009-03-28 Thread Murat Yücel
Is it enough to do this to get the model refreshed? cellItem.setOutputMarkupId(true); cellItem.add(new AjaxSelfUpdatingTimerBehavior(1)); or should each cell have an entity id? Because the problem is that populateItem doesnt get called. Unless i of course enter the page again. /Murat 2009/3/28 I

Re: AjaxFallbackDefaultDataTable and AjaxSelfUpdatingTimerBehavior

2009-03-28 Thread Igor Vaynberg
then somewhere down the stream your components are not properly chaining their model through this one. -igor 2009/3/28 Murat Yücel : > Hi Igor > > I am extending the SortableDataProvider and the model method is returning a > new CompountPropertyModel which includes my own entity model. The entity

Re: AjaxFallbackDefaultDataTable and AjaxSelfUpdatingTimerBehavior

2009-03-28 Thread Murat Yücel
Hi Igor I am extending the SortableDataProvider and the model method is returning a new CompountPropertyModel which includes my own entity model. The entity model is a loadabledetacheabble model which only keeps the id. on load the data will be retrieved from the database. https://ninan.svn.sourc

Re: AjaxFallbackDefaultDataTable and AjaxSelfUpdatingTimerBehavior

2009-03-28 Thread Igor Vaynberg
your problem is most likely that you are not using proper models. in your idataprovider.model you should return a model that can load the data from the database on its own. you are most likely just doing return new model(object); which simply holds on to that object forever, what you should do is

Re: AjaxFallbackDefaultDataTable and AjaxSelfUpdatingTimerBehavior

2009-03-28 Thread Murat Yücel
Hi Guys Does anyone have a clue how to solve my problem below? The code can be found here: https://ninan.svn.sourceforge.net/svnroot/ninan/branches/v2.0.0 The logic is in this class: https://ninan.svn.sourceforge.net/svnroot/ninan/branches/v2.0.0/ninan-frontend/src/main/java/dk/team/ninan/fronten

Re: AjaxFallbackDefaultDataTable problem

2009-03-17 Thread Jason Rosenberg
Hello, I'm having the same issue, and so far haven't figured it out... I am doing this, within an ajax click handler: mySortableDataProvider.updateDataList(updatedPersons); myAjaxFallbackDefaultDataTable.modelChanged(); target.addCompo

Re: AjaxFallbackDefaultDataTable and AjaxLink

2009-02-02 Thread Timo Rantalaiho
On Mon, 02 Feb 2009, Mathias P.W Nilsson wrote: > Why should it be strange to edit properties for let's say a user in a modal > window? Not strange from Wicket point of view but from user interface design point of view: http://en.wikipedia.org/wiki/Modal_window#Criticisms Best wishes, Timo --

Re: AjaxFallbackDefaultDataTable and AjaxLink

2009-02-02 Thread Mathias P.W Nilsson
Why should it be strange to edit properties for let's say a user in a modal window? -- View this message in context: http://www.nabble.com/AjaxFallbackDefaultDataTable-and-AjaxLink-tp21687636p21797485.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: AjaxFallbackDefaultDataTable and AjaxLink

2009-02-01 Thread Timo Rantalaiho
On Tue, 27 Jan 2009, Mathias P.W Nilsson wrote: > I have override the newRowItem for the AjaxFallbackDefaultDataTable to make > the entire row clickable. ( return new ClickableItem ). Can anyone help me > with some pointers in how to make the row open a model window for editing. ModalWindow is ju

Re: ajaxfallbackdefaultdatatable toolbars

2009-01-03 Thread Jeremy Thomerson
You could maybe do get("component path").setVisibilityAllowed(false), but that isn't a good practice since it's coupling your code to an internal string in the wicket component. AjaxFallbackDefaultDataTable really isn't doing much - just create your own custom table that extends DataTable, and add

Re: AjaxFallbackDefaultDataTable problem

2008-12-29 Thread Björn Tietjens
Hi thanx for your help. I just forgot to update the datasource for the table before calling "modelChanged()" Cheers B James Carman schrieb: Are you using an AjaxLink to do the delete? If so, are you adding the table to the ajax request target, so that it gets updated? On Mon, Dec 29, 2008 at

Re: AjaxFallbackDefaultDataTable problem

2008-12-29 Thread James Carman
Are you using an AjaxLink to do the delete? If so, are you adding the table to the ajax request target, so that it gets updated? On Mon, Dec 29, 2008 at 10:15 AM, Björn-Peter Tietjens wrote: > Hi there, > > > I would need some help on the AjaxFallbackDefaultDataTable please. > I am using this Aj

RE: AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalStateException

2008-11-12 Thread Yazeed Isaacs
PROTECTED] -Original Message- From: Igor Vaynberg [mailto:[EMAIL PROTECTED] Sent: 11 November 2008 06:54 PM To: users@wicket.apache.org Subject: Re: AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalStateException create a quickstart and i will t

Re: AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalStateException

2008-11-11 Thread Igor Vaynberg
Original Message- > From: Yazeed Isaacs [mailto:[EMAIL PROTECTED] > Sent: 10 November 2008 03:04 PM > To: users@wicket.apache.org > Subject: RE: AjaxFallbackDefaultDataTable with ajax lazy loading - > sorting and paging throws an IllegalStateException > > I understand that t

RE: AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalStateException

2008-11-11 Thread Yazeed Isaacs
Yazeed Isaacs - Java Developer [EMAIL PROTECTED] -Original Message- From: Yazeed Isaacs [mailto:[EMAIL PROTECTED] Sent: 10 November 2008 03:04 PM To: users@wicket.apache.org Subject: RE: AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalSta

RE: AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalStateException

2008-11-10 Thread Yazeed Isaacs
06 October 2008 10:01 AM To: users@wicket.apache.org Subject: Re: AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalStateException The problem is, as Igor pointed, you cannot re-render a component via AJAX if it has set setRenderBodyOnly(true)... Why? Cont

Re: AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalStateException

2008-10-06 Thread Ernesto Reinaldo Barreiro
ransactions); > >target.addComponent(transactions); >} > > }); > > > > HTML code: > > wicket:id="transactions"> > > > > > I have tried playing around with the way I've implemented this, but I > keep on gett

Re: AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalStateException

2008-10-06 Thread Igor Vaynberg
et.addComponent(transactions); >} > > }); > > > > HTML code: > > wicket:id="transactions"> > > > > > I have tried playing around with the way I've implemented this, but I > keep on getting the same exception (java.lang.Illega

RE: AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalStateException

2008-10-06 Thread Yazeed Isaacs
ink. Regards, Yazeed Isaacs -Original Message- From: Igor Vaynberg [mailto:[EMAIL PROTECTED] Sent: 06 October 2008 09:31 AM To: users@wicket.apache.org Subject: Re: AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalStateException if i were you i would read

Re: AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalStateException

2008-10-06 Thread Igor Vaynberg
if i were you i would read the exception message, it is telling you exactly what is going wrong...if you showed some code or provided a quickstart we can help further. -igor On Mon, Oct 6, 2008 at 12:04 AM, Yazeed Isaacs <[EMAIL PROTECTED]> wrote: > Anybody? > > Guys please help me with this one.

RE: AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalStateException

2008-10-06 Thread Yazeed Isaacs
Anybody? Guys please help me with this one. -Original Message- From: Yazeed Isaacs Sent: 03 October 2008 03:00 PM To: users@wicket.apache.org Subject: AjaxFallbackDefaultDataTable with ajax lazy loading - sorting and paging throws an IllegalStateException Hi I have an AjaxFallbackDe

Re: AjaxFallbackDefaultDataTable - goto page number on return from another page

2008-08-31 Thread steve222
Anyone know how to solve this? Thanks. steviezz wrote: > > Wicket 1.3.4. > > I have a Page (ThingListing) containing an AjaxFallbackDefaultDataTable - > created like: > > private WebMarkupContainer listContainer = new > WebMarkupContainer("listContainer"); > private MySortab

Re: AjaxFallbackDefaultDataTable and DropDownChoice

2008-03-11 Thread jnorris
Thanks Martijn! Adding the ddc to a panel worked. Jim Martijn Dashorst wrote: > > Instead of directly adding the DDC to the column, add a panel or > fragment containing the DDC. > > Martijn > > On 3/10/08, jnorris <[EMAIL PROTECTED]> wrote: >> >> Hi All, >> >> I have implemented an AjaxF

Re: AjaxFallbackDefaultDataTable and DropDownChoice

2008-03-10 Thread Martijn Dashorst
Instead of directly adding the DDC to the column, add a panel or fragment containing the DDC. Martijn On 3/10/08, jnorris <[EMAIL PROTECTED]> wrote: > > Hi All, > > I have implemented an AjaxFallbackDefaultDataTable and would like to put a > DropDownChoice in one of the columns to list values.

Re: AjaxFallbackDefaultDataTable not refreshing in IE6

2008-02-20 Thread Igor Vaynberg
sing response: Object required > > > > Thanks, > Wen Tong > > -- > The only constant in life is change. > > - Original Message > From: Igor Vaynberg <[EMAIL PROTECTED]> > To: users@wicket.apache.org > > > Sent: Friday, February 15, 2

Re: AjaxFallbackDefaultDataTable not refreshing in IE6

2008-02-20 Thread Beyonder Unknown
required Thanks, Wen Tong -- The only constant in life is change. - Original Message From: Igor Vaynberg <[EMAIL PROTECTED]> To: users@wicket.apache.org Sent: Friday, February 15, 2008 1:49:37 PM Subject: Re: AjaxFallbackDefaultDataTable not refreshing in IE6 yes -igor On Fri,

Re: AjaxFallbackDefaultDataTable not refreshing in IE6

2008-02-15 Thread Igor Vaynberg
mment? > > > Thanks, > Wen Tong > > > -- > The only constant in life is change. > > - Original Message > > From: Igor Vaynberg <[EMAIL PROTECTED]> > To: users@wicket.apache.org > > Sent: Friday, February 15, 2008 1:36:11 PM >

Re: AjaxFallbackDefaultDataTable not refreshing in IE6

2008-02-15 Thread Beyonder Unknown
rg <[EMAIL PROTECTED]> To: users@wicket.apache.org Sent: Friday, February 15, 2008 1:36:11 PM Subject: Re: AjaxFallbackDefaultDataTable not refreshing in IE6 where is the quickstart? -igor On Fri, Feb 15, 2008 at 1:30 PM, Beyonder Unknown <[EMAIL PROTECTED]> wrote: > > Will do.

Re: AjaxFallbackDefaultDataTable not refreshing in IE6

2008-02-15 Thread Igor Vaynberg
t; > -- > The only constant in life is change. > > - Original Message > From: Igor Vaynberg <[EMAIL PROTECTED]> > To: users@wicket.apache.org > > Sent: Friday, February 15, 2008 1:20:11 PM > Subject: Re: AjaxFallbackDefaultDataTable not refreshi

Re: AjaxFallbackDefaultDataTable not refreshing in IE6

2008-02-15 Thread Igor Vaynberg
; - Original Message > > From: Igor Vaynberg <[EMAIL PROTECTED]> > To: users@wicket.apache.org > > Sent: Friday, February 15, 2008 1:15:52 PM > Subject: Re: AjaxFallbackDefaultDataTable not refreshing in IE6 > > > please enter a bug report along with a qu

Re: AjaxFallbackDefaultDataTable not refreshing in IE6

2008-02-15 Thread Beyonder Unknown
er(s)... Regards, Wen Tong -- The only constant in life is change. - Original Message From: Igor Vaynberg <[EMAIL PROTECTED]> To: users@wicket.apache.org Sent: Friday, February 15, 2008 1:20:11 PM Subject: Re: AjaxFallbackDefaultDataTable not refreshing in IE6 argh, then its f

Re: AjaxFallbackDefaultDataTable not refreshing in IE6

2008-02-15 Thread Beyonder Unknown
ant in life is change. > > - Original Message > > > From: Igor Vaynberg <[EMAIL PROTECTED]> > To: users@wicket.apache.org > Sent: Friday, February 15, 2008 12:40:53 PM > Subject: Re: AjaxFallbackDefaultDataTable not refreshing in IE6 > > what wicket versi

Re: AjaxFallbackDefaultDataTable not refreshing in IE6

2008-02-15 Thread Igor Vaynberg
appends the "^" character. > > > Thanks, > Wen Tong > > -- > The only constant in life is change. > > - Original Message > From: Beyonder Unknown <[EMAIL PROTECTED]> > > To: users@wicket.apache.org > > > Sent: Friday, Febr

Re: AjaxFallbackDefaultDataTable not refreshing in IE6

2008-02-15 Thread Igor Vaynberg
--- Original Message > > > From: Igor Vaynberg <[EMAIL PROTECTED]> > To: users@wicket.apache.org > Sent: Friday, February 15, 2008 12:40:53 PM > Subject: Re: AjaxFallbackDefaultDataTable not refreshing in IE6 > > what wicket version is doing that? > > -ig

Re: AjaxFallbackDefaultDataTable not refreshing in IE6

2008-02-15 Thread Beyonder Unknown
D]> To: users@wicket.apache.org Sent: Friday, February 15, 2008 1:12:18 PM Subject: Re: AjaxFallbackDefaultDataTable not refreshing in IE6 Hi Igor, Its wicket 1.3.1. Thanks, Allan -- The only constant in life is change. - Original Message From: Igor Vaynberg <[EMAIL PROTECTED]> To: users@

Re: AjaxFallbackDefaultDataTable not refreshing in IE6

2008-02-15 Thread Beyonder Unknown
Hi Igor, Its wicket 1.3.1. Thanks, Allan -- The only constant in life is change. - Original Message From: Igor Vaynberg <[EMAIL PROTECTED]> To: users@wicket.apache.org Sent: Friday, February 15, 2008 12:40:53 PM Subject: Re: AjaxFallbackDefaultDataTable not refreshing in IE6

Re: AjaxFallbackDefaultDataTable not refreshing in IE6

2008-02-15 Thread Igor Vaynberg
what wicket version is doing that? -igor On Fri, Feb 15, 2008 at 12:16 PM, Beyonder Unknown <[EMAIL PROTECTED]> wrote: > > One thing I noticed is that the javascript generated is appended with "^". > Could it be that IE is not parsing this properly? > > excerpt from Wicket Ajax Debug Window >

Re: AjaxFallbackDefaultDataTable not refreshing in IE6

2008-02-15 Thread Beyonder Unknown
One thing I noticed is that the javascript generated is appended with "^". Could it be that IE is not parsing this properly? excerpt from Wicket Ajax Debug Window for (var i=0; i To: WICKET USER Sent: Friday, February 15, 2008 12:00:41 PM Subject: AjaxFallbackDefaultDataTa

Re: AjaxFallbackDefaultDataTable... changing sort does not setCurrentPage to 0

2007-08-24 Thread Igor Vaynberg
On 8/24/07, Patrick Angeles <[EMAIL PROTECTED]> wrote: > > > The extensions AjaxFallbackDefaultDataTable and related classes are > extremely nice, btw. It's allowed me to quickly set up list paging and > sorting in a way that would have taken me days using any other web > framework. thats the ide

Re: AjaxFallbackDefaultDataTable... changing sort does not setCurrentPage to 0

2007-08-24 Thread Patrick Angeles
I'm not that intrepid so I think I'll just wait until beta3 to get those fixes. The extensions AjaxFallbackDefaultDataTable and related classes are extremely nice, btw. It's allowed me to quickly set up list paging and sorting in a way that would have taken me days using any other web framework.

  1   2   >