Hi I am trying to create breadcrumbs for a treeview.
a came across a JSfiddle http://jsfiddle.net/korchev/nktUe/8/ Which does work but e.node is not allways available especially if the datasource is changed.
I was wondering if anyone has had any luck with breadcrumbs on a tree view.
When I'm using Angular Grid I'm getting an error in console each time the grid loads as "Cannot read property 'removeClass' of null" .This was getting in the console when I use persist state for grid.
I'm using set options method to set local storage data to grid.
var options = localStorage"departmetsOptions"]; var response = JSON.parse(options); $scope.departmets.setOptions(response);Please assist to fix the issue.
I am trying to do this
http://demos.telerik.com/aspnet-mvc/dropdownlist/serverfiltering
It looks like I dont have to have any special action in the controler
This is my ddl
@(Html.Kendo().DropDownList() .Name("commonCreditorID") .DataTextField("CREDITOR_NAME") .DataValueField("COMMON_CREDITOR_ID") .HtmlAttributes(new { style = "width:250px" }) .Filter("contains") .DataSource(source => { source.Read(read => { read.Action("CommonCreditors_Read", "Home"); }) .ServerFiltering(true); }) )this is my action
public ActionResult CommonCreditors_Read(){ GetLoggedUser("/"); EntitiesModel entities = new EntitiesModel(); var creditors = entities.TBL_COMMON_CREDITORS_LISTs .Where(cc => !cc.OUT_OF_USE) .OrderBy(o => o.CREDITOR_NAME) .Select(cc => new { cc.CREDITOR_NAME, cc.COMMON_CREDITOR_ID }); return Json(creditors, JsonRequestBehavior.AllowGet);}it isnt filtering when I type..any ideas?

function anonymous(d, __f, __o) {return (d.Enabled == true && (d.DateCreatedDate || '').toLowerCase() == '2015-01-22t05:00:00.000z')}Hi
I have a Kendo Grid that has a Column which has had the filter customised to be a drop down select instead of a text box. This works perfectly until you save the grid layout, after that the standard filter is being shown.
Can anyone explain to me how I deal with this? It also seems to affect my custom groupHeaderTemplates too.
Many Thanks
Mike
kendo messages file contains if check for widget loaded. So I cannot load it once globaly (or maybe I'm wrong),
Could you advice how to load this file to affect all widgets, that are loaded dynamically in spa application? Is the only option to load it every time? which can be problematic
Kind Regards?
Have a grid that I'm currently filling out via Angular like so:
<tbody>
<tr ng-repeat="customer in customers | orderBy: 'domain'" ng-if="customer.email" >
<td>{{customer.namebspr}}</td>
<td>{{customer.nummer}}</td>
<td>{{customer.domain}}</td>
<td>{{customer.domain2}}</td>
<td>{{customer.domain3}}</td>
<td>{{customer.domain4}}</td>
<td>{{customer.domain5}}</td>
</tr>
</tbody>
Can I do the same thing with a spreadsheet, or do I need to pull the json data directly?
Click here to view dojo.
The date labels at the bottom are wrong. They should all be five days apart, but the labels "11-06-16" and "11-10-16" are only four days apart. This messes up the remaining date sequence.
I also noticed this. The second task's (JP task) bar representation does not go from beginning to end dates, but the first task (Ted task) displays properly.
Please advise.
Thank you for your help with this matter.