Using the drawing API, we can draw on the chart itself for flexible annotations.
My grid with server side filtering returns 3 rows. But the returned rows are hidden by client side filtering. It shows no rows. For example: My filtering on server side returns 15 rows in two pages (pagesize: 10). But the client side filtering hides all rows but the single row satisfying the condition which is in the second page. So all records in the first page is hidden. In my opinion, all 15 items should be displayed. or the record satisfying the condition should be shown in the first page itself.
Kendo grid column custom command should either have option to pass template or have dataItem as default parameter along with jquery event. Currently cannot get the dataItem
Can you provide grails with kendo ui configuration steps
Stacked bar chart issue, undefined is shown in the series where a category data is not available among the series.
Sir, Do you have pivot grid like feature in kendo grid Thanks
You have datepicker. You have timepicker. Why not datetimepicker? A single input box that selects both a date and a time. Should be fairly straightforward, it just needs to display both ui widgets simultaneously and handle the different parsing in and output logic.
Would be nice with some sort of table support in the rich text editor. Normally we need a very stripped down RTE since it only represents a part of a page (a block), so the bells and whistles of tinymce are a bit overkill. However it seems that even though it might be difficult to use in an RTE due to complex UI, we often get questions regarding how to insert a table into a text. Not a complex table, but just a simple table with maybe a class, some th and td's. It would be really nice if we could stop integrating tinymce and just stick to one library, with a little more beefier RTE in Kendo UI. :)
I find myself having to define fields and columns multiple times for use in grids and data sources. It would be nice to be able to use a single structure that would work for both. The visible setting would control if the field is displayed in the grid or not. For example: _myColumns = [ { field: "Position.Name", title: "Position", width: 20, type: "string", editable: true, visible: false }, { field: "Headcount.value", title: "Headcount", width: 15, type: "string", editable: true }, { field: "FTE.value", title: "FTE", width: 15, type: "string", editable: true }, { field: "EmployeeName.value", title: "EmployeeName", width: 50, type: "string", editable: true }, { field: "JobCode.value", title: "JobCode", width: 20, type: "string", editable: true }, { field: "JobTitle.value", title: "JobTitle", width: 100, type: "string", editable: true } ] then, this can be used in $().kendoGrid( { columns: mycolumns } ) and the data source $().kendo.data.DataSource( { fields: mycolumns } ).
It would be nice if there was an additional dropdown in the Editor that was populated with CSS classes in my .css file. It would allow users of the application to style articles and other text consistently by simply selecting predefined styles for that layout. (Hopefully this isn't a duplicate)
...similar to a detail template, I'd like to be able to nest a Kendo grid of child records in single cell of a parent row.
Try looking at http://docs.kendoui.com/api/web/treeview There's both a method and an event named "select", picking the "select" event navigates to the "select" method instead. Consider prefixing the #select anchor, e.g. #method-select and #event-select to avoid conflict.
When displaying a large list (hundreds of items) in a list-view it takes a long time with many flicks to get to the bottom. I've been testing on a Galaxy Nexus, and in my gmail I can get to the bottom of my list of emails (hundreds) in just a couple of flicks. It seems the kinetic scrolling in kendo ui mobile doesn't scale well with longer lists, it scrolls the same number of items no matter the size of the list. Whereas the native behaviour seems to keep scrolling for longer and faster, scaling with the size of the list.
Editing raw HTML is sometimes very useful
would be nice to be able to manipulate the grid itself before to data is loaded (wich eventually takes some time). some manipulations on the grid seems to be irritating, if they are not happend till the full datasource is loaded
Now, we create a confirm window by these code: $(".exitBtn").click(function(e){ e.preventDefault(); var exitWindow = $("<div class='p20 tac' />").kendoWindow({ title: "exit...", resizable: false, modal: true }); exitWindow.data("kendoWindow").content($("#exit").html()).center().open(); exitWindow.find(".confirm,.cancel").click(function() { if ($(this).hasClass("confirm")) { alert("blabla..."); } exitWindow.data("kendoWindow").close(); }).end() }); <script id="exit" type="text/x-kendo-template"> <p>blabla...</p> </script> It's so complicate!!!!!!!!!! I want to coding in this way: $(".exitBtn").click(function(){ $("<div class='p20 tac' />").kendoWindow({ title: "exit...", content: "<p>blabla...</p>", resizable: false, modal: true, center: true, okVal: "Exit", cancelVal: "I don't", ok: function(){ alert(Exiting...); }, cancel: function(){ exitWindow.close(); } }); });
Add a css class to the treeview to style an item (change complete background, indent, font-style etc). Currently only a spriteCssClass is available, but is not applicable for the total line. Must be available like the spriteCssClass, so available in datasource.