Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Hi Tejas,
dont know exactly if i can answer your question .this is how i coded my view to obtain similar result.
@(Html.Kendo().Grid<BHEBS.Areas.Admin.Models.OCRateType>() .Name("ocGrid") .Columns(columns => { columns.ForeignKey(p => p.ContractorOwnerId, Model.Contractors, "ContractorOwnerId", "ContractorName").Width(100).EditorTemplateName("GridForeignKey"); columns.Bound(p => p.Rate).Width(40).EditorTemplateName("Currency"); columns.Bound(p => p.EffectiveDate).Width(60).Format("{0:MM/dd/yyyy}").EditorTemplateName("DateTime"); columns.Command(command => command.Destroy()).Width(60); }) .ToolBar(toolbar => { toolbar.Create(); }) .Editable(editable => editable.Mode(Kendo.Mvc.UI.GridEditMode.InCell)) .Pageable() .DataSource(dataSource => dataSource .Ajax() .Model(model => model.Id(p => p.Id)) ) )