Unplanned
Last Updated: 02 Mar 2021 15:37 by ADMIN

This is an error that took us an hour to figure out.

We are using the right-arrow icon as part of the content within a collapsible header to represent a state transition. (See image)

We found that the expand/collapse icon did not appear.

 

Further investigation reveals that if the header content contains a span with a class matching the regular expression k-i-arrow.* then the expand/collapse icon doesn't work. It could contain anything else, it was just that one class pattern that threw it.

See this example. https://dojo.telerik.com/EwAsaKAf/3

I also posted a forum message here: https://www.telerik.com/forums/expand-collapse-arrow-fails-to-appear-if-a-class-matching-a-certain-pattern-appears-anywhere-in-the-header   

This is clearly a bug, and one that I suspect can be fixed easily.

Completed
Last Updated: 23 Feb 2021 11:30 by ADMIN
Created by: Roinand
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
0

I'm wondering if it is possible to create a feature to partially format a cell value from the exported Excel?

 

For example, I have a string like "Payment Terms: Please pay the full amount..." I only want bold text on "Payment Terms:".

Declined
Last Updated: 28 Nov 2018 11:34 by ADMIN
<div class="filterField">
<label for="filterTags">Tags</label><br/>
<div class="filterFieldBody">
<input id="filterTags"/>
</div>
</div>

 

$( document ).ready( function ()
{

$( "#filterTags" ).kendoMultiSelect( {
placeholder: "Select Tag(s)",
autoClose: false,
dataTextField: "text",
dataValueField: "value",
autoBind: false,
dataSource: [
{ text: 'Summery Love Campaign', value: '1' },
{ text: 'Melbourne Cup', value: '2' },
{ text: '2018 Formals', value: '3' },
{ text: '2018 Schoolies Dance Club', value: '4' },
{ text: '2018 Schoolies Beach Fun', value: '5' },
{ text: 'Bridesmaids', value: '6' },
{ text: 'Wedding', value: '7' }
],
//value: [], without value set to an empty array kendo ui assumes value:[''] but with an array count of 0

// which causes all kinds of issues most especially when deleting
change: function ( e )
{
tagIds = this.value();
alert(JSON.stringify(tagIds));
}
} );


} );
Unplanned
Last Updated: 02 Mar 2020 06:46 by ADMIN
Created by: Richard
Comments: 3
Category: Kendo UI for jQuery
Type: Feature Request
0

The controller is returning the HtmlEncoded contents of a text file that the server reads in from the local operating system on the server, and I would like to display that information in a window or editor such that there is a left hand 'gutter' displaying line numbers and the file content has vertical and horizontal scroll bars.  The line numbers would scroll-y with the content, but should be fixed with respect to scroll-x.

A good example would be

 - the code panel in the Sources tab in Chrome developer tools, or
 - http://jspro.brothercake.com/code-examples/principle5.html, or
 - http://alan.blog-city.com/jquerylinedtextarea.htm (not my first choice though)

This dojo demonstrates a close solution I made using Window.

https://dojo.telerik.com/@RichardAD/IJuLeyOv

The 'gutter' is not locked (or fixed) though.  After many iterations I though of the Editor component and how it might already have line numbers built into it, and I could use it in a read-only manner to display the text file contents with line-numbers.

Unplanned
Last Updated: 21 Jan 2019 09:14 by ADMIN

Dojo example.

1. Resize the browser window so that its height is smaller than the DropDownTree's popup height.
2. Click the DropDownTree to open its popup.
3. The popup opens and then auto-closes

Unplanned
Last Updated: 25 Jan 2019 15:49 by ADMIN
Created by: Sam
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
0

On line 157 of kendo.aspnetmvc.js:

return 'datetime\'' + kendo.format('{0:yyyy-MM-ddTHH-mm-ss}', value) + '\'';

As far as I know this format is non compliant with any standard format.
Could this please be compliant with ISO-8601 standard so that its more universal for APIs to be able to handle?

 

Unplanned
Last Updated: 18 Feb 2019 13:07 by Anders Mad.
Created by: Anders Mad.
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
0

It would be useful if the option element attributes can be used in the MultiSelect's templates. For example:

`<select ... ><option data-color="#f00" value="red">Red Stuff</option>`

I want to use the `data-color` attribute from the option element in the MultiSelect's template.

Unplanned
Last Updated: 19 Feb 2019 06:31 by ADMIN
Created by: Helen
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
0

Provide an option that allows encrypting each chunk of data that is being sent by the Upload.

Declined
Last Updated: 01 Mar 2019 11:49 by ADMIN
Created by: Radhika
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
0

Hi,

I am facing an issue with Kendo grid ,i.e. Having more than one filter present in a grid and then deleting any one filter entry and clicking FILTER (or just pressing ENTER on keyboard) clears ALL filters.

In my Kendo grid , when I apply a filter to 2 columns, first I apply filter to numeric column which results in no value and, after that I applies the filter to a string column combined with numeric column which also results to no value, Nothing is displayed. But when I remove the value from textbox of numeric column and enter filter, no data is being displayed as string column filter is there but in case I remove the value from textbox of string column and enter filter , numeric column filter also gets removed. I also checked the Kendo functionality , but didn't find any solution for this problem.

 

Here's the code for Kendo Grid Filter which is causing the above issue.

 

 

 

    $scope.DemoGrid = {
        columns: [
            { field: 'ID', title: "ID", template: "<span><a href='' class='link-default' ng-click='getDetails(\"#=ID#\")'>#=ID#</a></span>" }, 
            { field: 'Type', filterable: false, title: "Type" },
            { field: 'Name', title: "Name", template: "<span>#=Name# </span>" },
            {
                field: 'Date', title: "Date", type: "date", format: "{0:dd-MMM-yyyy}", parseFormats: ["dd/MM/yyyy"],
                filterable: {
                    ui: function (element) {
                        element.kendoDatePicker({
                            format: "dd-MMM-yyyy",
                            parseFormats: ["dd/MM/yyyy"]
                        });
                    }
                }
            }
            ,
            { field: '', title: 'Action', template: "<span><a href=\'" + DemoDownloadApi + "?id=#=DownloadId#\' role='button' class='btn btn-blue-primary'>Download</a></a></span>" },
            { field: "DownloadId", hidden: true, sortable: false },
        ],

        pageable: {
            buttonCount: 5,
            pageSizes: [10, 20, 50, 100, 'All'],
            input: true,
            //refresh: false,
            messages: {
                display: Msg1,
                empty: Msg2
            }
        },
        sortable: true,
        dataSource: DemoDataSource,
        autoBind: false,
        filterable: true,
        scrollable: false,
        resizable: true,

    };

Completed
Last Updated: 22 Jan 2020 08:21 by ADMIN
Created by: Burak
Comments: 2
Category: Kendo UI for jQuery
Type: Feature Request
0
for example;
filter: { field: "fieldname", operator: "in", value: [value_1,value_2,...,value_n] }
Unplanned
Last Updated: 10 Jul 2019 06:41 by ADMIN

When a text with background color set is made bold and copy/pasted, the background color is not being preserved.

The issue can be reproduced on the following Dojo example.

Steps to reproduce:

  • Type some text.
  • Select the text and set a background color.
  • Make the text bold.
  • Copy/paste the text on a new line.

Completed
Last Updated: 02 Apr 2019 13:20 by ADMIN

When showOn assumes its default value(to work with hold event on touch devices), the ContextMenu cannot be displayed by tapping and holding over the target elements.

The iсsue can be reproduced with the ContextMenu Demo.

Unplanned
Last Updated: 05 Mar 2019 09:30 by ADMIN
Created by: Amarendar
Comments: 0
Category: Kendo UI for jQuery
Type: Feature Request
0
Add the ability to add a custom parameter, with which the list of uploaded files in the Editor's ImageBrowser can be sorted.
Completed
Last Updated: 29 Mar 2019 07:05 by ADMIN
We want to copy & paste cell velue/text from kendo grid. But we are not able to select the cell text itself for copy. I think once we are able to select the cell text, we can copy than.
Completed
Last Updated: 02 Mar 2021 15:36 by ADMIN
Created by: Daniel
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
0

In the latest Kendo UI commercial zip, there is a file typescript/kendo.all.d.ts.

In the Grid class, a property is missing : the dataItems function.

You should add the bold line :

 

        (...)
        dataItem(row: JQuery): kendo.data.ObservableObject;
        dataItems(): kendo.data.ObservableArray;
        destroy(): void;
        (...)

Unplanned
Last Updated: 14 Mar 2019 09:36 by ADMIN
Created by: n/a
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
0

Export to PDF shows the header commands like "Export to PDF", etc. These should be configurable to not be displayed.

 Similarly, using a .PdfExport event to hide and show the command columns is functional but should be included as a property to avoid the flashing that the hide/show does to a large element.

 

 

Completed
Last Updated: 02 Feb 2021 16:56 by ADMIN
Created by: Jason
Comments: 1
Category: Kendo UI for jQuery
Type: Bug Report
0

Your demo site is broken.

 

https://demos.telerik.com/kendo-ui/multicolumncombobox/index

Declined
Last Updated: 04 Apr 2019 13:51 by ADMIN
Created by: Mick
Comments: 1
Category: Kendo UI for jQuery
Type: Feature Request
0
Template for Kendo Gantt summary tasks, so they can be made to look similarly to regular tasks
Unplanned
Last Updated: 04 Apr 2019 05:22 by ADMIN
Created by: pau
Comments: 0
Category: Kendo UI for jQuery
Type: Bug Report
0

Binding the map layers to a SignalR Core datasource does not work. A runable project can be found in Ticket ID: 1401776

The basic configuration is:


<script>

    var hub = new signalR.HubConnectionBuilder().withUrl("mapsHub", { transport: signalR.HttpTransportType.LongPolling }).build();
    var hubStart = hub.start();

    console.log(hubStart);

</script>

@(Html.Kendo().Map()
        .Name("map")
        .Center(2, 21)
        .Zoom(3)
        .Layers(layers =>
        {
            layers.Add()
                .Type(MapLayerType.Tile)
                .UrlTemplate("http://#= subdomain #.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png")
                .Subdomains("a", "b", "c");
            layers.Add()
                .Type(MapLayerType.Marker)
                .DataSource(dataSource => dataSource
                    .SignalR()
                    .AutoSync(true)
                    .Transport(tr => tr
                        .Promise(handler: "hubStart")
                        .Hub("hub")
                        .Client(c => c
                            .Read("senddata")
                            )
                        .Server(s => s
                            .Read("senddata")
                        )
                    )
                );

        })
        .Markers(markers =>
        {
        })
        .Events(events => events
            .MarkerClick("onMarkerClick").MarkerCreated("onMarkerActive"))
            .Deferred()

)





Completed
Last Updated: 06 Oct 2020 14:07 by ADMIN
Release 2019.R2.SP1
In cases when incell editing is enabled, grid is scrollable it is possible that a cell from the last row is not switched to edit mode as expected. Please refer to the attached source code and the steps below to replicate the issue. The problem can be observed only with a 2019.1.403 version of the Kendo scripts (an internal build). Please test the example with 2019.1.403 version of the scripts to replicate the issue.