프로그래밍/Kendo UI - Telerik
[.net mvc]Grid 페이지 이동 후 이전페이지로 돌아왔을 때 Grid 필터값 유지하는 방법
@(Html.Kendo().Grid() .Name("GridListBRB") .Columns(columns => { columns.Bound(c => c.IsChkYn).ClientTemplate("") .Width("1%").Title("").Sortable(false).Filterable(false); columns.Bound(p => p.CodeIdx).Hidden(true); columns.Bound(p => p.RowNum).Title("No").Width("2%").Sortable(false); columns.Bound(p => p.FileName).Title("파일명").Width("30%").HtmlAttributes(new { style = "text-align:left;" }).Sort..
2019. 8. 21. 09:11