Ay: Şubat 2015

Kendo UI Grid Paging Disable

@(Html.KendoGrid<MusteriDto>(Model.musteriler) .Name("musterilerGrid") .Columns(columns =>; { columns.Template(@<text></text>).Title("Seç").ClientTemplate("<input type=’checkbox’ class=’checkbox’ name=’musteriSec’ />").Width("1%").HtmlAttributes(new { style = "text-align: center;" }); columns.Bound(c => c.Pk).Width("5%").Visible(false); columns.Bound(c…

jQuery input:text disabled / enabled

Sayfanızda bulunan bütün input kontrolleri pasif hale getirmek için aşağıdaki kod satırını kullanmanız yeterli olacaktır. jQuery(":input").attr("disabled", "disabled"); Sayfanızda pasif olarak…