I\'m trying to integrate JQuery.iCheck (plugin for checkbox&Radio buttons styling).
I followed few suggestions here that said that the way to integrate a jQ
With the code from XaReSx answer I had one issue : When updating the model from the scope the radio doesn't changed.
I had to add a timeout in the model watch :
$scope.$watch($attrs['ngModel'], function (newValue) {
$timeout(function () {
$(element).iCheck('update');
})
})