
Hi,
if I use the newest or any of newer Versions of AngularJS, the Kendo UI components will not shown correctly. It looks like the directives does not work.
I use Kendo UI and AngularJS in a Cordova application.
With best regards
Johann
I am currently using the MetroBlack theme. I have a pop-up window that is all black, and it has a combo box inside of it. But the box is all white which does not look correct to me.
<select id="liveServer" class="comboStyle"> <option>ws://localhost:61623/stomp</option> <option>ws://vwdhad:61623/stomp</option></select>If I set the background color to pure black, to match the rest, then I loose the (v) down-arrow icon (it is also black) so I have resorted to this CSS, which makes is a dark grey backgrond and white text. But something tells me that the theme should be doing this automatically. What am I missing?
.comboStyle { font-family: Arial, sans-serif; font-size: 16px; padding: 4px 7px; color: #ffffff; background-color: #404040;}
I have the following grid. When I used just a title on the first column sorting worked fine. However, the title text did not line up with the following column heading which was aligne vertically in the 'middle' of the header cell.
In the current configuration, the title is at the bottom. Clicking once moves the title to the top of the cell and puts the sort arrow graphic underneath and at the very left of the cell. Clicking again changes the direction of the sort and arrow. Clicking a third time puts the title at bottom, without the sort arrow and restores the rows to their initial order.
Can I move the graphic to the end of the title, like it was before, but all in the middle of the header cell?
Thanks,
Rick
var meetingLogGrid = $("#meetingLogGrid").kendoGrid({ dataSource: logEntryDS, height: "100%", width: "100%", autoBind: false, groupable: false, sortable: true, pageable: { refresh: true, pageSize: 5, pageSizes: true, buttonCount: 5 }, columns: [{ field: "Created",// title: "Date/Time", format: "{0: yyyy-MM-dd HH:mm}", headerTemplate: "<div style='vertical-align:middle;'>Date/Time</div>", width: 135 }, { field: "LogEntry", title: "Description", headerTemplate: kendo.template($("#logGridTemplate").html()), template: "<div style='max-height:25px;overflow:hidden;'>#: LogEntry #</div>",// width: 360, sortable: false }, { command: [ { name: "more", click: function (e) { console.error("log grid e: ", e); e.preventDefault(); var tr = $(e.target).closest('tr'); var rowData = this.dataItem(tr); console.error("rowData: ", rowData); $("#LogEntryDateTime").val(rowData.Created.toString()); $("#LogEntryText").val(rowData.LogEntry); $("#LogEntryPopup").data("kendoWindow").open(); }}], width:80 }], editable: false // { mode: 'popup' }, }).data("kendoGrid");Hello!
Since I updated my kendo ui to the last version I had a problem with all the components, for example look at this:
The first image you can see "focus desactivated", the old project, when i click on the grid nothing happens, but now in this version when Iclick it appears a focus.
There is an option to disable it?
Thanks

Hi,
When the datasource changes the bar chart will also update to reflect. However the effect seems to be a re-draw, or creation of the chart again. ie the animation causes the bars to load vertically upwards from zero each time. What I would like to achieve is for the chart to adjust to the new data, from it's current bar values. Anyone done this or similar? There is another thread see here, http://www.telerik.com/forums/best-way-to-draw-chart-with-dynamically-changing-data but this reloads the chart from 0, rather than just changing the value from the current position, see fiddle.. http://jsbin.com/vifoziwiza/1/edit this is not the desired effect I'm after.
I want something more similar to the radial gauge (http://demos.telerik.com/kendo-ui/radial-gauge/index ) where the value changes and the needle just moves to the new position. Same effect on the bar chart, where the data changes and the bars just move to the new position.
Hello,
I'm using Kendo UI v2015.1.429, I need to show an event as background and full width column another events show as normally in schedule view. Please see details in attached image.
Is there any way to do that?
thanks advance,
If we go to site http://demos.telerik.com/aspnet-mvc/editor/custom-tools we have option to add Fieldset, now if we add fieldset at bottom of editor(please refer attached image) and press Enter, it will go to next line within that fieldset. We cannot get new line outside of fieldset.