Telerik Forums
Kendo UI for jQuery Forum
1 answer
117 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.3K+ 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
705 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
432 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
409 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
307 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
160 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
193 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.1K+ 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
8 answers
415 views

How do I debug a source binding that isn't working?

I know i have an ObservableArray that I know exists and has data because if I for loop over it then data shows up

 

//works
<script id="tripEventTemplate" type="text/x-kendo-template">

 # for(var i=0; i < Waypoints.length; i++){ #
            <div style="color:#:Waypoints[i].FontColor #;margin-bottom:10px;background-color:#:Waypoints[i].BackgroundColor #">
                <div>
                    <div>#= Waypoints[i].description #</div>
                </div>
            </div>
            # } #

 

//But if I try to use a template for the array then it doesn't work

<script id="tripEventTemplate" type="text/x-kendo-template">
            <div data-template="tripWaypointCalendarTemplate"
                 data-bind="source: Waypoints">
            </div>

 

 

<script id="tripWaypointCalendarTemplate" type="text/x-kendo-template">
        <div style="color:#:FontColor #;margin-bottom:10px;background-color:#:BackgroundColor #">
            <div>
                <div>#:description #</div>
            </div>
        </div>
    </script>

Tyler
Top achievements
Rank 1
 answered on 23 Feb 2018
Narrow your results
Selected tags
Tags
Grid
General Discussions
Charts
Data Source
Scheduler
DropDownList
TreeView
MVVM
Editor
Window
DatePicker
Spreadsheet
Upload
ListView (Mobile)
ComboBox
TabStrip
MultiSelect
AutoComplete
ListView
Menu
Templates
Gantt
Validation
TreeList
Diagram
NumericTextBox
Splitter
PanelBar
Application
Map
Drag and Drop
ToolTip
Calendar
PivotGrid
ScrollView (Mobile)
Toolbar
TabStrip (Mobile)
Slider
Button (Mobile)
Filter
SPA
Drawing API
Drawer (Mobile)
Globalization
LinearGauge
Sortable
ModalView
Hierarchical Data Source
Button
FileManager
MaskedTextBox
View
Form
NavBar
Notification
Switch (Mobile)
SplitView
ListBox
DropDownTree
PDFViewer
Sparkline
ActionSheet
TileLayout
PopOver (Mobile)
TreeMap
ButtonGroup
ColorPicker
Pager
Styling
Chat
MultiColumnComboBox
Dialog
DateRangePicker
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Accessibility
Effects
PivotGridV2
ScrollView
Switch
TextArea
BulletChart
Licensing
QRCode
ResponsivePanel
Wizard
CheckBoxGroup
Localization
Barcode
Breadcrumb
Collapsible
MultiViewCalendar
Touch
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
TaskBoard
Popover
DockManager
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
TimePicker
BottomNavigation
Ripple
SkeletonContainer
Avatar
Circular ProgressBar
FlatColorPicker
SplitButton
Signature
Chip
ChipList
VS Code Extension
AIPrompt
PropertyGrid
Sankey
Chart Wizard
OTP Input
SpeechToTextButton
InlineAIPrompt
StockChart
ContextMenu
DateTimePicker
RadialGauge
ArcGauge
AICodingAssistant
SegmentedControl
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?