G'day

I have been finding bits and pieces of how to fix migration issues
between 1.1 and 1.2. (wonderful beast BTW). But cannot figure out why
my radio buttons look more like little popsicle sticks than circles
where a dot goes. I am not using any css on the radio buttons, but the
following is the line that results in the problem.

  <?php
      echo $form->radio('IssueDetail/Warranty_Code', array('1' =>
'None', '2' => 'Dealer Warranty (90 days)', '3' => 'Factory Warranty',
'4' => 'Extended Warranty'), array( 'size' => '1', 'label' => false,
'separator' => '<br>', 'value' => '1' ));
?>


I finally put this code at the top of my default.ctp to make sure it
would completely outside any divs that would affect it, same result.
I know the fieldsets are there the resulting code is:

<fieldset><legend>Warranty Code</legend><input type="radio"
name="data[IssueDetail][Warranty_Code]" id="WarrantyCode1" size="1"
value="1" checked="checked"  />None<br><input type="radio"
name="data[IssueDetail][Warranty_Code]" id="WarrantyCode2" size="1"
value="2"  />Dealer Warranty (90 days)<br><input type="radio"
name="data[IssueDetail][Warranty_Code]" id="WarrantyCode3" size="1"
value="3"  />Factory Warranty<br><input type="radio"
name="data[IssueDetail][Warranty_Code]" id="WarrantyCode4" size="1"
value="4"  />Extended Warranty</fieldset>

I'm hoping I've got an initial config wrong because even the radio
button example from "http://www.donutczar.com/blog/?p=3"; does the same
thing, the radio button appears to stretch to the maximum width of the
div or in this case the entire  browser window? Can anyone help
please? Happy to read but am currently out of material.....;-)

To save folks the trouble, the donutczar site has :
<?php echo $form->radio('Contacts.firstName',array('yes','no')); ?>


Thanks...
ldb



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to