How can I use the kendo tooltip with the kendo combo box? I can successfully show a tooltip on a plain <input> element, but once I turn the input element into a kendo combo box, the tooltip will not work anymore. Here's a code sample: http://dojo.telerik.com/uMafI. If you replace the <input> line with the commented out line, then you will see the tooltip.
It looks like the tooltip is being applied to the original element and not the element that is created by the kendo-combobox directive. If you go into the developer tools and remove the "display: none" on the original element, then you will see the tooltip when you hover over the previously hidden original element.
Thanks,
Michelle
Hi All,
I used getOptions and setOptions in our project with no issue, except for one. I re-applied the click event back to the command button after using grid.setOption with the following script
var sourceClickEvent = columnClickEvent; //columnClickEvent calls myfunction ()
$.extend(myTarget.dataSource.options.fields[j].command[k], { click: sourceClickEvent });
and I can see the click event for the command button, but every time I click on the button the click event does not fired. Could anyone tell me what I did wrong?
TIA
Hi,
I am trying to add a line chart to the candle stock chart.
For example, in this demo basic stock chart, http://demos.telerik.com/kendo-ui/financial/index , I need to add a line chart inside the chart area. I tried adding another series and specified the chart type as "line". But line chart is not showing up.
Please check the attached file. The red line is the one I have to add using Kendo. If it's possible to do, please give me any examples or demo.
Thanks,
Kyaw
With best regards
Johann

Hello!
I have a kendoTooltip which in the contentLoad loads a kendoGrid with a dataSource, the columns and everything. The problem is: I have a column which have a lot of characters and I wanna edit this column like this:
columns: [
{field: "comment", title: tooltipHeaderTranslations.COMMENTS, width: "400px"},
]
But when I'm in the tooltip the width is the same as before.
What should I do?

Hi,
I have a DropDownList that is opened in a grid cell.
I want that when I open the DropDownList, the width of each item will be of the largest item.
My CSS:
.k-list-container {
width: auto !important;
}
.k-list-container .k-list .k-item {
padding-left: 25px;
}
It doesn't work as expected. It takes the largest item length, but in some grids it adds more space so it's longer than it should be.
(it's not the padding-left: that's for the scroll).
Thanks
If column widths don't exceed the width of the Grid the rest of the space available is split among the columns. Is there a way to avoid this behavior? I have two action columns on my grid and I want them to be the same size no matter what. The rest of the columns can take the rest of the width of the grid.
The grid I'm using is not scrollable. I know that I could make the grid scrollable and not set the width of the last column (the last column would receive the extra width), but this is not acceptable because setting the grid to scrollable does not work with screen readers.
Dominik

Hi.
Why drag and drop task isn't change the "recurrenceRule" on the element i get on:
dataSource.transport -> update: function (options) -> options.data
Thnaks
Hi,
I try to use a Kendo UI Grid in a Cordova application. If I open the HTML file in browser it looks good. If I open the Cordova application the header and the footer of the Grid looks good too, but the body looks like all the values of the rows and columns are in a single line.
My HTML Code looks like this:
<kendo-grid options="mainGridOptions"></kendo-grid><script id="rowTemplate" type="text/x-kendo-tmpl"> <tr data-uid="#: uid #"> <td><span>#: FirstName #</span></td> <td><span>#: LastName #</span></td> <td><span>#: Country #</span></td> <td><span>#: City #</span></td> </tr></script>With regards,
Johann