Mattler thanks for the tip, It did work like a charm, but I am bit confuse
about this behavior.

Regards,
RJ.


rmattler wrote:
> 
> Don't put the <input  type="radio" />  in a <td>.
> 
> Should be:
> 
> 
> 
>                    <tr>
>                         <td>Search feed by name:</td>
>                         <td><input type="text" wicket:id="feedName"/></td>
>                     </tr>
> 
>                     <tr>
>                          <td>
>                               
>                                     <input  type="radio" /> Match all
> conditions>
>                                     <input  type="radio" /> Match any
> conditions>
>                                     <input  type="radio" /> Match all news    
>                    
>                             
>                         </td>
>                     </tr>
> 
> 
> 
> 
> rjilani 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--tp22356116p22356811.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to