Using Tab control has always been an easy task to accomplish. But due to lack of sufficient documentation(IMO) of Kendo Tabstrip for MVC, it took me a while to get what i was looking for.
You can follow the basic documentation link of Kendo.
For everything else that was not exactly there in doc -
- Display image with absolute URL - Simply use
.ImageUrl("http://Absolute/path/of/the/image.")
- Display content from Partial View - I found a couple of ways for that.
1- .Content(@<text> @(Html.Partial("_PartialView1"))</text>); 2- .Content(Html.Partial("_PartialView2").ToHtmlString()); 3- .Content(@<text> @(Html.Action("View3"))</text>);
- Change the animation from "expand" to "toggle" -
- Difference in LoadContentFrom and Content in case someone is confused.
.Animation(animation => { animation.Enable(true); animation.Open(config => { config.Duration(AnimationDuration.Fast); config.Fade(FadeDirection.In); }); })
S. Shafique
Fok at RnD Team member