Hi,
Using Angular 4, installed packages. Grid works well but export to excel functionality is not working.
when I add the following line to app.module,
import { GridModule, ExcelModule } from '@progress/kendo-angular-grid';
It says " ..../node_modules/@progress/kendo-angular-grid/dist/es/main"' has no exported member 'ExcelModule'.
Any help will be appreciated. We'll have to implement PDF export too. Please let us know if we need to do additional stuff for that too.
Thanks
How can I refresh the map datasource on every zoom, maybe with either startZoom or endZoom?
Hi ,
I have Date Column in gridview that describe Personal data with birthdays ,for some reason ,I want to have more than one date in my column and I want to set reminder for example :
before somebody's birthday shows a reminder as popup.
I am using Asp.net mvc 5 (viewModel ,Controller ,....)
I'm switching views using app.navigate and when I do, the header in the new view has height of 0.
http://dojo.telerik.com/@calebsandfort/AdaQO
I can't seem to figure out how to have the dialog actions bound to a function on the model.
I tried the following but it doesn't seem to work. What am I missing?
model = kendo.observable({
value: [],
save:
function
() { console.log(
'wheee'
); }
});
kendo.bind(el, model);
<div
data-animation=
"false"
data-visible=
"true"
data-role=
"dialog"
data-resizable=
"false"
data-title=
"Select Multiple"
data-actions=
"[{ text: \'Cancel\' }, { text: \'Apply\', action: save, primary: true }]"
></div>
Hello,
I connected a kendo tooltip to my diagram with a filter of "g". The tooltip is showing when hovering over a shape. I want the tooltip to be loaded from ajax, so I have added an event handler for requestStart of the tooltip.
However, I cannot seem to access the dataItem of the shape in the requestStart event handler to get the id of the item. e.target[0] appears to be the shape, but I can't seem to access the dataItem from it.
Let me know if you want any sample code.
Thanks.
Is there a way to determine miles/meters based on the zoom and scale of the map.
Example the map has center starting coordinates defined based on a center radius search with a default miles, i.e. "You are Here" marker. Other markers are displayed based on the initial result of the center radius search. The screen's zoom rate must be adjusted to display all markers returned.
As the user zooms out a measurement of the next zoom rate is calculated into miles/meters and a new data get occurs returning additional markers within the new search radius.
For Bing maps I have looked at the following article:
https://msdn.microsoft.com/en-us/library/aa940990.aspx
But I am still not sure how to accomplish the desired functionality described above.
multiChanged:
function
(e) {
var
values = e.sender.value();
if
(values.length > 0) {
viewModel.set(
"available"
,
false
);
}
}
selected:
function
(e) {
if
(viewModel.selectedNames.length > 0) {
e.preventDefault();
}
},
Hello,
is it possible to set a C# list as data for the Kendo Treemap?
Thanks in advance.