Having a Kendo editor declared like this:
@(Html.Kendo().EditorFor(m => m.MyEditor) .Name("MyEditor") .Resizable(true) .StyleSheets(css => css.Add(Url.Content("~/Content/EditorStyles.css"))) .Messages(messages => messages .FontNameInherit("Default") .FontSizeInherit("Default") ) .Tools(tools => tools .Clear() .Bold() .Italic() .Underline() .JustifyLeft() .JustifyCenter() .JustifyRight() .InsertUnorderedList() .InsertOrderedList() .Indent() .FontName(fonts => fonts .Add("Arial", "Arial") .Add("Courier New", "Courier New") .Add("Helvetica", "Helvetica") .Add("Times New Roman", "TimesNewRoman") .Add("Verdana", "Verdana") ) .FontSize(sizes => sizes .Add("8", "8pt") .Add("9", "9pt") .Add("10", "10pt") .Add("12", "12pt") .Add("14", "14pt") .Add("16", "16pt") .Add("18", "18pt") .Add("20", "20pt") ) ))
We have a kendo grid using a number of features including sticky and nested columns. The non-sticky (nested) columns are sluggish when trying to resize. It does work, but the animation is slow.
Is there anyway to improve the performance of the grid resizing in this situation? There doesn't appear to be an animation option behind that that could be disabled.
I have been looking at kendo.drawing to render some charts to PDF and that has been working. Now we have the need to automate rendering the charts and attaching them to an email which then gets sent as part of a batch process.
Is it possible to invoke kendo.drawing.drawDom and kendo.saveAs from the server side?
Hi everyone.
My multiselect works fine, but it adds a completely useless extra select at the bottom.
How can I remove it?
This is my code. The multiselect is fired by mvvm.
<select id="categories"
data-placeholder="Seleziona le categorie"
data-role="multiselect"
data-bind="source: categories, value: detailForm.data.selectedCategories"
data-value-field="id"
data-text-field="name"
>
</select>
Any hint?
Thanks in advance.
Hi,
I was wondering if it was possible to display an image as a response in the Chat control? For example, respond with a png to a users question as oppose to a textual respone. I noticed the renderAttachments method but I am not sure if that is the correct approach.
Thanks,
Euan
What are the alternative approaches to using script tags to house templates?
If you have a <script id="bla" type="text/x-kendo-template"> tag in a partial and try to render it in your main view with either Html.Partial or Html.RenderPartial, it seems that Razor messes around with those script tags somehow.
It's that, or the browser doesn't like the fact that I'm embedding one script tag within another. The reason I'm doing this is because the outer script tag is used for a Kendo View template/content. The inner script tags are templates for a Grid.
?
How to create Alignment of Column Text Header at Middle of merge Row
See Picture
Hi,
Can we customize the hyperlink dialog in your editor?