or
What I'd like to suggest is to build a general purpose tooltip (templates are cool!), that:
Did I miss any feature or ist there no way to achive my goals (poitioning and showing all data) at this time?
Best regards
Dirk
Model:
//after search,my Model.Body is here
<
table
>
<
tbody
>
<
tr
><
td
align
=
"center"
style
=
"font-weight:bold;"
>
<
span
style
=
"background-color:#ccff33;"
>My Model Body Is Here</
span
>
</
td
></
tr
>
</
tbody
>
</
table
>
View:
@(Html.Kendo().Editor()
.Name("Body")
.Tools(tools => tools.Clear()
.Bold().Italic().Underline().Strikethrough()
.JustifyLeft().JustifyCenter().JustifyRight().JustifyFull()
.InsertUnorderedList().InsertOrderedList()
.Outdent().Indent()
.CreateLink().Unlink()
.InsertImage()
.SubScript()
.SuperScript()
.ViewHtml()
.FontName()
.FontSize()
.FontColor().BackColor()
)
.HtmlAttributes(new { style = "width:90%;height:500px" })
.Value(Model.Body))
Controller:
[OutputCache(Duration = 0)]
public ActionResult Index(int id=0)
{
return View(ModelRepository.GetModelById(id));
}