I need to data bind the radio button to the value that comes from the database
html
<input type="radio" name="dateRange" value="selectByDays" data-bind="checked: daysSelected">
I checked using the pre data-bind
tag to see whether daysSelected
is passed properly and it is. But the radiobox is still not being selected when daysSelected = true
Any ideas?