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 mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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

2011/1/13 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
>  wrote:
>> Override on framework level? I was thinking of more on a component level.
>>
>> **
>> Martin
>>
>> 2011/1/13 Igor Vaynberg :
>>> override ajaxrequettarget#add()
>>>
>>> -igor
>>>
>>> On Wed, Jan 12, 2011 at 3:53 PM, Martin Makundi
>>>  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.

 **
 Martin

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>
>>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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
 wrote:
> Override on framework level? I was thinking of more on a component level.
>
> **
> Martin
>
> 2011/1/13 Igor Vaynberg :
>> override ajaxrequettarget#add()
>>
>> -igor
>>
>> On Wed, Jan 12, 2011 at 3:53 PM, Martin Makundi
>>  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.
>>>
>>> **
>>> Martin
>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>
>>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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 :
> override ajaxrequettarget#add()
>
> -igor
>
> On Wed, Jan 12, 2011 at 3:53 PM, Martin Makundi
>  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.
>>
>> **
>> Martin
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@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
 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.
>
> **
> Martin
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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
For additional commands, e-mail: users-h...@wicket.apache.org



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 modalwindow or wicket internals or is it as fast as
possible.

I wouldn't like to go through the trouble of implementing a jquery
ajax modalwindow and finding out its speed is the same. If it is the
same, I would rather stick to wicket extensions modalwindow.

**
Martin

>
> Hielke
> On 12 Jan 2011 20:07, "Martin Makundi" 
> wrote:
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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 20:07, "Martin Makundi" 
wrote:


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 

> 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  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 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 clicks a cell, it shows the editor fast.
> >>
> >> Now I am planning to speed-up the table loading by removing the
> >> editors. But this will mean that I need a ajax editor and I am
> >> worrying that clicking the table cell and waiting for the editor to
> >> pop up will be slow (or annoyingly slow).
> >>
> >> **
> >> Martin
> >>
> >> 2011/1/12 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
> >>>  wrote:
>  Any "normal" browser. Putting browser on steroids or having firbre
>  network is not really an option ;)
> 
>  **
>  Martin
> 
>  2011/1/12 James Carman :
> > What browser?
> >
> > On Wed, Jan 12, 2011 at 1:46 PM, Martin Makundi
> >  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 totally dependent on the content of
> >> the modal window?
> >>
> >> **
> >> Martin
> >>
> >>
> -
> >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> >> For additional commands, e-mail: users-h...@wicket.apache.org
> >>
> >>
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
> 
>  -
>  To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>  For additional commands, e-mail: users-h...@wicket.apache.org
> 
> 
> >>>
> >>> -
> >>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> >>> For additional commands, e-mail: users-h...@wicket.apache.org
> >>>
> >>>
> >>
> >> -
> >> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> >> For additional commands, e-mail: users-h...@wicket.apache.org
> >>
> >
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


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  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 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 clicks a cell, it shows the editor fast.
>>
>> Now I am planning to speed-up the table loading by removing the
>> editors. But this will mean that I need a ajax editor and I am
>> worrying that clicking the table cell and waiting for the editor to
>> pop up will be slow (or annoyingly slow).
>>
>> **
>> Martin
>>
>> 2011/1/12 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
>>>  wrote:
 Any "normal" browser. Putting browser on steroids or having firbre
 network is not really an option ;)

 **
 Martin

 2011/1/12 James Carman :
> What browser?
>
> On Wed, Jan 12, 2011 at 1:46 PM, Martin Makundi
>  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 totally dependent on the content of
>> the modal window?
>>
>> **
>> Martin
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>
>>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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 to digest also the invisible elements.
> 
> Yes, I tried also table-less layout with same result.
> 
> The idea is that when a user clicks a cell, it shows the editor fast.
> 
> Now I am planning to speed-up the table loading by removing the
> editors. But this will mean that I need a ajax editor and I am
> worrying that clicking the table cell and waiting for the editor to
> pop up will be slow (or annoyingly slow).
> 
> **
> Martin
> 
> 2011/1/12 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
>>  wrote:
>>> Any "normal" browser. Putting browser on steroids or having firbre
>>> network is not really an option ;)
>>> 
>>> **
>>> Martin
>>> 
>>> 2011/1/12 James Carman :
 What browser?
 
 On Wed, Jan 12, 2011 at 1:46 PM, Martin Makundi
  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 totally dependent on the content of
> the modal window?
> 
> **
> Martin
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 
> 
 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 
 
>>> 
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>> 
>>> 
>> 
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>> 
>> 
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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 clicks a cell, it shows the editor fast.

Now I am planning to speed-up the table loading by removing the
editors. But this will mean that I need a ajax editor and I am
worrying that clicking the table cell and waiting for the editor to
pop up will be slow (or annoyingly slow).

**
Martin

2011/1/12 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
>  wrote:
>> Any "normal" browser. Putting browser on steroids or having firbre
>> network is not really an option ;)
>>
>> **
>> Martin
>>
>> 2011/1/12 James Carman :
>>> What browser?
>>>
>>> On Wed, Jan 12, 2011 at 1:46 PM, Martin Makundi
>>>  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 totally dependent on the content of
 the modal window?

 **
 Martin

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>
>>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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
 wrote:
> Any "normal" browser. Putting browser on steroids or having firbre
> network is not really an option ;)
>
> **
> Martin
>
> 2011/1/12 James Carman :
>> What browser?
>>
>> On Wed, Jan 12, 2011 at 1:46 PM, Martin Makundi
>>  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 totally dependent on the content of
>>> the modal window?
>>>
>>> **
>>> Martin
>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>
>>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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 :
> What browser?
>
> On Wed, Jan 12, 2011 at 1:46 PM, Martin Makundi
>  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 totally dependent on the content of
>> the modal window?
>>
>> **
>> Martin
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Modal widow slow?

2011-01-12 Thread James Carman
What browser?

On Wed, Jan 12, 2011 at 1:46 PM, Martin Makundi
 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 totally dependent on the content of
> the modal window?
>
> **
> Martin
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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 forms was
submitted in case of an auto form submit triggered by enter. 

Is there a way to tell whether R or N triggered a given submit in case of

a) both forms allow for auto submit on enter (default browser behavior)
b) both forms contain unregistered submit components, e.g., a submit button
which is not a wicket component?
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Auto-form-Submit-on-Enter-In-Nested-Forms-tp3214495p3214495.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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 tarihinde Altuğ Bilgin Altıntaş  yazdı:

> 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:
>>
>> 
>> 
>>  
>> 
>> 
>>
>> 
>> 
>>
>>
>>[cell]
>>
>>
>> 
>> 
>>
>> maybe you can create a MyAjaxFallbackDefaultDataTable and use the markup
>>
>> 
>> 
>>   
>> 
>> 
>>
>> 
>> 
>>
>>
>>[cell]
>>
>>
>> 
>> 
>>
>> Haven't tried to do the above trick myself but I think It might  work;-)
>>
>> Ernesto
>>
>> 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 navigation bar at the end  - I want to use addBottomToolbar
>> >
>> > 2 - I tried  to export the data to excel using classic
>> > ComponentRequestTarget, it works great ! but every FilterToolbar
>> elements
>> > also exported too (Textfields ...) Also I tried to make FilterToolbar
>> > visible before exported to excel like :
>> >
>> > filterToolbar.setVisible(true);
>> > super.respond(requestCycle); -- > exporting to excel
>> > filterToolbar.setVisible(false); -- > recover it
>> >
>> > but it doesn't work (- i made filterToolbar set
>> > setOutputMarkupPlaceholderTag(true) - )
>> >
>> > How can i get rid off  FilterToolbar  while exporting?
>> >
>> > 3 - It is very similar to question #2 - How can i make a CheckBoxColumn
>> > visibility "false" according to case.?
>> >
>> >
>> > Thanks.
>> >
>> > --
>> > *Altuğ*
>> > ** 
>> >
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
>
> --
> *Altuğ*
> *www.kodcu.com* **
>
>


-- 
*Altuğ*
*www.kodcu.com* **


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 mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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:
>
> 
> 
>  
> 
> 
>
> 
> 
>
>
>[cell]
>
>
> 
> 
>
> maybe you can create a MyAjaxFallbackDefaultDataTable and use the markup
>
> 
> 
>   
> 
> 
>
> 
> 
>
>
>[cell]
>
>
> 
> 
>
> Haven't tried to do the above trick myself but I think It might  work;-)
>
> Ernesto
>
> 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 navigation bar at the end  - I want to use addBottomToolbar
> >
> > 2 - I tried  to export the data to excel using classic
> > ComponentRequestTarget, it works great ! but every FilterToolbar elements
> > also exported too (Textfields ...) Also I tried to make FilterToolbar
> > visible before exported to excel like :
> >
> > filterToolbar.setVisible(true);
> > super.respond(requestCycle); -- > exporting to excel
> > filterToolbar.setVisible(false); -- > recover it
> >
> > but it doesn't work (- i made filterToolbar set
> > setOutputMarkupPlaceholderTag(true) - )
> >
> > How can i get rid off  FilterToolbar  while exporting?
> >
> > 3 - It is very similar to question #2 - How can i make a CheckBoxColumn
> > visibility "false" according to case.?
> >
> >
> > Thanks.
> >
> > --
> > *Altuğ*
> > ** 
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


-- 
*Altuğ*
*www.kodcu.com* **


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



   


   




[cell]





Haven't tried to do the above trick myself but I think It might  work;-)

Ernesto

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 navigation bar at the end  - I want to use addBottomToolbar
>
> 2 - I tried  to export the data to excel using classic
> ComponentRequestTarget, it works great ! but every FilterToolbar elements
> also exported too (Textfields ...) Also I tried to make FilterToolbar
> visible before exported to excel like :
>
> filterToolbar.setVisible(true);
> super.respond(requestCycle); -- > exporting to excel
> filterToolbar.setVisible(false); -- > recover it
>
> but it doesn't work (- i made filterToolbar set
> setOutputMarkupPlaceholderTag(true) - )
>
> How can i get rid off  FilterToolbar  while exporting?
>
> 3 - It is very similar to question #2 - How can i make a CheckBoxColumn
> visibility "false" according to case.?
>
>
> Thanks.
>
> --
> *Altuğ*
> ** 
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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 navigation bar at the end  - I want to use addBottomToolbar
>
> 2 - I tried  to export the data to excel using classic
> ComponentRequestTarget, it works great ! but every FilterToolbar elements
> also exported too (Textfields ...) Also I tried to make FilterToolbar
> visible before exported to excel like :
>
> filterToolbar.setVisible(true);
> super.respond(requestCycle); -- > exporting to excel
> filterToolbar.setVisible(false); -- > recover it
>
> but it doesn't work (- i made filterToolbar set
> setOutputMarkupPlaceholderTag(true) - )
>
> How can i get rid off  FilterToolbar  while exporting?
>
> 3 - It is very similar to question #2 - How can i make a CheckBoxColumn
> visibility "false" according to case.?
>
>
> Thanks.
>
> --
> *Altuğ*
> ** 
>


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 works great ! but every FilterToolbar elements
also exported too (Textfields ...) Also I tried to make FilterToolbar
visible before exported to excel like :

filterToolbar.setVisible(true);
super.respond(requestCycle); -- > exporting to excel
filterToolbar.setVisible(false); -- > recover it

but it doesn't work (- i made filterToolbar set
setOutputMarkupPlaceholderTag(true) - )

How can i get rid off  FilterToolbar  while exporting?

3 - It is very similar to question #2 - How can i make a CheckBoxColumn
visibility "false" according to case.?


Thanks.

-- 
*Altuğ*
** 


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 position:fixed).

After setting a position the element with large z-index is displayed in
front of the mask.
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/ModalWindow-and-z-index-tp3209922p3213703.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



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  wrote:

>
> Hello,
> I'm trying to create a dijit tooltip
> (http://docs.dojocampus.org/dijit/Tooltip) on a Modal window. However the
> tooltip is displayed behind it (and behind the mask also). I checked
> modal.css and modal.js and noticed the following:
> the "mask" that disables everything on the page has a z-index 2 and the
> modal window itself has a z-index 20001 (I assume that by this the window
> stays on top of the mask). I tried to set a much larger z-index value to
> the
> tooltip, but it's still displayed behind the mask and the window.
> Also tried a simple  tag with larger z-index value on a random place
> of
> the page (outside the window) but it's still hidden behind the mask.
> Is there a way to display something in front of the window and the mask
> while the window is opened? Thanks in advance.
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/ModalWindow-and-z-index-tp3209922p3209922.html
> Sent from the Users forum mailing list archive at Nabble.com.
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>