Hey guys,

I'm running into a problem and I can't seem to find a solution on the web. 

What I am basically doing is building my HTML control within Angular control

$scope.RadioButtonBuilder = function(){

        var OptionBuilder = '<input type="radio" ng-model="SingleSelection" 
name="SingleSelection" value="Option[i]"  ng-change="SelectedOption()" />';

        return $sce.trustAsHtml(OptionBuilder );
}


The above function displays the set of options fine. The problem is, trying 
to execute the ng-change(); Nothing happens when I select through the list. 
Any ideas? Is it how $sce renders?

-- 
You received this message because you are subscribed to the Google Groups 
"Angular" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to