kendo-tabstrip

Kendo UI : Tabstrip content should redirect to another View in the same Tabstrip on button Click

ぐ巨炮叔叔 提交于 2019-12-25 07:01:30
问题 I have a Tabstrip and in the content of that Tabstrip , I have a button. So when I click on the button it will redirect to the other page. But is there any way to make it just redirect in the content of the same Tabstrip? ** This question has been asked earlier but nobody answered,Can someone help me please !! Im stuck !!. Thanks! 回答1: You can override the default behavior of a Kendo tabstrip link by adding a custom handler to the tab strip's "select" event. $("#tabStrip").kendoTabStrip({

Bootstrap columns inside Kendo Tabstrip

a 夏天 提交于 2019-12-11 12:19:55
问题 I have a Kendo Tabstrip and I'm trying to format its content using Bootstrap. But Tabstrip's border, k-content k-state-active , is rendered at top and my elements are outside. If I don't use Bootstrap, everything will be fine. I have already read this question and it doesn't solve my problem. This is my code: <div> @(Html.Kendo().TabStrip() .Name("tabstrip") .Items(items => { //removed items.Add() .Text("اطلاعات حساب‌ها") .Content(@<text> <div class="form-group form-inline col-xs-12"> <div

In MVC How to pass a parameter to tabStrip when I was using Partial Views?

血红的双手。 提交于 2019-12-10 11:44:56
问题 In my view page, I have a button. When I click the button, I want to make the window open. The window has some tabstrips, and in the tabstrip I want to show a grid and pass a parameter to the grid. Does kendo UI allow me to do this? Kendo Window -- How to pass a parameter to the _TabStrip from my main view?(like the parameter is "paraA" string) @(Html.Kendo().Window() .Name("window") .Title("About Alvar Aalto") .Content(@Html.Partial("_TabStrip").ToHtmlString()) .Draggable() .Resizable()