Hi,
I have some doubts about coordinates.
How to get pixel cordinates of a lat, lng point?
I tried locationToView and locationToLayer without success ..
Here a script example:
$(
"#map"
).kendoMap({
zoom: 3,
center: [45, 10],
layers: [{
type:
"tile"
,
urlTemplate:
"http://a.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png"
,
attribution:
"© OpenStreetMap"
}],
markers: [{
location: [45, 10],
shape:
"pinTarget"
}],
pan:
function
(e) {
console.log(
'What are now marker pixel coordinates?'
)
}
});
Hello,
I have a graph showing values throughout a day (from midnight to midnight) in quarter-hour periods.
My question is, if there is a tool to display graph in corresponding way - to show the data like they are measured in the corresponding period, not at the ticks, that means to place columns into gaps between ticks and labels onto ticks (so column wouldn't be above label).
Example is attached.
Thanks for response in advance.
Jiri
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.