Hi There, i cannot get the datasource to work. Specifically the issue is passing the GET parameter. The only way i've gotten the read to work is to place the paramter directly in the READ URL:
$(document).ready(function () {
var dsCategories = new kendo.data.DataSource({
transport: {
read: "/CostDriver/GetCostDriverCategoriesByRegion/" + $("input[name='region']:checked").val() ,
...
The issue is, on the click of radio button from where this value is coming from, the read uses the ORIGINAL value from the radiobuttongroup from when the page initially loads. Onclick of this radiobuttongroup calls the datasource read but the new value is NEVER sent.
HOW HOW HOW do you properly use the DATA property in the transport? I have tried everything and it does not work.
I'm relatively new to Kendo UI and just had a question about filtering a grid by using values from a combobox. From my understanding I can do something like this:
I've tried this and leads it filters my grid with my desired results, but if I go about it this way and try to add a new item, the item is then added to the unfiltered page of the grid (which is not desirable). From a few other posts I have read, I found I could navigate around this issue simply by adding a few things to to the filter command, like so:
Having that allows me to, when I click add a new item, to have that item show up on the filtered page of the grid. However, I am then unable to save that newly created instance. I wonder is there another way of filtering a grid using a combobox? If there is, any help/ advice would be really helpful.
I'm creating donut charts and setting the title like this:
$("#"+ divName).kendoChart({
title: {
text: "my title"
},
My problem is that the series title comes from the json object I use to populate the chart.
Is it possible to set the chart title using the same binding feature of the one in the series object? (categoryField, field, colorField, etc...).
Something like:
Hi, I'm looking at the "binding to local source" treeview demo below and was wondering how do you structure this AND the schema to allow 3+ levels of "subCategeries" for something like a parts list. I'm playing with local data but want to eventually populate from remote data and with the list initially expanded.
Once I find this out, I want to use that format to build the JSON response sent from the service. Thanks.
Hello I am using Kendo UI Treeview and loading the nodes dynamically from a Json Data source.The nodes are getting loaded correctly, but when i expand a node it is calling the webapi, if it does not have any child nodes it is not suppose to show the arrow, but it is. Can anybody help me suggest some solution?
when I use a template to specify the layout of a cell within a grid, the filter icon is not displayed anymore (see red square in comparison to the green one in my image).
I'm having a problem with at least one of the demos when using the latest normal version of chrome -- http://demos.kendoui.com/web/dropdownlist/index.html
When I click the dropdown it shows the list of cap colors, but when I select one it doesn't work. It works fine in IE and firefox. I'm also having problems with this in my application (thus why I looked at the demos). Should I file this as a bug somewhere with you?