Re: DataTable FilterToolbar Shifted After AJAX Call

2007-10-11 Thread UPBrandon

Oh, well that's good to hear.  My team and I are using the last major
release, beta 3.  I will see if a more recent build fixes the problem and
add a Jira ticket if it doesn't.  Are nightly stable builds available
anywhere?

-Brandon


Evan Chooly wrote:
> 
> What version of wicket are you using?  I saw this with beta3 but later
> snapshots fixed it for me.  So if you're not on a recent snapshot, you
> might
> consider trying that and seeing if that helps.
> 
> On 10/10/07, UPBrandon <[EMAIL PROTECTED]> wrote:
>>
>>
>> I am working on a project that has a DataTable with a filter that uses
>> AJAX
>> to update an object on the backend and refresh the table, among other
>> things.  Everything is working well so far except the columns in the
>> filter
>> toolbar row are shifted one column to the right after the AJAX refresh.
>> Using Firebug to inspect the toolbar row after the update, I see that
>> everything is shifted one to the right because Wicket is inserting a
>> 
>> in the  before the 's.  So instead of
>>
>> 
>> ...
>> ...
>> 
>>
>> I have
>>
>> 
>> 
>> ...
>> ...
>> 
>>
>> The contents of the  are:
>>
>> > value="" wicket:id="focus-tracker"
>>
>> name="checkGroup:equipmentDataTable:topToolbars:2:toolbar:filter-form:focus-tracker"
>>
>> id="queueDetailsPanel:checkForm:checkGroup:equipmentDataTable:topToolbars:2:toolbar:filter-form:focus-tracker"/>
>>
>> If it makes any difference, when I do the update, I am not updating the
>> DataTable directly - I am updating a higher level Panel that contains the
>> DataTable.  Has anyone else had any similar problems?
>>
>> -Brandon
>> --
>> View this message in context:
>> http://www.nabble.com/DataTable-FilterToolbar-Shifted-After-AJAX-Call-tf4601906.html#a13139327
>> Sent from the Wicket - User mailing list archive at Nabble.com.
>>
>>
>> -
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>
> 
> 

-- 
View this message in context: 
http://www.nabble.com/DataTable-FilterToolbar-Shifted-After-AJAX-Call-tf4601906.html#a13160984
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: DataTable FilterToolbar Shifted After AJAX Call

2007-10-11 Thread Evan Chooly
What version of wicket are you using?  I saw this with beta3 but later
snapshots fixed it for me.  So if you're not on a recent snapshot, you might
consider trying that and seeing if that helps.

On 10/10/07, UPBrandon <[EMAIL PROTECTED]> wrote:
>
>
> I am working on a project that has a DataTable with a filter that uses
> AJAX
> to update an object on the backend and refresh the table, among other
> things.  Everything is working well so far except the columns in the
> filter
> toolbar row are shifted one column to the right after the AJAX refresh.
> Using Firebug to inspect the toolbar row after the update, I see that
> everything is shifted one to the right because Wicket is inserting a 
> in the  before the 's.  So instead of
>
> 
> ...
> ...
> 
>
> I have
>
> 
> 
> ...
> ...
> 
>
> The contents of the  are:
>
>  value="" wicket:id="focus-tracker"
>
> name="checkGroup:equipmentDataTable:topToolbars:2:toolbar:filter-form:focus-tracker"
>
> id="queueDetailsPanel:checkForm:checkGroup:equipmentDataTable:topToolbars:2:toolbar:filter-form:focus-tracker"/>
>
> If it makes any difference, when I do the update, I am not updating the
> DataTable directly - I am updating a higher level Panel that contains the
> DataTable.  Has anyone else had any similar problems?
>
> -Brandon
> --
> View this message in context:
> http://www.nabble.com/DataTable-FilterToolbar-Shifted-After-AJAX-Call-tf4601906.html#a13139327
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


Re: DataTable FilterToolbar Shifted After AJAX Call

2007-10-11 Thread Matej Knopp
That's a problem of DataTable producing invalid markup, that the
browser is not able to replaced by ajax call (but it is able to
process it on regular request). I'm afraid there is no solution
currently for your problem. Please add a JIRA entry, possibly with a
quickstart to reproduce the problem.

-Matej

On 10/10/07, UPBrandon <[EMAIL PROTECTED]> wrote:
>
> I am working on a project that has a DataTable with a filter that uses AJAX
> to update an object on the backend and refresh the table, among other
> things.  Everything is working well so far except the columns in the filter
> toolbar row are shifted one column to the right after the AJAX refresh.
> Using Firebug to inspect the toolbar row after the update, I see that
> everything is shifted one to the right because Wicket is inserting a 
> in the  before the 's.  So instead of
>
> 
> ...
> ...
> 
>
> I have
>
> 
> 
> ...
> ...
> 
>
> The contents of the  are:
>
>  value="" wicket:id="focus-tracker"
> name="checkGroup:equipmentDataTable:topToolbars:2:toolbar:filter-form:focus-tracker"
> id="queueDetailsPanel:checkForm:checkGroup:equipmentDataTable:topToolbars:2:toolbar:filter-form:focus-tracker"/>
>
> If it makes any difference, when I do the update, I am not updating the
> DataTable directly - I am updating a higher level Panel that contains the
> DataTable.  Has anyone else had any similar problems?
>
> -Brandon
> --
> View this message in context: 
> http://www.nabble.com/DataTable-FilterToolbar-Shifted-After-AJAX-Call-tf4601906.html#a13139327
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



DataTable FilterToolbar Shifted After AJAX Call

2007-10-10 Thread UPBrandon

I am working on a project that has a DataTable with a filter that uses AJAX
to update an object on the backend and refresh the table, among other
things.  Everything is working well so far except the columns in the filter
toolbar row are shifted one column to the right after the AJAX refresh. 
Using Firebug to inspect the toolbar row after the update, I see that
everything is shifted one to the right because Wicket is inserting a 
in the  before the 's.  So instead of


...
...


I have



...
...


The contents of the  are:



If it makes any difference, when I do the update, I am not updating the
DataTable directly - I am updating a higher level Panel that contains the
DataTable.  Has anyone else had any similar problems?

-Brandon
-- 
View this message in context: 
http://www.nabble.com/DataTable-FilterToolbar-Shifted-After-AJAX-Call-tf4601906.html#a13139327
Sent from the Wicket - User mailing list archive at Nabble.com.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]