Telerik Forums
Kendo UI for jQuery Forum
1 answer
530 views

Hi, 

When I'm customizing the kendo tooltip with a custom class, setting the custom class to be added in the show event, the position of the toolbar is not correctly loaded when I'm setting a padding in this class. This happens only the first time showing the toolbar.

Is this an known bug that I should know about? Is there a fix or workaround for this?

I'm using kendo-ui": "^2019.1.2"

 

script:
show: (e) => {e.sender.popup.element.addClass("myclass");},

sass:

.myclass {
          padding: 10px;

        }

Martin
Telerik team
 answered on 24 Sep 2020
10 answers
671 views

The latest update contained two changes to the filter row that are undesirable. 

 

The first, the filter row control now has an X in it. On smaller columns, it eats up a lot of the real estate. It is also redundant because next to the filter row operator, is a reserved spot for a clear button. Is there anyway to either remove the clear button from the text editor or remove the clear button next to the filter operator?

 

The second issue is the noDataTemplate. In my case, I don't want auto complete on the filter row text box. To remove it, I set the dataSource to an empty object. Unfortunately, this results in the textbox to constantly show No Data Found as you type. Is there any way to remove this feature for the filter row controls when the datasource is set to { } for the field?

 

Thanks.

Ivan Danchev
Telerik team
 answered on 24 Sep 2020
1 answer
38 views
It is nice that interface of kendo ui Jquery demos changed. but I cannot find API Reference link directly from component demo. Previously it was easy to find and click. Now there no such link.
Nikolay
Telerik team
 answered on 24 Sep 2020
4 answers
250 views

Drag-and-drop reordering between sibling nodes in the TreeList widget is a feature I've been greatly anticipating, and I'm happy to see it available in the 2020 R3 release. Unfortunately, in its first incarnation, it has some serious reliability issues and doesn't seem production-ready to me. See the attached screen recording of the widget's demo page and observe the steps I take:

  1. I drag Rinah's node to the upper border of its current position, which is also the bottom border of Akeem's node. Nothing happens, as expected.
  2. I do the same thing again, but this time, it reorders Rinah before Akeem.
  3. I then drag Rinah to the upper border of its current position again, which is also the bottom border of its parent node Hyacinth. Instead of the expected behavior of nothing happening, Rinah becomes a sibling of Hyacinth ordered after her.
  4. I drag Rinah back to be a child of Hyacinth again so I can retest the same action from step 3.
  5. I repeat step 3. Rinah becomes a sibling of Hyacinth again, but this time she is ordered before Hyacinth instead of after her.

From these steps, I can identify two bugs and a UX suggestion.

  • Bug: Steps 1 and 2 should not have produced different results. The same action should consistently produce the same result.
  • Bug: Dragging a node to the upper or lower border of its current position should not trigger any reordering action.
  • Suggestion: Implement you drag-and-drop reordering UX to be more like DevExpress's TreeList. In their implementation, dragging a node to the upper or lower border of its current position does not even show a reordering indicator, making it obvious to the user that they're not going to reorder anything. In addition, their styling for doing a sibling-level reordering (a thick horizontal line across the entire length of the row where it's being reordered to) versus a re-parenting (making all four borders of the new parent appear thick while you're hovering over it) is much more intuitive in my opinion. It's very obvious when the node is going to be reordered, re-parented, or neither. See the other attachment for an example of what I mean.
Jacob
Top achievements
Rank 1
Veteran
 answered on 23 Sep 2020
5 answers
448 views

In my project i have a requiremenr to customize the today button label in the scheduler. And the new lable can have more than one value, based on our requirement. As far i have investigated i couldn't find a proper solution for this. 

currenlty to customize view names(ex: week, month, timeline,) i am changing them in the configuartion like below,

views = { title: ''MyMonthLable', name: 'month',  type: 'month'}

i would like to know whether it possible to do the same for the Today button lable in each view in the configuration, (or any available template to do so)

If this is not possible i would like to which method in your source code returns the lable for Today button, so that i can overrride in each view class and cutomize it to return the new lable. (currenlty i am using this similar pattern and overrride dateForTitle(), and some other methods)

Thank you. 

Plamen
Telerik team
 answered on 23 Sep 2020
3 answers
175 views
When getting results returned back to the autocomplete control that will be displayed to the User, I'd like to filter out blank lines. Lines that are essentially whitespace, of no value to the User. I'd like to filter for that on the client side rather than the server. 
Aleksandar
Telerik team
 answered on 23 Sep 2020
3 answers
1.8K+ views
To create a disabled button, which should not be clickable, I am using the code:
<div class="k-button k-state-disabled">Disabled Button</div>
This works great, however, it would be preferable if on click it would not change the text colour to white.

Thanks
Nikolay
Telerik team
 answered on 23 Sep 2020
3 answers
748 views

Hi,

Today, with help of Telerik support, I've included Kendo UI in ASP.NET Boilerplate application. Since I can't find any posting on this, I share our results with you.

Integrating the Kendo UI CDN scripts in Angualar project:


1) Add the Kendo UI styles to the "layout.cshtml" page, inside the Web project, "App" folder:
    - file path: testProject\testProject.Web\App\Main\views\layout\layout.cshtml
    - styles added:

<head>
    ....
    @Scripts.Render("~/Bundles/App/Main/js")
  
</head>

 

2) Add the Kendo UI scripts to the "layout.cshtml" page, inside the Web project, "App" folder:
    - file path: testProject\testProject.Web\App\Main\views\layout\layout.cshtml
    - project already contains jQuery and Angular scripts
    - Note: the insert of Kendo UI scripts must be after loading jquery. This differs between Boilerplate project types.
    - Script insert at bottom of file:

....
@Html.IncludeScript(ScriptPaths.JQuery_Timeago_Localization)
 
<!-- Scripts of Kendo UI -->
 
<!-- Dynamic scripts of ABP system (They are created on runtime and can not be bundled) -->
....

 

3) Register the Kendo UI directives in the application module:

    - file path: \testProject\testProject.Web\App\Main\app.js
    - modify app module:

var app = angular.module('app', [
    'ngAnimate',
    'ngSanitize',
    'kendo.directives', //--  <<< Add this directive
    'ui.router',
    'ui.bootstrap',
    'ui.jq',
    'abp'
]);

 

4) Test example Kendo UI widget to a view in the project:
    - file path: \testProject\testProject.Web\App\Main\views\tenants\index.cshtml
    - modify page: 

<div ng-controller="app.views.tenants.index as vm">
    <h1>@L("Tenants")</h1>
  
    <input kendo-date-time-picker style="width: 100%;" />

 

Patrick | Technical Support Engineer, Senior
Telerik team
 answered on 22 Sep 2020
7 answers
2.2K+ views

Hello Kendo Team,

How do we add/enable vertical scroll to the right of the bar chart to scroll through more items in the data source.

Consider a scenario where there are 100 items to be displayed in the bar chart and bar chart is designed to display the items in the paginated fashion of 10 items in each page,

1.Bar chart will display 10 items in a given view

2.When user pans/mouse scroll the bar chart will display the next set of items in the given ahead

3. Now, there is no visual clue for the user that the bar chart can be scrolled/panned to view more items. Please suggest a way/workaround to include a vertical scrollbar which will allow user to scroll through the entire bar chart items having the x-axis anchored at the bottom.

Alex Hajigeorgieva
Telerik team
 answered on 22 Sep 2020
2 answers
43 views

This is more of a bug report...

Many icons on the following page do not show up at all:

https://docs.telerik.com/kendo-ui/styles-and-layout/icons-web

Zack
Top achievements
Rank 1
Veteran
 answered on 22 Sep 2020
Narrow your results
Selected tags
Tags
+? more
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?