Hi,
please help me with issue.. I've added bootstrap toggle in two of my asp.net forms. It is working in one but not in other despite all links and references & all definitions being correct.. below is what I've written:
<%-- Bootstrap Toggles --%>
<link href="https://gitcdn.github.io/bootstrap-toggle/2.2.2/css/bootstrap-toggle.min.css" rel="stylesheet"/>
<script src="https://gitcdn.github.io/bootstrap-toggle/2.2.2/js/bootstrap-toggle.min.js"></script>
<style>
.toggle.ios, .toggle-on.ios, .toggle-off.ios {
border-radius: 20px;
width:110px;
}
.toggle.ios .toggle-handle {
border-radius: 20px;
width:40px;
}
</style>
<%-- aspx markup below --%>
<div class="box-footer">
<div style="float: right">
<input type="checkbox" id="msgtoggle" runat="server" checked data-toggle="toggle" data-style="ios" data-on="<i class='fa fa-paper-plane-o'/> Send" data-onstyle="success" data-off="<i class='fa fa-ban'/> Don't send" data-offstyle="danger" />
</div>
</div>
Please help..!!