I want to do some checking and add some code before and after deleting the row in kendo grid. I don't want the default delete behaviour. In column, I add the custom field. It can link to javascript test function but cannot link to angularjs function. If I move that template to the html page, it can link to angularjs function.
columns: [ ...
{ field: "X", title:"", template: '<a ng-click="deleteSerial()" onclick="test()" class="k-button" style="width:15px">X</a>', width: "30px" }
],
What am I missing or any other better to do it?
Thanks.
Hi,
I need a kendo moal popup window with prev & next navigation. I just want to show editable form in the modal popup.
Please find attached file.
Thanks,
Lokesh

component.ts
import { Component, OnInit } from '@angular/core';
@Component({
moduleId: module.id,
selector: 'phx-overview',
templateUrl: 'overview.component.html'
})
export class OverviewComponent implements OnInit {
public status: any = {
isOpen: false
};
public data: [];
public compound: Array<string> = ["1", "2", "3", "4", "5", "6", "7", "8"];
public industry: Array<string> = ["1", "2", "3", "4", "5", "6", "7", "8"];
public technique: Array<string> = ["1", "2", "3", "4", "5", "6", "7", "8"];
public value = ['']
ngOnInit() {}
}
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { Inject, NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule, Http, JsonpModule } from '@angular/http';
import { AppComponent } from './app.component';
import { AppRoutingModule } from './app-routing.module';
// Import the Animations module
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
// KENDO UI
import { DropDownsModule } from '@progress/kendo-angular-dropdowns';
@NgModule({
imports: [
BrowserModule.withServerTransition({appId: 'a'}),
BrowserAnimationsModule,
FormsModule,
HttpModule,
JsonpModule,
AppRoutingModule,
// KENDO UI
DropDownsModule
],
declarations: [AppComponent],
bootstrap: [AppComponent]
})
export class AppModule {}

Hi Team,
Do we have any control for session time out notification in kendo UI.
Can you share teh code snippnet which can do this task as mockup. where i set the session time out value in my web config based on that the notification should be shown up.
example:
When a webapage is kept opned for long time with out any event i need to display an message
with prompt do you want to continue your session if session keep the session log-in.
Thanks

Hello Kendo UI Team,
I have problem with spreadsheet. It adds underline style, changes font family and font size after second server-side import of the same server-side exported file.This issue is known almost for one year https://github.com/telerik/kendo-ui-core/issues/2143 but not fixed yet:(. So it there any possibility that it would be fixed in the nearest future? Is there any workaround for it?
By the way, is there any possibility to set the same width to multiple columns at the same time (like in MS Excel where it's possible to select multiple columns, start changing the with of one of them, but it will be applied to all selected ones)?
Is it possible to set width of the column in pixels via some dialog or something like this?
Thank you,
Artsem

Hi Team,
I wanted to shown an modal pop up message to user when the screen is inactive for 20 minutes.
if the user clicks yes his session will increase by 20 minutes again and continue.if clicked no he is moved to logout screen.I wanted to do this through kendoUI modal popup. any code snippet you share on this will be great to start off.
I have done this through Jquery library (jquery.idle-timer.js) but has lot off UI issues.
It will be great to start of if you have any code which can solve my issue here
Thanks Again!
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 ,....)
