Skip to main content

Posts

Showing posts from April, 2015

ajax call using jquery in asp.net

Event: <a class="btnTwo btnTwoOrange btnSelectSend" href="JavaScript:" id="btnSelectSend" onclick="SendEmail();">Gönder</a> Javascript: <script type="text/javascript"> function SendEmail() { var bookId = document.getElementById("BookID").value; var name = document.getElementById("sendername").value; var email = document.getElementById("senderEmail").value; $.ajax({ type: "POST", url: "Forbes.aspx/SendEmail", data: "{ bookId: '" + bookId + "',name: '" + name + "',email: '" + email + "'}", contentType: "application/json; charset=utf-8", dataType: "json", async: "true", cache: "false", success: function (

kendo ui grid hide toolbar button

If you want to hide or show any toolbar button (Add, Edit & delete) of kendo UI grid you can use this script . $(document).ready(function () { // Your Grid // menu enable & disable var MenuEdit = '@ViewData["MenuEdit"].ToString()'; alert(MenuEdit); if (MenuEdit == 0) { $(".k-grid-add", "#DefaultGrid").hide(); $(".k-grid-edit", "#DefaultGrid").hide(); $(".k-grid-delete", "#DefaultGrid").hide(); } else { $(".k-grid-add", "#DefaultGrid").show(); $(".k-grid-edit", "#DefaultGrid").show(); $(".k-grid-delete", "#DefaultGrid").show(); } }); Note: Define the script after your Ke