How do you determine which radio button or checkbox to check by default ?
Default value with an input is quite simple :
[echo Form::input('textfield', Input::post('a_textfield', isset($example) ? $example->a_textfield : ''))]
I want to konw the best way to do the "isset" but with a radio button...
Am I clear ?