Reputation: 6208
I created simple dialog window using jquery-ui. It's look like this:
<div id="dialog-form" title="Add Attribute Category">
<input type="radio" id="priceable" name="price" value="true" checked="checked"/> Priceable
<input type="radio" id="priceless" name="price" value="false"/> Priceless
</div>
This code works only in Firefox.
In other browsers like Chrome or IE all radio buttons not checked.
Maybe someone can help me and give advice?
Sorry for my bad English.
UPDATE add whole picture in chrome
the same dialog box in firefox
Upvotes: 1
Views: 1610
Reputation: 5437
Try this one
<div id="dialog-form" title="Add Attribute Category">
<input type="radio" id="priceable" name="price" value="true" checked ="checked"> Priceable
<input type="radio" id="priceless" name="price" value="false"/> Priceless
</div>
Upvotes: 0
Reputation: 780
try:
<div id="dialog-form" title="Add Attribute Category">
<input type="radio" id="priceable" name="price" value="true" checked/> Priceable
<input type="radio" id="priceless" name="price" value="false"/> Priceless
</div>
but surprisingly your code works very fine on my system..
Upvotes: 2