I believe a kanban board for managing tasks woudl be a great new control. I see that you have something like this in TeamPulse already. In the new control it would be nice to set the number of columns, custom template for an item (but providing a template that resembles sticky pad note would be cool) and allow drag/drop between the columns. The D&D would need to be customizable so that the programmer could restrict which columns an item can move to & from. This would be needed in case they did not want to allow the user to move an item to a previous state or may only allow to move forward 1 step. The reason I put this under bootstrap is because the control should reposition columns below based on screen size. So it may start as a 4 column board but because of the size of the window it is a 2x2.
The .value() function on the Editor control strips out some elements from the Editor HTML. For instance, tables created in the Editor have a BR tag inside the table cells, but those BR tags are removed from the string returned by .value(). In order to display HTML exactly the same as it appears in the Editor, it would be useful to have an additional function, perhaps call it .rawValue(), that does not strip out these elements. For instance, with the BR example, if a row does not have any content the row will collapse without the BRs, so it would be nice to have an additional function that leaves them in.
If Kendo tooltip configured closeToHide: true, then the kendo tooltip only hide when the close (x) icon clicked. The tooltip will still appear if user scroll mouse or click at another area on browser. Currently kendo tooltip will be hide when user scroll mouse or click at another area on browser even if it was already configured autoHide: false
Do not auto hide the notification when notification is hovered.
the *.map files in the js directory are excluded by Eclipse. I have yet to figure out why this is. At any rate - they are not yet being returned to the browser
Taking the example grid in index.html and adapting it so it uses a local data source, I get "Nan - Nan of 3 items" for this source:
var movies = [
{ title: "Star Wars: A New Hope", year: 1977 },
{ title: "Star Wars: The Empire Strikes Back", year: 1980 },
{ title: "Star Wars: Return of the Jedi", year: 1983 }
];
var localDataSource = new kendo.data.DataSource({ data: movies });
$("#grid").kendoGrid({
dataSource: localDataSource,
I am trying to build a dashboard using telerik kendo with at least 3 template and a drop down panel from where i need to drag and drop to those template ...
am using
<div kendo-sortable class="col-sm-4 placeholder" id="side"
k-connect-with="'#main'"
k-placeholder="placeholder"
k-hint="hint"
k-filter="'.widget'"
k-on-change="dropped(kendoEvent)" style="width: 180px">...</div>
AND
<div kendo-sortable class="col-sm-8 placeholder" id="main"
k-connect-with="'#side'"
k-placeholder="placeholder"
k-hint="hint"
k-filter="'.widget'"
k-on-change="dropped(kendoEvent)">....</Div>
but by using this i can create only one template how to create rest.
/*** Kendo UI Beta v2014.3.1029 ***/ We've tested the brand new TreeList today. The new TreeList needs... > checkboxes > columns should be resizeable > column reordering > frozen columns events > collapsed > expanded Take a look at the "famous" Grid / TreeList... Regards Stefan Wolf
Support for the angular 1.3 version
The mobile application exposes an 'init' event when the application has initialised. This would be useful on all UI widgets, especially in circumstances when MVVM is not being used, for example to check whether other widgets are also initialised and perform actions accordingly.
When setting the 'useNativeScrolling' to true in 'app.js', the rendering of a drawer is effected. Additionally, trying to scroll on the drawer actually scrolls the view (which will be partially off the screen). Some views will not need native scrolling so it would be beneficial to have the option to choose which views use native scrolling and which do not. I am aware there is the data-use-native-scrolling attribute but this seems to have the same problem as 'useNavtiveScrolling' in 'app.js'.
When trying to swipe up/down a form or left and right for the drawer menus when there are several textboxes/labels it doesn't always work. This happens when the user starts the swipe action over a textbox/label. If the user starts to swipe over a grey area (background) it works perfectly every time.
Mobile Date & Time Pickers would allow much easier use for inputting dates and times into a mobile ui. The web date & time pickers use a drop down that is not the best solution for mobile use.
Bug in KendoUI ContextMenu sample
See: http://demos.telerik.com/kendo-ui/menu/context-menu
There is a line of code in this sample:
menu.getKendoContextMenu().destroy();
Which seems to use a "getKendoContextMenu()" method which is nowhere to be seen in the sample or the docs. Was it omitted from the sample? "menu" here is: var menu = $("#menu") so it is a jQuery object, so further reason to doubt menu.getKendoContextMenu() is valid.
Regarding KendoUI ContextMenu close() method- I believe there is a flaw in the API docs and in the TypeScript typings file. See below:
See API docs at: http://docs.telerik.com/kendo-ui/api/javascript/ui/contextmenu
In the sample for the close method on this page, it has this portion:
// get a reference to the ContextMenu widget
var contextMenu = $("#context-menu").data("kendoContextMenu");
// close the ContextMenu
contextMenu.close(100, 100);
The "100, 100" params passed here are not needed and looks to be a copy paste from the open() method sample in the api docs. The open() sample passes (100, 100) as x/y coordinates.
Regarding the TypeScript kendo.all.d.ts file the ContextMenu class has this definition for close:
close(element: Element): kendo.ui.ContextMenu;
close(element: JQuery): kendo.ui.ContextMenu;
But again, I believe it should take no params.
Please let me know if you confirm this to be the case and if you fix the typings file. Thanks!
Hello: I need to move a horizontal column in a grid table, and too i need move a window at the same time. We can do this now? If possible do, what it is the method to do that?
We need to place the axis labels on the tick marks for the column series chart instead of between them.
This is quite important especially in finance where we would want to overlay graphs with other graphs data for analysis. Also would be good to enhance the controls to have more functionality such as min\max lines etc.
f I have a columns like columns: `[{field: "Address.City"}]`, then it fails if Address is null.
Uncaught TypeError: Cannot read property 'City' of undefined
Expected: to handle nulls in parts of path in the same way as nulls in the leaf (e.g. City in this example). Not doing this, means we can't use the default template, sort or group functions on nested properties.
Simple Dojo snippet to repro.
http://dojo.telerik.com/AGeTo
HTML5 Diagram Control - allow scrolling in the control