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;
}
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.
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:
From these steps, I can identify two bugs and a UX suggestion.
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.
<
div
class
=
"k-button k-state-disabled"
>Disabled Button</
div
>
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")
<
link
rel
=
"stylesheet"
href
=
"http://kendo.cdn.telerik.com/2016.3.914/styles/kendo.common.min.css"
>
<
link
rel
=
"stylesheet"
href
=
"http://kendo.cdn.telerik.com/2016.3.914/styles/kendo.rtl.min.css"
>
<
link
rel
=
"stylesheet"
href
=
"http://kendo.cdn.telerik.com/2016.3.914/styles/kendo.default.min.css"
>
<
link
rel
=
"stylesheet"
href
=
"http://kendo.cdn.telerik.com/2016.3.914/styles/kendo.mobile.all.min.css"
>
</
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 -->
<
script
src
=
"http://kendo.cdn.telerik.com/2016.3.914/js/jszip.min.js"
></
script
>
<
script
src
=
"http://kendo.cdn.telerik.com/2016.3.914/js/kendo.all.min.js"
></
script
>
<!-- 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%;"
/>
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.
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