Hi guys,
I have a requirement to re-implement grid grouping but instead of grouping within the grid itself, I need to generate a separate tree view outside of the grid element. The tree view side of it is fine, but I couldn't see any way that I could set the grid to be groupable (thus showing the groups bar) without grouping being applied to the grid itself. I tried preventingDefault on the group function but this prevented the columns being dropped onto the group bar itself as it seems to be something that occurs after the grid has refreshed.
So now, instead, what I'm trying to do is add a div outside the grid that I can use as a drop target for my grid columns to be dropped on to but this doesn't seem to be working
Here's the dojo: http://dojo.telerik.com/@mancmanomyst/AJoBIj
Could you point me in the right direction for allowing the grid columns to be dropped on my target div?
Enum class
public class Voltage { public int Id{ get; set; } public string RefNo { get; set; } public VoltageLevel VoltageLevel { get; set; } } public enum VoltageLevel { LV = 1, MV = 2, HV = 3 }
Controller
public ActionResult Voltage_Read([DataSourceRequest]DataSourceRequest request) { IQueryable<Voltage> voltage= db.Voltage; DataSourceResult result = voltage.ToDataSourceResult(request, voltage=> new { Id = voltage.Id, RefNo = voltage.RefNo, VoltageLevel = voltage.VoltageLevel, }); return Json(result); }
View
@(Html.Kendo().Grid<entities.voltage>().Name("grid").Columns(columns =>{columns.Bound(c => c.RefNo);columns.Bound(c => c.VoltageLevel); //here the voltagelevel didnt show. })Hi Team,
I want a horizontal form in between kendo grid header and body, Is it possible to add a form with same grid columns in kendo grid. Please find the below attached screen shots for reference
Thanks,
S
Hi,
is there a way to add a tooltip to category axis labels?
Thank you
Is there a recommended way to implement deep linking of a TabStrip in an Angular application?
- the url should change when selecting a tab
- when an url is entered which contains a tab information, the corresponding tab should be activated
I am using the standard angular router.
Thanks a lot!

Hi,
Is it possible to Add custom cell attributes to each cell in kendo spreadsheet.
For Eg: Apart from
"rows: [{ height: 70, cells: [{ index: 0, value: "Invoice #52 - 06/23/2015", fontSize: 32, background: "rgb(96,181,255)", textAlign: "center", color: "white"}]}"
can we add a custom attribute like "CellType":"headers" to each cell. If yes then can you please guide me as to how it can be done.
Thanks & regards
Swathi
Is it possible to use the KendoUI for jQuery with Vue.js?
Thanks