I need some help building a bootstrap Angular UI modal. This is what I have so far, but I am pretty sure it is wrong. Any assistance would be good. This actually appears to be doing mostly bootstrap stuff. It was originally jquery, but I figured out the hard way that jquery does not mix with Angular Js well.
<div id="excelModal" modal="excelModal" close="cancel()" hidden>
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" hidden>×</button>
<h4 class="modal-title">Excel Upload</h4>
</div>
<div class="modal-body">
<p>Please upload an excel file that contains the data you are wishing to include in the report parameters.</p>
</div>
<div class="modal-footer">
@using (Html.BeginForm("UploadExcel", "Home", FormMethod.Post, new { enctype = "multipart/form-data", @role = "form" })) {
<div class="form-group">
<label for="excelFile">Excel File:</label>
<input id="excelFile"
class="form-control"
name="excelFile"
type="file" />
<button class="btn btn-primary form-control btn-success"
type="button"
data-dismiss="modal"
ng-click="ExcelUpload()" hidden>
Submit
</button>
</div>
}
<button type="button" class="btn btn-primary" ng-click="close()" data-dismiss="modal" hidden>Close</button>
</div>
</div>
</div>
</div>