Re: ModalWindow and z-index

2011-01-12 Thread Martin Grigorov
Running Wicket in Development mode and clicking on the Ajax Debug Window shows it over the modal window. Ajax Debug Window has zIndex = 100. On Wed, Jan 12, 2011 at 1:17 AM, hok ivanvasi...@gmail.com wrote: Hello, I'm trying to create a dijit tooltip

Re: ModalWindow and z-index

2011-01-12 Thread hok
Thanks for the reply. As it appears I made a mistake by omitting the position css property and according to http://www.w3schools.com/css/pr_pos_z-index.asp http://www.w3schools.com/css/pr_pos_z-index.asp : z-index only works on positioned elements (position:absolute, position:relative, or

AjaxFallbackDefaultDataTable

2011-01-12 Thread 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 navigation bar at the end - I want to use addBottomToolbar 2 - I tried to export the data to excel using classic ComponentRequestTarget, it

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ş alt...@gmail.com Hi, I've questions about AjaxFallbackDefaultDataTable, here they are 1 - Is it possible to remove NavigationToolbar from top of this because i

Re: AjaxFallbackDefaultDataTable

2011-01-12 Thread Ernesto Reinaldo Barreiro
The markup of AjaxFallbackDefaultDataTable comes from Data table and is: wicket:panel thead wicket:container wicket:id=topToolbars/wicket:container /thead tfoot wicket:container wicket:id=bottomToolbars/wicket:container /tfoot tbody wicket:id=body tr wicket:id=rows

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 reier...@gmail.com The markup of AjaxFallbackDefaultDataTable comes from Data table and is:

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

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 MyAjaxFallbackDefaultDataTableContact (users, createColumnsForExcel(), dataProvider, 10); form.remove(users); form.add(users) solved. Thanks. 12 Ocak 2011

Auto-form Submit on Enter In Nested Forms

2011-01-12 Thread Conny Kühne
I have implemented a root form R and a nested form N which has R as a parent form. I would like to stop N from being processed when R has been submitted. I've tried to do so by implementing IFormVisitorParticipant.processChildren. However, I have not been able to distinguish which of the two

Modal widow slow?

2011-01-12 Thread Martin Makundi
Hi! Has anybody noticed that Wicket ajax ModalWindow is bit slow to load, or is it just me? Has anybody tried to overcome it by switching to another implementation/styling or is it totally dependent on the content of the modal window? ** Martin

Re: Modal widow slow?

2011-01-12 Thread James Carman
What browser? On Wed, Jan 12, 2011 at 1:46 PM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Hi! Has anybody noticed that Wicket ajax ModalWindow is bit slow to load, or is it just me? Has anybody tried to overcome it by switching to another implementation/styling or is it

Re: Modal widow slow?

2011-01-12 Thread Martin Makundi
Any normal browser. Putting browser on steroids or having firbre network is not really an option ;) ** Martin 2011/1/12 James Carman ja...@carmanconsulting.com: What browser? On Wed, Jan 12, 2011 at 1:46 PM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Hi! Has anybody noticed

Re: Modal widow slow?

2011-01-12 Thread James Carman
I'm asking because I had that sort of trouble with IE a while back when I was trying to load a modal window on a page with lots of ajax links in a table. On Wed, Jan 12, 2011 at 1:54 PM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Any normal browser. Putting browser on steroids or

Re: Modal widow slow?

2011-01-12 Thread Martin Makundi
I have a table with lots of editable cells. The editable cells have lots of hidden controls (inputs,selects,etc.) and the table loads very slow. Browsers seem to need to digest also the invisible elements. Yes, I tried also table-less layout with same result. The idea is that when a user

Re: Modal widow slow?

2011-01-12 Thread Peter Ertl
What's a modal widow ? *lol*maybe an exclusive woman whose husband died? Am 12.01.2011 um 20:06 schrieb Martin Makundi: I have a table with lots of editable cells. The editable cells have lots of hidden controls (inputs,selects,etc.) and the table loads very slow. Browsers seem to need

Re: Modal widow slow?

2011-01-12 Thread James Carman
It's a woman who won't let you do anything until she's done telling you what she wants to tell you. On Wed, Jan 12, 2011 at 3:51 PM, Peter Ertl pe...@gmx.org wrote: What's a modal widow ? *lol*maybe an exclusive woman whose husband died? Am 12.01.2011 um 20:06 schrieb Martin Makundi: I have

Re: Modal widow slow?

2011-01-12 Thread Attila Király
No wonder she is a widow. Her husband is the perfect listener. 2011/1/12 James Carman ja...@carmanconsulting.com It's a woman who won't let you do anything until she's done telling you what she wants to tell you. On Wed, Jan 12, 2011 at 3:51 PM, Peter Ertl pe...@gmx.org wrote: What's a

Re: Modal widow slow?

2011-01-12 Thread Hielke Hoeve
Putting a lot of controls (select and input etc) on one page will make any browser slow. Internet explorer is the worst though. You could try and use jquery to replace the viewing component with an editor onclick. This does mean your models won't be updated upon submit. Hielke On 12 Jan 2011

Re: Modal widow slow?

2011-01-12 Thread Martin Makundi
You could try and use jquery to replace the viewing component with an editor onclick. This does mean your models won't be updated upon submit. You mean replace modal widow with jquery widow ? Is it faster? Basically I am asking that is the delay from click - modal window visible due to

Is there an event 'onAddedToAjaxResponse'

2011-01-12 Thread Martin Makundi
Hi! Is there an event 'onAddedToAjaxResponse', or something similar? To make it easier to track when to update a model for example after ajax update only. ** Martin - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: Is there an event 'onAddedToAjaxResponse'

2011-01-12 Thread Igor Vaynberg
override ajaxrequettarget#add() -igor On Wed, Jan 12, 2011 at 3:53 PM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Hi! Is there an event 'onAddedToAjaxResponse', or something similar? To make it easier to track when to update a model for example after ajax update only. **

Re: Is there an event 'onAddedToAjaxResponse'

2011-01-12 Thread Martin Makundi
Override on framework level? I was thinking of more on a component level. ** Martin 2011/1/13 Igor Vaynberg igor.vaynb...@gmail.com: override ajaxrequettarget#add() -igor On Wed, Jan 12, 2011 at 3:53 PM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Hi! Is there an event

Re: Is there an event 'onAddedToAjaxResponse'

2011-01-12 Thread Igor Vaynberg
override it, check if component implements some interface with a callback and call it. its not rocket science. -igor On Wed, Jan 12, 2011 at 4:08 PM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Override on framework level? I was thinking of more on a component level. ** Martin

Re: Is there an event 'onAddedToAjaxResponse'

2011-01-12 Thread Martin Makundi
Hmm.. actually there is for (ITargetRespondListener listener : respondListeners) { listener.onTargetRespond(this); } inside and also private void fireOnBeforeRespondListeners() Maybe that will do the job. ** Martin

Re: GridView for A-Symmetric tables - issues

2011-01-12 Thread Arjun Dhar
Sorry for such a long delay on creating a JIRA, was trying to earn a living :) https://issues.apache.org/jira/browse/WICKET-3327 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/GridView-for-A-Symmetric-tables-issues-tp2953859p3215230.html Sent from the Users forum