How to do RadImageGallery in MVC ?
is it possible to do RadImageGallery in MVC ?
Why is the action text being added to the dom for Kendo Windows? In my case, I have the text 'Close' being inserted and showing underneath the close icon.
Out of the box the arrow defaults to up for opened and down for closed. Out art director wanted to know if we could change the arrow to be pointing left for closed and up for open.
Hope this question makes sense.
Philip
Hello.
Currently Kendo UI for Angular doesn't seem to have Scheduler control. What are your plans about releasing Scheduler?
var viewModel = kendo.observable({ assessmentDateSource: new kendo.data.DataSource({ transport: { create: { url: crudServiceBaseUrl + "/Assessment/Create", type: "POST" }, parameterMap: function (options, operation) { if (operation !== "read" && options.models) { return { models: kendo.stringify(options.models) }; } return options; } }, batch: true, schema: { model: { id: "AssessmentId" } } }), firstname: "", lastname: "", create: function () { //Datasource is empty here do I some how have to push the viewmodel into the datasource? this.assessmentDateSource.sync(); } }); Thanks in advance
Hello KendoUI Team,
One issue we've encountered that we were hoping you could shed some light on is the behavior that occurs when copy/pasting cells with attached validation, similar to the issue seen with disabled cells here: http://www.telerik.com/forums/copy-paste-of-disabled-cells .
We have our spreadsheet set so that we define the validation for each of the spreadsheet's columns. However we've noticed that when a user copy/pastes between cells of different columns, it also copies the validation over which is less than ideal for what we are trying to accomplish.
You can replicate the behavior I'm seeing on the kendo demo page: https://demos.telerik.com/kendo-ui/spreadsheet/validation
-> on the demo page, copy cell B7 (christina.toms) into an empty cell like H7 or a cell with existing validation like D7. You will notice that the red flag as well as the cell's associated data validation is copied as well and will end up overriding any of the other cell's initial validation rules. Any suggestions so that we can work around this and have it copy only the cell value?
Best,
Jeff
I have a dojo here to demonstrate the issue.
https://dojo.telerik.com/@smilelari/ejUtax/2
When the text in the textarea is set to html that contains styling (like: <style type="text/css">.cs2654AE3A{text-align:left;text-indent:0pt;margin:0pt 0pt 0pt 0pt} .csC8F6D76{color:#000000;background-color:transparent;font-family:cursive;font-size:15pt;font-weight:normal;font-style:normal;}</style><p class="cs2654AE3A"><span class="csC8F6D76">Hello</span></p>), if you select text and then select a format from the format menu, the format (for example Heading 1) is not applied. Any ideas how to fix this? Thanks
Hello,
I use the following Code to create a Kendo window dynamical to load a partial view - after closing the window I call the destroy method
to remove the window and it Content from the DOM.
$(
"<div id='win"
+ name +
"' />"
).kendoWindow({
title: stitle,
actions: [
"Close"
],
draggable:
false
,
resizable:
false
,
//appendTo: "#containerTest",
modal:
true
,
animation: {
open: {
effects:
"slideIn:left"
,
duration: 500
},
close: {
effects:
"slideIn:left"
,
reverse:
true
,
duration: 500
}
},
visible:
false
,
pinned:
false
,
content: { url: surl, iframe: iframe },
close:
function
(e) {
},
deactivate:
function
(e) {
this
.destroy();
}
});
var
window = $(windowname).data(
"kendoWindow"
);
window.wrapper.addClass(
"gpdb-sidebar-window"
);
window.open();
But there is a Performance Problem if I open the window in a view with a Kendo grid with more then 500 rows - it seems that to use the destroy() in the deactivate Event of the window becomes slower and slower the more rows in the grid exists...
I have attached a Picture from the Chrome performance analyser - it seems there is a "Recalculate Style" in Kendo.all.js which is called often...
robert