Declined
Last Updated: 02 Sep 2015 16:14 by keith
Created by: keith
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
Kendo AutoComplete should support input type="number" so that OnScreen Keyboard appears on Numeric Screen when only want Numbers to be input (or at first). Currently it does not (as per support call) so normal alpha OSK appears first and User has to immediatley chnage to Numeric keys. (eg for numeric postcodes etc)
Declined
Last Updated: 29 Oct 2021 14:55 by ADMIN
On data management controls (like the grid and the listview), if they are bound to an ajax remote data source and an error occures, it will silently ignore it and accept the changes. You listen to the error event on the data source to display the messages, but that wont stop it from accepting the changes. You can add a single occurrence listener on the grid's data binding event to prevent it, but you are starting to get into weird hacks. Then theres the listview, which is an even uglier hack.

Not only should this be standard behavior in the first place, but it's a pain to even get it to work with hacks.

Please change the behavior or at least add an option to prevent accepting bad data that didn't even get saved in the database.
Declined
Last Updated: 14 Aug 2015 09:18 by ADMIN
Created by: Joydeep
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
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.
Declined
Last Updated: 10 Aug 2015 16:02 by ADMIN
Declined
Last Updated: 10 Aug 2015 16:27 by ADMIN
Created by: Vasim
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
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)
)
Declined
Last Updated: 10 Aug 2015 16:39 by ADMIN
Created by: Rajeev
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
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
Declined
Last Updated: 21 Mar 2017 19:08 by Pavel
Created by: Pranay
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
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
Declined
Last Updated: 21 Jul 2015 14:36 by ADMIN
Created by: Imported User
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
It'd be nice if I could this:

<kendo-combo-box k-data-source="flight.airport">
  <span class="k-state-default" k-template>
    <h3>#: data.name #</h3>
    <p>#: data.location #</p>
  </span>
</kendo-combo-box>
Declined
Last Updated: 15 Jul 2015 08:19 by ADMIN
We have the need to show master and detail rows in an aligned, tabular format, similar to how the TreeList displays them. Currently, in our grids, we use some "hack" jQuery to achieve this after Kendo renders its child table. (We remove the child rows which kendo rendered in a sub table, place them in the main table right after the parent, and clean up the debris). This is the only way to ensure column alignment, and have re-sizable columns work, etc.

Using the TreeList isn't an option currently, because we want to use some other features of the grid, such as paging and batch editing. There are obviously several more features supported by the grid which don't exist currently in the TreeList.

It would be great if I could simply configure the grid to render detail rows this way.
Declined
Last Updated: 22 Jul 2021 11:20 by ADMIN
Created by: Hendrik
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
1
In the Silverlight version of Telerik, it is possible to show traffic information. It would be nice if we could do the same thing in ASP.NET MVC in HTML/JS.
Declined
Last Updated: 08 Jul 2015 09:28 by ADMIN
Created by: Andreas
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
1
When the user open with pc or ipad (or bigger screens) then the TabStrip is fine. But when he opens the page with mobile phone its better to have no Tabstrip at all and just have the content pages one after the other with some heading.
Declined
Last Updated: 01 Jul 2015 15:26 by ADMIN
Created by: Imported User
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
1
I miss being able to preview the mobile widgets in the different themes, could we get a theme switcher for the Hybrid UI demo?
Declined
Last Updated: 01 Jul 2015 14:06 by Timothy
Created by: Timothy
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
1
For Kendo UI, it would be great if you could add a kendo configuration to a Model's field which would be used to auto display the html component, here is an example:

var newModel = kendo.data.Model.define({
  id: "id",
  fields: {
    state: {
      type: "string",
      defaultValue: "",
      validation: { required: true },
      component: {
        role: "kendoDropDownList",
        dataSource: {
          data: [
            'Alabama',
            'Alaska',
            'Arizona'
          ]
        }
      }
    }
  }
});
Declined
Last Updated: 26 Jun 2015 14:38 by ADMIN
You can put multiple inputs in a custom Grid cell editor (textboxes, checkboxes, etc.), but since there's more than 1 and the grid doesn't support binding to arrays/collections out of the box, there's no way to automatically get those values into a model when you move away from the cell. The grid "save" event doesn't fire when there isn't 1 input using "data-bind".
You can put a button or something to click on inside the cell and then in the click event update the model yourself, but that looks odd.
Please add a cell-closing event that allows us to manually update the model or do other clean-up.
OR, please add support for binding to arrays for a field in the grid.
Thanks. 
Declined
Last Updated: 11 Nov 2021 11:53 by ADMIN
I'm writing a application and would love to have 'pull to refresh' activated when the user swipes up instead of down.  In addition, endless scrolling would work when swiping down instead of up.  Basically the reverse of how the listview works right now.  

I see this request often and users end up implementing their own solution.
Declined
Last Updated: 16 Jun 2016 14:20 by WT
Created by: William
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
1
Modal window does not currently work properly with MVVM. When visible = false, the modal area is still visible.
Declined
Last Updated: 05 Jun 2015 10:27 by ADMIN
There are as many real world situations where one needs to display Heterogeneous Hierarchical Data such as web services where the returned data has complex data types consisting different simple type data or list.
Declined
Last Updated: 21 Jan 2020 15:23 by ADMIN
Created by: Deane
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
2
When integrating the Kendo UI Editor with other components, it would be nice if there was more visibility and control on the state and actions of the Kendo Editor.

For instance, bind 2 new callbacks/events: 
- onClose: function(event) {}
- onOpen: function(event) {}

Methods to control the Editor externally:
- editor.close()
- editor.open()

Methods to inquire on the Editor's state:
- editor.isOpen()