Telerik Forums
Kendo UI for jQuery Forum
1 answer
187 views

How to do RadImageGallery in MVC ?

is it possible to do RadImageGallery in MVC ?

Pavlina
Telerik team
 answered on 27 Feb 2018
1 answer
95 views

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.

 

 

Ivan Danchev
Telerik team
 answered on 27 Feb 2018
1 answer
1.2K+ views

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

Neli
Telerik team
 answered on 27 Feb 2018
17 answers
651 views

Hello.

Currently Kendo UI for Angular doesn't seem to have Scheduler control. What are your plans about releasing Scheduler?

 

Dimiter Topalov
Telerik team
 answered on 27 Feb 2018
4 answers
408 views
Hi,

I have a Razor ASP.NET MVC view with kendo upload function in to

@(Html.Kendo().Upload()
                        .Name("attachment")
                        .Async(a => a
                            .Save("SaveUserPicture", "Upload")
                            .Remove("RemoveUserPicture", "Upload")
                            .AutoUpload(false)
                    )
            .Multiple(false)
            .Events(e => e.Success("onUploadComplete"))
            .Events(e => e.Select("onSelect"))
            .Messages(m => m.StatusUploading("1"))
            .Messages(m => m.StatusUploaded("2"))
            .Messages(m => m.Select("3"))
            .Messages(m => m.Cancel("4"))
            .Messages(m => m.UploadSelectedFiles("5"))
            .Messages(m => m.DropFilesHere("6"))
            .Messages(m => m.Retry("7"))
            .Messages(m => m.StatusFailed("8"))
            .Messages(m => m.Remove("9"))
        )

How can I change the label "Done" ?
As you can see I've tried all labels but it doesn't work.

Kind regards,
Kruno
Artem
Top achievements
Rank 1
 answered on 27 Feb 2018
6 answers
373 views
Hi,
I am having a few problems and so far are unable to find an example which integrates the basic MVVM regsistration example with a datasource which posts the registration details servier side using Create.
Is anybody able to provide a working example?

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

Mark
Top achievements
Rank 1
 answered on 26 Feb 2018
4 answers
271 views

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

Ivan Danchev
Telerik team
 answered on 26 Feb 2018
2 answers
140 views

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

Larissa
Top achievements
Rank 1
 answered on 23 Feb 2018
1 answer
153 views
I tried updating my version of Kendo from 2017.3.913 (R3 2017) to 2018.1.221 (R1 2018 SP1), but I ran into an issue with the latest Typescript declarations. In previous versions of Kendo, the Typescript declarations added extension methods for all kendo components onto the jQuery interface. The latest release (2018.1.221) seems to only add a couple of extensions, but the bulk of the components no longer have extension methods. Is this a bug, or a whole-sale change to the declarations?
Milena
Telerik team
 answered on 23 Feb 2018
12 answers
1.0K+ views

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

 

Ivan Danchev
Telerik team
 answered on 23 Feb 2018
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?