Telerik Forums
Kendo UI for jQuery Forum
1 answer
356 views

Hello,

I am using multiple instances of a kendo window in a vue component where user can click on any item to get more details in a kendo window. The user can view multiple item details at a time. I need to implement a feature where user can Minimize, Restore, Drag or Close actions on any of the open window.

 

To save screen space I need the ability to dock the windows to either on bottom or top corner of the screen when minimize event is triggered and on restore it should move back to its original position, I expect the window to move similar to code in https://github.com/ROMB/jquery-dialogextend in kendo window widget.

Example: http://romb.github.io/jquery-dialogextend/example.html

Please can you help 

Kind regards

 

 

Hammy Babar

 

 

Veselin Tsvetanov
Telerik team
 answered on 25 Jun 2020
5 answers
410 views

Hello,

We have a dropdown list defined (using MVVM), as below:

<input data-role="dropdownlist" data-source="{ data: ['One', 'Two'] }"/>

 

I don't know if it's relevant, but this is from within a popup kendoWindow.

When the user clicks the middle of the dropdown, it displays correctly. If the user clicks the down-arrow on the right-hand side of the dropdown (as is conventional), the dropdown briefly expands, then hides again instantly. If I disable animations, nothing happens on click at all.

Note this is only in IE11. Chrome, Firefox, and Edge all work properly.

When I rig up an example in Dojo or JsFiddle, I don't see the problem.

Is this a familiar issue at all?

Can you suggest any possible causes?

We're using jquery-1.10.2 and Kendo UI v2017.2.621

Many thanks,

George

Dimitar
Telerik team
 answered on 25 Jun 2020
3 answers
148 views

Hi, we tried to push the kendoFilter to its limit, by adding some custom filter components, like dropdownlist and kendomultiselect.

We do not have any problem with dropDownList, the selected value is sent to the filter as expected.

But, for the kendoMultiSelect, we do not get the "ids" in the filter value, but an array of all dataItems.

The ".value()" of the kendoMultiSelect only contains ids as expected, but in the corresponding value of the dataFilter, we see dataItems.

Look at that sample, with field/operator "multi / anyOf". 

Initially, we set ids as value, and they are correctly set. 

But when you click on the multiselect to change values, you will see what happen.

I can loop for all values of the "expression" and fix them, but that's not what I want.

I need to get the kmulti "value" property set as-is to the filter value.  Not the complete dataItems, just the ids.

How can I do this?

I think it's a bug!

Angel Petrov
Telerik team
 answered on 24 Jun 2020
2 answers
127 views

Hello,

I want to modify the value of a DropDownList column for selected rows from outside the grid. 

I’m facing a problem, which can be reproduced in this sample:

http://dojo.telerik.com/urEboTUZ

When only one row is selected and the button "update" is clicked everythings works fine and as expected.  However, if I select multiple rows, only the cell of the first row is updated and only this cell is marked dirty.

I would be grateful if you could tell me how to change the code, that I can change the value of multiple rows.

Regards,
Stefan

Stefan
Top achievements
Rank 1
 answered on 24 Jun 2020
3 answers
120 views

Column nested column grid resizeColumn doesn't work ? 

this is demo

https://dojo.telerik.com/oHoXIkaf/4

what should i do ?  

thank you 

look forward to you reply

 

Thank you and look forward to your reply

Plamen Mitrev
Telerik team
 answered on 24 Jun 2020
8 answers
2.4K+ views

I switched my asp.net + kendoui website to use the Kendo CDN and now I am missing the (some?) icons from the grid.  I am getting the errors below that appear to be coming from the redirects on kendo's side. 

I am thinking I must be doing something wrong, but am not sure where to go from here.

The are:

  • HTTP404: NOT FOUND - The server has not found anything matching the requested URI (Uniform Resource Identifier).
    (XHR)GET - https://kendo.cdn.telerik.com/source/web/kendo.default.mobile.css
  • HTTP404: NOT FOUND - The server has not found anything matching the requested URI (Uniform Resource Identifier).
    (XHR)GET - https://kendo.cdn.telerik.com/source/web/kendo.default.css
  • HTTP404: NOT FOUND - The server has not found anything matching the requested URI (Uniform Resource Identifier).
    (XHR)GET - https://kendo.cdn.telerik.com/source/web/kendo.common.css

Website Pic http://imgur.com/a/Oh03a

 

The relevant code in my _Layout file is:

01.@{
02.[snip]
03.    var kendoVersion = "2017.1.118";
04.}
05. 
06.<!DOCTYPE html>
07.<html>
08.<head>
09.    <meta charset="utf-8" />
10.    <meta name="viewport" content="width=device-width, initial-scale=1.0">
11.    <title>@ViewData["Title"]</title>
12. 
13.    <script src="//ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.8.3.js"></script>
14.    <script src="//kendo.cdn.telerik.com/@(kendoVersion)/js/jquery.min.js"></script>
15.    <script src="//kendo.cdn.telerik.com/@(kendoVersion)/js/kendo.all.min.js"></script>
16.    <script src="//kendo.cdn.telerik.com/@(kendoVersion)/js/kendo.aspnetmvc.min.js"></script>
17. 
18. 
19.    <link href="~/Content/bootstrap.min.css" rel="stylesheet" />
20.    <link href="~/Content/bootstrap-theme.min.css" rel="stylesheet" />
21. 
22. 
23.    @*Kendo*@
24.    <link rel="stylesheet" href="//kendo.cdn.telerik.com/@(kendoVersion)/styles/kendo.common.min.css" />
25.    <link rel="stylesheet" href="//kendo.cdn.telerik.com/@(kendoVersion)/styles/kendo.default.min.css" />
26.    <link rel="stylesheet" href="//kendo.cdn.telerik.com/@(kendoVersion)/styles/kendo.default.mobile.min.css" />
27. 
28.    <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.css" />
29. 
30.    @Styles.Render("~/Content/css")
31. 
32.    @RenderSection("head", required: false)
33.    <!-- begin law html header -->
34.    @Html.Raw(application.HTMLHeader)
35.    <!-- end law html header -->
36.</head>
37.[snip]

 

Thanks,

Logan

 

 

 


Petar
Telerik team
 answered on 24 Jun 2020
12 answers
998 views

Recent Kendo update added noDataTemplate shows when there is no search result.

Is there way that make it not display in default?

Ivan Danchev
Telerik team
 answered on 24 Jun 2020
1 answer
117 views

You can find an example of the issue in this jsFiddle https://jsfiddle.net/ewaldhofman/hjkxcr45/1/

In the example, I have a simple datasource which gets local data, but uses ServerAggregates to show the issue that I am running into. The issue is that I can't figure out how to update the grandtotal (footerTemplate) when using pushUpdate.

I use pushUpdate to improve the performance of updating the grid, and everything works (including group totals - which I have enabled in my environment, although not available in the sample) except for the grand total.

I have tried to call the grid.refresh() and the dataSource.read(), but nothing seems to work. 

Silviya Stoyanova
Telerik team
 answered on 23 Jun 2020
2 answers
2.3K+ views

In kendo grid when I click on the Edit button it shows the Update and Cancel button immediately. Is there any way to prevent this ?

I mean when clicking on the Edit button it should first check the condition if it is true only then show it should show the Update and Cancel buttons

Thanks

Anton Mironov
Telerik team
 answered on 23 Jun 2020
10 answers
2.0K+ views

Does anyone know if it's possible to have a single button in the grid header that lets me pick which columns to show/hide rather than having it in the column menu on each column???

https://dojo.telerik.com/etIbIvOC

Angel Petrov
Telerik team
 answered on 22 Jun 2020
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?