I'm developing an AngularJS app with Kendo UI Professional. Using the theme builder and the default theme as a base, I've set the color desired color values and downloaded my custom theme. In my index.html I've included the kendo.common-bootstrap.min.css file, followed by my kendo.custom.css which has the desired color selections on everything except chart series colors. All chart series colors default to the default theme colors. What am I doing wrong? I've tried other themes as well (Metro, Fiori, etc...) with the same outcome.

.k-tool-icon.k-state-active.k-state-hover { background-image: url('http://da7xgjtj801h2.cloudfront.net/2012.3.1315/styles/Metro/sprite.png');}
//Old recurrence exception:recurrenceException:"20160603T050000Z;20160503T050000Z;" //New recurrence exception:recurrenceException:"20160603T050000Z,20160503T050000Z"I've got "nested" json data that I'm attaching as local data to the datasource of a grid. Each row has some normal "flat" values (like "rowID"), and also "keyedInfo" array, which in turn is also an array (keys like "key1" and "key2") where one attribute of each element ("theVal") is of interest for displaying as a grid column. I've got a simple example in the dojo:
I'm never to sure how much support the DataSource has for nested data, but by specifying "keyedInfo: {}" in the dataSource fields definition, this mostly works! I can specify "keyedInfo['key1'].theVal" as an entry in the grid's "columns" definition, and it displays the appropriate value from the data. I can also, as expected, do aggregate totals of the flat attributes (like "count" on rowID). However, there doesn't seem to be any way to aggregate the columns that are from the nested values.
I have {field: "keyedInfo['key1'].theVal, aggregate: "sum"} entries in the dataSource aggregate definition, and it doesn't raise any errors, so it is either being ignored or actually calculating the aggregate. But a footerTemplate of "#=sum# for these sorts of columns raises a Javascript error that "sum" isn't defined (uncomment one of them in the dojo example to see this). Is there any chance that the aggregate has been calculated and I just need a more complex reference in the template?
If not, is there any hope that support might get extended to this case? I suspect that the lack of definition support in the "schema" may be preventing the aggregate from having a way to refer/store the desired aggregate, but it would be very nifty if a way could be found - flattening the data source will be a pain.
I have a diagram that I finally got working, but with 8000 nodes in the org chart, I've been trying to filter based on "levels" to no avail.
Is it possible to filter the datasource for a diagram and have the diagram redraw? The data is, for the most part local data (populated via ajax as that is the only way I could get this thing to show properly). I reload the local data then try to .fetch(), and .read(), but nothing works.
I've also tried to destroy the diagram and recreate it, but that seems to kill the DOM.
So, I though I could just filter the datasource based on the "level". Is this possible?
Tim
Hi,
My view loads treemap data dynamically, if you click on treemap tile it nevagate to URL which working perfectly fine. but There are custom filter option on page which will rebind treemap with new data.
Problem from here, So i apply filters (rebind treemap data) and click on tile of treemap it works and open popup 2 times, say suppose if i applied filter 5 times (rebind dynamic data 5 times with treemap) and i click on tile, it execute click event 5 times.
Page with treemap & custom filter option, when i change filter option and click on apply filter will again build tree with new data.
createTreeMap();
$(document).bind("kendo:skinChange", createTreeMap);
function createTreeMap() {
$("#treeMap").kendoTreeMap({
dataSource: {
transport: {
read: {
url: buildUrl,
dataType: "json"
}
},
schema: {
model: {
parameterid: "ParameterMID",
hasChildren: "HasChild",
children: "ParameterChilds"
}
}
},
textField: "ParameterName",
valueField: "ParameterWeight",.....and more
}
I hope you understand what i mean.
How do I vertically align list items in drawer to top in Nova Theme?
I would like it to appear like this
----------
Item
item
item
space
space
---------
Not like this
----------
space
item
item
item
space
----------
Thanks
@(Html.Kendo().AutoComplete() .Name("policyComboBox") //The name of the combobox is mandatory. It specifies the "id" attribute of the widget. .DataTextField("POL_Policy_Number") //Specifies which property of the Product to be used by the combobox as a text. .Filter(FilterType.Contains) .MinLength(3) .DataSource(source => { source.Read(read => { read.Action("GetPolicyList", "PolicyReview") //Set the Action and Controller name .Data("onAdditionalData"); }) .ServerFiltering(true); //If true the DataSource will not filter the data on the client. }) )<script> function onAdditionalData() { return { text: $("#policyComboBox").val() }; } function requestData(selector) { var combobox = $(selector).data("kendoComboBox"), filters = combobox.dataSource.filter(), value = combobox.input.val(); if (!filters) { value = ""; } return { text: value }; }</script>public JsonResult GetPolicyList() { IQueryable<POLICY> POLCY = (from p in ctxt.Policies select p); return Json(POLCY, JsonRequestBehavior.AllowGet); }Hi ,
I have a query related to grouping feature. Can this feature is available in Kendo UI
1) Can we get the aggregate values in the groupheader template at the respective column position. screen shot is attached. marked in red color.
2) Can we get only the summary columns in Kendo UI. Not the child rows (marked in yellow color). only needed aggregate values.
Thanks,
JKM