Hello,
I am using the numeric text box as a percentage input with a factor of 100.Typing '100' into the form field produces '100%' as expected. When I submit the form via an Ajax request, '100' is sent back to the server instead of '1'. I inspected the numeric text box element to find the value attribute is '100'. When I inspected the widget via .data('kendoNumericTextBox') the value is '1'.
Is this expected? Shouldn't Kendo make sure the value attribute on the element is the same value as the widget?
Thanks
Hi,
I try to describe the scenario that I would like to obtain.
A page contains a map linked to some provider(in example open street map).
Externally exist a "tool box" that contains some tools, in example "circle".
User can drag "circle into the map" so a circle appears, now user can move, resize it.
Various problems appears on drag/resize interaction with base pan events.
And I don't find documentation about how to add a svg layer where I can put shapes.
Ideas?
Thanks,
marc.
Hello ,
Well , i am new on the kendo api and i wanna know if i can easly transform my character count tool to use the features of kendo editor without implimenting the text editor . What i am asking for is can i use the tool bar of the editor without changing all the back-end from textarea to a kendo editor instance ?
my tool : https://www.character-count.info/
Hi
I am trying to use scrollable Kendo Tab Strip(with angularjs) and I am having an issue when I resize the browser.
Initially when I load the Kendo Tab Strip, buttons for scroll are hidden if tab wrapper is big enough to show all tabs as expected. However when I resize the browser to half and width of tab wrapper becomes small to display all tabs, It still does not show the scroll buttons so I can't scroll at all. Is this bug or you are actually not supporting the responsiveness for scroll in Kendo Tab Strip?
Kind regards
Minchul
Hi !
I using telerik jquery , when i using tilelayout, i like action as : Drag, drop.
But I want to save layout and reload it in later.
Please help me to do it !
tks !
Hello,
I used Kendo Grid with the search toolbar on data from a service call. My data is displayed correctly and my select function works fine.
But when I try to search in toolbar, the results will not be filtered. Is this a problem with my service call?
var
settingsSelectable =
"multiple, row"
;
var
settingsColSelectable = [
{
selectable:
true
,
width: 75,
attributes: {
"class"
:
"checkbox-align"
,
},
headerAttributes: {
"class"
:
"checkbox-align"
,
}
},
{
title:
"Product Information"
,
template:
"<div>#: Name #</div><div>Id: #: Id # | ArtNo: #: ArtNo #</div>"
,
attributes: {
"class"
:
"select-#: Id #"
,
}
}
];
var
grid = $(
".all-products"
).kendoGrid({
dataSource:
new
kendo.data.DataSource({
transport: {
read:
function
(options) {
LoyaltyCategoryService.GetProducts().then((res) => {
options.success(res.data.Data);
preselect();
})
}
}
}),
toolbar: [
"search"
],
columns: settingsColSelectable,
height: 800,
selectable: settingsSelectable,
change: onChange,
dataBound:
function
() {
preselect();
}
});
Maybe someone can help me! Have a great day!
How to add rows numbers when virtual scrolling is enabled?
using this method: http://docs.telerik.com/kendo-ui/controls/data-management/grid/how-to/Templates/add-row-numbers doesn't work well.
Hi folks,
I encountered the following issue: I created a new notification object and it is shown correctly. However, the close icon is missing. The strange thing is the error icon is displayed correctly. I also had a look at the resulting HTML code and this looks fine.
I also checked the WebComponents and KendoUIGylphs font files. I provide these. If I remove them the error icon disappears.
I also had a look inside these files and the keywords "close" and "error" are available.
Do you have any idea what the reason might be?
We use KendoUI 2020.2.617.
BR
After changing the tsconfig.json file to 'target: ES6' our code successfully compiles and runs without errors in the browser.
However, the chart control and the grid control does not display the data from the datasource anymore.
We had a look at the HTML code and the rows for the grid control are created but the data is missing. During debugging we ensured that the read function of our data source delivers the data.
The controls are displayed with the given config. Additionally the specified column names are also not displayed. These also use kendo templates for inserting data.
BR