Need Help please...!!!
I am using tabstrip and angular UI routing to navigate those tabs. When i click on the tab it's url is changing but the tab is not switching.
I have 3 tabs. First 2 tabs are working as expected. But the last tab is not switching even though it's url is changing.
Here is my HTML code.
<div id="tabstrip" kendo-tab-strip="tabs">
<!-- tab list -->
<ul>
<li class="k-state-active"><a ui-sref="mercury_dashboard">Mercury Dashboard</a></li>
<li><a ui-sref="transaction_view">Mercury Transaction view</a></li>
<li><a ui-sref="deliveries_view">Mercury Deliveries view</a></li>
</ul>
<div>
<ui-view></ui-view>
</div>
<div>
<ui-view></ui-view>
</div>
<div>
<ui-view></ui-view>
</div>
</div>
Corresponding JS file.
var mercury=angular.module("mercury", [ 'kendo.directives' ,'ui.router']);
mercury.config(['$stateProvider', '$urlRouterProvider', function($stateProvider, $urlRouterProvider)
{
$stateProvider
.state('mercury_dashboard',
{url : '/mercury_dashboard',
controller: 'mercury_controller'
})
.state('transaction_view',
{url : '/transaction_view',
controller: 'transaction_controller',
templateUrl: 'transaction_view.html'
})
.state('deliveries_view',
{url : '/deliveries_view',
controller: 'deliveries_controller',
templateUrl: 'deliveries_view.html'
});
}]);
Please let me know if you need further information.
Thank you.

In my mobile application I have many remote views. I want to include model for view from typescript on demand. I have large project and I do not want to load all script files for views.
How can I achieve that?

Hi
when i scroll the horizontal scroll bar of the grid and print it in IE, the printed grid is not started from the column where i scroll to, it always starts from the first column, is there any configuration i should setup?
Thanks

How can I use font-awesome in mobile application? I found link for custom icons, but I don't want to rewrite all content css property. I just want to use data-icon="fa fa-home" for example.
.km-arrow-e:after,.km-arrow-e:before{ content: "\e000";}Hi,
I'm having issues with the icons on the pagers and column headers for filtering etc on the grid using cordova on a mobile device. There's a sprite file used to display the icons referenced in the CSS. I've placed it in the following document structure: ~/kendo/styles/default/sprint_2x.png and it works fine in the Appbuilder device simulator but when I load the app onto a device the icons aren't visible.
Any ideas?
Thanks in advance.
HI ,
We have a requirement where we need to make "Delete" and "Cut" Button disable/invisible based on specific roles which we already handled.
But we also need to disable keyboard shortcut as well when delete and cut are disable/Invisible.
Is there any way to achieve it ?

Definition for init method in kendo.mobile.ApplicationOptions is missing:
interface ApplicationOptions { browserHistory?: boolean; hideAddressBar?: boolean; updateDocumentTitle?: boolean; initial?: string; layout?: string; loading?: string; modelScope?: Object; platform?: string; retina?: boolean; serverNavigation?: boolean; skin?: string; statusBarStyle?: string; transition?: string; useNativeScrolling?: boolean; init?(): void; //missing!! }
I'm using kendo Telerik.UI.for.AspNet.Mvc5 version 2016.2.607 in .net 452
inside one of my templates i have a reference to a localization string, like this:
<script type="text/x-kendo-tmpl" id="msgTemplate"> <div class="media"> <a class="pull-left" href="#=RelevantURL#" target="_blank" title="@CoBRALocalization.MVC.RootResource.ClickToAccess"> <img src="@Url.Content("~/Content/images/incAlert.png")?h=30&mode=max" alt="Active" /> </a> <div class="media-body"> <div class="media-heading"> <small><time datetime="#=UnixDateCreated#">#= kendo.toString(DateCreated, 'G') #</time></small> </div> <p>#=FriendlyMessage#</p> </div> </div></script>
look at the @CoBRALocalization.MVC.RootResource.ClickToAccess reference. works fine if the localization value is in english or something like that, but trying a turkish value like
Erişim'i tıklatın
will give me an error saying the template is invalid, and the title looks like:
title="Erişim'i tıklatın"
clearly the hashtag is causing the problem, but i can't find a way around that. Solutions like
http://www.telerik.com/forums/escaping-with-new-syntax
don't really fit this case. Any other ideas?