I use in my Project telerik kendo ui, so I use kendo window, but button which inside kendo window does not firing click event. I try multiple different style but it seems not working. here my window html. and some javascript.
<div class="row">
<div class="col-md-7">
<div class="input-group">
<asp:TextBox runat="server" ID="txtUpgradePrice" CssClass="form-control" ClientIDMode="Static"></asp:TextBox>
<span class="input-group-addon"></span>
<asp:Button Text="SendITTTT" CssClass="btn btn-danger" ID="btnSendNewPrice" runat="server" OnClick="btnSendNewPrice_Click" />
<asp:LinkButton Text="Send it" CssClass="btn btn-danger" ClientIDMode="Static" ID="btnSendPrice" OnClick="btnSendNewPrice_Click" runat="server" />
</div>
<br />
</div>
<script>
$(document).ready(function () {var myWindow3 = $("#myModalNew").kendoWindow({
modal: true,
width: "800px",
draggable: false,
visible: false,
resizable: false,
}).data("kendoWindow");
$("#openBtn").on("click", function () {
myWindow3.center();
myWindow3.open();
});
$("#newModelClose").on("click", function () {
myWindow3.close();
}); });
function ShowLabel() {
// Note that the client ID might be different from the server side ID
document.getElementById('lblPriceState').style.display = 'inherit';
}
</script>
Do you have any information about kendo block server side in asp.net..