javascript - ng expression not working in bootstrap modal title -
i have bootstrap model title want use ng-expression. binding happening, not on initial load. ill have click on textbox or dropdown in modal ng-expression load on title.
html tag
<h4 class="modal-title"><b>feedback - {{name}} </b></h4>
modal not open on click of button in html,it opens on click of cell in handsontable.
handsontable code:
hot.addhook('afteroncellmousedown', function (event, coords, td) {/*pop-up event*/ if ((coords.col == 11 && td.innerhtml != '') || td.innerhtml == undefined) { $scope.name="name"; $("#modal").modal("show"); } });
what issue? way re render modal?