you have two tds in your first tr, but 3 in your next one.

also wicket just generates the html, how the browser renders it is not
dependent on wicket.

-igor

On Thu, Mar 5, 2009 at 9:15 AM, rjilani <jil...@lifebiosystems.com> wrote:
>
> Hi: Gurus, I am trying to render a form and looks like wicket is not
> rendering the form elements in right sequence, here is my markup that is
> having the issues
>
>                     <tr>
>                        <td>Search feed by name:</td>
>                        <td><input type="text" wicket:id="feedName"/></td>
>                    </tr>
>
>                    <tr>
>
>                        <td><input  type="radio" /> Match all
> conditions</td>
>                        <td><input  type="radio" /> Match any
> conditions</td>
>                        <td><input  type="radio" /> Match all news </td>
>
>                    </tr>
>
>
> here is the java code
>
>              add(new TextField("feedName", new Model()));
>
>            add(new RadioChoice("conditionChoice", new
> Model(),conditionChoices ).setSuffix(""));
>
> when I run the code I see the radio button choices before the text field;
> any suggestions?
>
> Thanks,
> RJ.
> --
> View this message in context: 
> http://www.nabble.com/Is-this-a-bug-in-Wicket--tp22356116p22356116.html
> Sent from the Wicket - User 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
>
>

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

Reply via email to