please is there option to add a new kendo drop down list in dynamically created table. I am trying in normal aspx page. how to achieve, i am binding data with json object with page method from vb page.
I'm using a Jquery Tools Tooltip component inside a Kendo Grid.
The tooltip is displayed when the mouse hovers the UserName link (see the screenshot, the tooltip is displayed when the mouse hovers "test1" link) ; but the tooltip is hidden behind the grid's header. I'm playing with the z-index of the tooltip in firebug but nothing changes...
Any idea ?
btw will you release a tooltip component in the next versions of KendoUI?
http://jsfiddle.net/mysterii0/Te8cY/
Please see the link above to jsfiddle.. I'm not sure if this is a 'correct' way of creating extension of a kendoui widget, but it seems to work for what I wanted to do.
I have a "sign in" button on a view and when a user clicks on it, I want it to run a javascript method. It seems simple and I have a sample one page app which works. However my actual app is several pages and for some reason the same html doesn't work when I copy it from the sample page to the real app. I'm currently trying 3 ways to call the javascript method, but i think the first one is the right way.
<a data-role="button" data-click="signInButton">Sign In</a> <a data-role="button" href="javascript:signInButton();">Sign In 2</a> <a data-role="button" onclick="signInButton()">Sign In 3</a>
And the javascript is currently very simple, just popup and alert so I know the method got called and navigate to another view.
function signInButton(e) { alert('signInButton'); app.navigate("#phoneMain"); }
Here is the current app http://jsfiddle.net/jwhitmer/vsPye/
A few other forum posts helps me get this far. It runs on iPhone, iPad, Android phone and Blackberry phone. I'm amazed at what Kendo UI can do with so little coding on my part.
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.