I'd like to show Totals for Stacked Bar / Columns Charts. Maybe this could be like Aggregates in Grid where the Aggregate is accessible via ClientTemplate?
You should option to convert UTC time from database to specific Timezone with DST checking in telerik Reports. The problem is as below: We are taking user date time from aplication UI in CST and converting in to UTC in C# and saving it to SQL and for displaying also we are Converting From UTC to CST with DST checking in C# and showing in to Razor view. Its working perfectly. We have stored application wise timezone settings in our SQL. But to display any datetime in Telerik Report we need to convert from UTC to CST with DST checking. Currently there is no option available to convert it in Report. To resolve this issue we need some feature in reports.
The radial and linear gauges currently DO NOT support a title and legend option. It forces me to customize the widget after it's rendered, which means that the look is inconsistent with the other Kendo widgets. Please add support for title and legend for the gauges.
Similar to the Funnel chart, some chart libs also offer a Pyramid Chart. We are also interested in the Pyramid.
Add an option to rotate the text 90 degrees when the tabPosition is set to Left or Right. Without this on a mobile device the control is useless as it takes up the whole screen.
Thank you for adding Excel-like filter. This is what we wait for a long time. Could you please add textbox to excel-like filter? So, if there are too many options in filter i would like to search for option i need. (Kind of filtration in excel-like filter) Example: http://imgur.com/SIdHmSb
What a revolutionary concept, I made it myself!
Ontario and Canadian Govt ask all new sites to be WCAG 2.0 level A compliant since Jan 2014 and AA compliant by 2021. We need toolset fixed for this regulatory requirement.
In the applications I work on we have multiple maps where there are shapes with different colors, tooltips with data, and various map markers. The Map widget would be greatly enhanced if it could support a legend!
kendo tree list drag and drop function has only ui support.it's good if it will be customable.
Currently to use the native mobile Date Picker I have to add if statement like so: @if (Request.Browser.IsMobileDevice) { @Html.TextBoxFor(model => model.DateTime, new {type = "date", @class = "k-textbox k-input", @onchange = "dataChanged()" }) } else { @(Html.Kendo().DatePicker() .Name("DateTime") .Events(e => e.Change("dataChanged")) .HtmlAttributes(new {style = "width: 120px;"}) .Value(Model.DateTime) ) } What's worse is now the data() method cannot be used to reference the Date Picker in JavaScript, thus, another if statement has to be used: if ($("#isMobile").val() = 1) { var dateTime = $("#DateTime").val(); } else { var dateTime = $("#DateTime").data("kendoTimePicker").value(); } It would be great if something like UseNative(true) could be used keeping the Kendo Date Picker API: @(Html.Kendo().DatePicker() .Name("DateTime") .Events(e => e.Change("dataChanged")) .HtmlAttributes(new {style = "width: 120px;"}) .Value(Model.DateTime) .UseNative(true) )
Since the "workbook.columns[0].width" exists when exporting to Excel AND that the mix of cell.colSpan and cell.wrap doesn't change the row height automatically when the text wrap (it only works when colSpan = 1) I'd like the ability to change the row height manually : rows[0].height = 50 Of course the best implementation for us would be the automatic row height calculation when text wrap with colSpan > 1. Thank you !
Currently the component is very limited to OLAP. Please implement PivotGrid with features like filtering and sorting to flat data, as well as is done in normal grids.
I am able to generate PDF file from Org Chart. I am using Arabic word in Org Chart. My Arabic word is getting split in individual character and all characters are appearing left to right in PDF instead of right to left. My Arabic word is loosing actual meaning because of this reason. We are not facing this type of issues in your other reports where you have provided Save PDF option in drop down. Thanks & Regards, Rajeev
If you add a context menu to a textbox it disables the box. I've asked about this previously in a support call but was told it's not likely to be supported as there's no demand for it. It would allow for excel like interaction where you can select a number of textboxs on mobile and right click/long click to get a menu,
Since Kendo grid is not a responsive widget, provide a option for users to hide lesser significant columns on smaller screens. Let user specify the property "HideWhenLessThan" for a column in the grid, which represents the width of the screen below which the column is hidden in the grid. Example: columns: [{ field: "ContactName", title: "Contact Name", HideWhenLessThan: 600 }] Here the column would be hidden when the width of the grid's parent div or the width of the browser is lesser than 600px.
It will be great if Telerik gives same themes for AJAX and MVC. As new projects are developed using MVC and to match theme to old AJAX project it will be helpful. When ever if any out-of-box theme is available in AJAX please provide same theme in MVC also. Thanks
Need combo with single selection return more than one values. Like country, city, street selection in single control. https://developers.google.com/maps/documentation/javascript/examples/places-searchbox