Is there a recommended way to implement deep linking of a TabStrip in an Angular application?
- the url should change when selecting a tab
- when an url is entered which contains a tab information, the corresponding tab should be activated
I am using the standard angular router.
Thanks a lot!

Hi,
Is it possible to Add custom cell attributes to each cell in kendo spreadsheet.
For Eg: Apart from
"rows: [{ height: 70, cells: [{ index: 0, value: "Invoice #52 - 06/23/2015", fontSize: 32, background: "rgb(96,181,255)", textAlign: "center", color: "white"}]}"
can we add a custom attribute like "CellType":"headers" to each cell. If yes then can you please guide me as to how it can be done.
Thanks & regards
Swathi
Is it possible to use the KendoUI for jQuery with Vue.js?
Thanks

I want to bind dynamic data to a validation list - is there an easy way to do this? The data will be an array of objects, with id/value pairs and in the dropdown list I'd like to show the value, but store the ID.
I'm using (where valueList is an array which I want to be databound) :
validation {
dataType: "list",
showButton: true,
comparerType: "list",
from: valueList,
allowNulls: true,
type: "reject"
}

Hi,
I'm exporting my KendoGrid to PDF with a Template. I need to pass variables to the template like this:
template: kendo.template($("#kendo-grid-pdf-template").html())({ CUSTOMERNAME: cust.FullName, CUSTOMERID: cust.Id})
This is the template:
<script id="kendo-grid-pdf-template" type="text/x-kendo-template"> <div class="page-template-pdf"> <div class="header-pdf"> #: CUSTOMERNAME #, Customer ID: #: CUSTOMERID# </div> </div></script>
The Problem:
PDF generation fails because "pageNum" and "totalPages" are undefined. This only happens when I pass my custom parameters. How do I pass the pageNum and totalPages parameters that are required? It work when I pass it like this:
template: kendo.template($("#kendo-grid-pdf-template").html())({ CUSTOMERNAME: cust.FullName, CUSTOMERID: cust.Id, pageNum: "?", totalPages: "?"})
but where do I get the right values?
