Telerik Forums
Kendo UI for jQuery Forum
2 answers
127 views

Hi. I want to disable the 'filter by condition' subsection of the range filters (leaving only the 'filter by value' subsection).

Is there a way to do this?

Thanks.

 

Callam
Top achievements
Rank 1
Veteran
 answered on 03 Nov 2020
6 answers
1.2K+ views
Currently the multiselect widget gets wrapped in a div, causing it to move to a newline. Other similar widgets like the dropdownlist do not. Is there a way I can make the multiselect widget not move to a newline?

I tried setting the display to be 'inline-block', but then it shifted the multiselect to be 'hovering' above the available data.

http://imgur.com/GiQURfS
Stoyan
Telerik team
 answered on 02 Nov 2020
2 answers
72 views

Hello,

to me it seems the 2020 R3 update breaks a little on (some) custom views. I have a custom view adopted from your documentation at https://docs.telerik.com/kendo-ui/controls/scheduling/gantt/how-to/creating-custom-view. If I open this in the Dojo, the tasks don't line up with the table (see attached file). If I change back to 2020 R2 SP1 release from the dropdown at the top left (and cleanup the stylesheet reference), the tasks once again lineup with the table.

 

Also the line this.list.header.find("tr").height(height + "em"); that seems to be used to adjust the tasks <> tables gives an error of Uncaught TypeError: Cannot read property 'header' of undefined when I update to the latest release and am running the Gantt in a node.js app. Where can I do the adjusting in a custom view when I update to the latest release?

 

Rami
Top achievements
Rank 1
Veteran
 answered on 30 Oct 2020
1 answer
125 views

Hi team

I have a requirement where i need to bind grid as control select column value while adding new record. Is there any such feature in kendo ui jQuery grid?

please find the attachment for reference

Georgi Denchev
Telerik team
 answered on 29 Oct 2020
3 answers
385 views

Hi,

I updated my project to Kendo UI for jQuery 2020.3.1021 but then all grids stop working on mobile or tablet devices. When downgrading to 2020.3.930 grid works fine.

I have tested on iPad,iPad Pro, Samsung S10.

 

Easiest way to reproduce the error is to open the demo page here: https://demos.telerik.com/kendo-ui/grid/index in Chrome on a pc and emulate an iPad for ex. Or load that

In the browser console you can see the javascript error: "Cannot read property 'rows' of null".

 

 

Douglas
Top achievements
Rank 1
Iron
 answered on 29 Oct 2020
1 answer
141 views

Hello!

I want to display initial list of files, but I don't want to use 'async' mode.

As I see in the docs, this feature works well in async mode https://docs.telerik.com/kendo-ui/api/javascript/ui/upload/configuration/files

But it doesn't work without 'async' setting https://dojo.telerik.com/UVOmAtIM

Is it bug or not?

Thanks!

Bill
Top achievements
Rank 1
 answered on 29 Oct 2020
2 answers
347 views

Hi Admin, I would like to use the dplProcessing for Kendo PDF Viewer, and the requirements there mentioned Telerik.Web.PDF is needed. But i can't find it even I download the latest trial pack. May I know where can I get it?

Reference: https://docs.telerik.com/kendo-ui/controls/PDF/PDFViewer/dpl-processing

Syan
Top achievements
Rank 1
 answered on 29 Oct 2020
1 answer
118 views

Hi Telerik admin !

When i using Kendo UI for jQuery with Kendo grid object. I have a problem :

     Open page have kendo grid in browser PC. It work verry good.

    But when open by browser Mobile, content in kendo grid be hidden.

Please help me to show grid on Mobile is fully as in PC.

Tks verry much !

( picture in PC and Moblie in attachment file )

Eric R | Senior Technical Support Engineer
Telerik team
 answered on 28 Oct 2020
1 answer
809 views

Hi,

When I use a kendo grid column menu with a column.command property, it seems to override the columnMenu,

As a test case, https://docs.telerik.com/kendo-ui/api/javascript/ui/grid/configuration/columnmenu

if you put a command in it, you will not see the column menu (3 dotted symbol) in the column header.

Is this how it is intended because I couldn't find any documentation on the situation.

If so, what are your recommendation if I want to use the column menu and also have some custom functions for the column using command property

 

For example:

<div id="grid"></div>
<script>
$("#grid").kendoGrid({
  columns: [
    { field: "name", command: { name: "cmdName", click: function (e) { }}  },
    { field: "age" }
  ],
  columnMenu: true,
  dataSource: [
    { name: "Jane Doe", age: 30 },
    { name: "John Doe", age: 33 }
  ]
});
</script>

Neli
Telerik team
 answered on 28 Oct 2020
1 answer
312 views

I'm  beginner, so be gentle. Working with the demos to get a basic grid working on my localhost, but the json file is not reading correctly into the grid. The grid is built, but nothing.  Help!!

 

<%@ page contentType="text/html; charset=iso-8859-1" 
        language="java" 
        isThreadSafe="true" 
        session="true" 
        isELIgnored="false" %>
        
<!DOCTYPE HTML>
<html>

<%@taglib prefix="kendo" uri="http://www.kendoui.com/jsp/tags"%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta content=no-cache http-equiv="Pragma">
<meta content=no-store http-equiv="Pragma">
<meta content=-1 http-equiv="Expires">

<script src="<%= request.getContextPath()%>/kendojs/jquery.min.js"></script>
<link href="<%= request.getContextPath()%>/kendocss/kendo.common.min.css" rel="stylesheet" type="text/css">
<link href="<%= request.getContextPath()%>/kendocss/kendo.default.min.css" rel="stylesheet" type="text/css">
<script src="<%=request.getContextPath()%>/kendojs/kendo.all.min.js"></script>



<title>Kendo Grid</title>
</head>

<body>
<b>Kendo Grid</b>

<div>

<kendo:grid name="grid" groupable="true" sortable="true" style="height:550px;">
<kendo:grid-pageable refresh="true" pageSizes="true" buttonCount="20">
</kendo:grid-pageable>
    <kendo:grid-columns>
        <kendo:grid-column title="City" field="City" width="150" 
        template="<div class='customer-photo' style='background-image: url(../resources/web/Customers/#:data.customerId#.jpg);'></div><div class='customer-name'>#: contactName #</div>">           
        </kendo:grid-column>
        <kendo:grid-column title="Country" field="Country" width="150" />
        <kendo:grid-column title="Country ISO3" field="Country_ISO3" width="100" />
        <kendo:grid-column title="Pop. 1950" field="Pop1950" width = "100" />
        <kendo:grid-column title="Pop. 1955" field="Pop1955" width = "100" />
        <kendo:grid-column title="Pop. 1960" field="Pop1960" width = "100" />
        <kendo:grid-column title="Pop. 1965" field="Pop1965" width = "100" />
        <kendo:grid-column title="Pop. 1970" field="Pop1970" width = "100" />
        <kendo:grid-column title="Pop. 1975" field="Pop1975" width = "100" />
        <kendo:grid-column title="Pop. 1980" field="Pop1980" width = "100" />
        <kendo:grid-column title="Pop. 1985" field="Pop1985" width = "100" />
        <kendo:grid-column title="Pop. 1990" field="Pop1990" width = "100" />
        <kendo:grid-column title="Pop. 1995" field="Pop1995" width = "100" />
        <kendo:grid-column title="Pop. 2000" field="Pop2000" width = "100" />
        <kendo:grid-column title="Pop. 2005" field="Pop2005" width = "100" />
        <kendo:grid-column title="Pop. 2010" field="Pop2010" width = "100" />
        <kendo:grid-column title="Pop. 2015" field="Pop2015" width = "100" />
        <kendo:grid-column title="Pop. 2020" field="Pop2020" width = "100" />
        <kendo:grid-column title="Pop. 2025" field="Pop2025" width = "100" />
        <kendo:grid-column title="Pop. 2050" field="Pop2050" width = "100" />
        <kendo:grid-column title="Location" field="Location" width = "100" />
    </kendo:grid-columns>
    <kendo:dataSource pageSize="10">
    <kendo:dataSource-transport>
            <kendo:dataSource-transport-read url="http://localhost:8080/KendoGrid/urban-areas.json" dataType = "json"/>
        </kendo:dataSource-transport>

         <kendo:dataSource-schema>
            <kendo:dataSource-schema-model>
                <kendo:dataSource-schema-model-fields>
                    <kendo:dataSource-schema-model-field name="City" type="string" />
                    <kendo:dataSource-schema-model-field name="Country" type="string" />
                    <kendo:dataSource-schema-model-field name="Country_ISO3" type="string" />
                    <kendo:dataSource-schema-model-field name="Pop1950" type="number" />
                    <kendo:dataSource-schema-model-field name="Pop1955" type="number" />
                    <kendo:dataSource-schema-model-field name="Pop1960" type="number" />
                    <kendo:dataSource-schema-model-field name="Pop1965" type="number" />
                    <kendo:dataSource-schema-model-field name="Pop1970" type="number" />
                    <kendo:dataSource-schema-model-field name="Pop1975" type="number" />
                    <kendo:dataSource-schema-model-field name="Pop1980" type="number" />
                    <kendo:dataSource-schema-model-field name="Pop1985" type="number" />
                    <kendo:dataSource-schema-model-field name="Pop1990" type="number" />
                    <kendo:dataSource-schema-model-field name="Pop1995" type="number" />
                    <kendo:dataSource-schema-model-field name="Pop2000" type="number" />
                    <kendo:dataSource-schema-model-field name="Pop2005" type="number" />
                    <kendo:dataSource-schema-model-field name="Pop2010" type="number" />
                    <kendo:dataSource-schema-model-field name="Pop2015" type="number" />
                    <kendo:dataSource-schema-model-field name="Pop2020" type="number" />
                    <kendo:dataSource-schema-model-field name="Pop2025" type="number" />
                    <kendo:dataSource-schema-model-field name="Pop2050" type="number" />
                    <kendo:dataSource-schema-model-field name="Location" type="string" />
                </kendo:dataSource-schema-model-fields>
            </kendo:dataSource-schema-model>
        </kendo:dataSource-schema>
    </kendo:dataSource>
</kendo:grid>

</div>
</body>
 <style type="text/css">
    .customer-photo {
        display: inline-block;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-size: 32px 35px;
        background-position: center center;
        vertical-align: middle;
        line-height: 32px;
        box-shadow: inset 0 0 1px #999, inset 0 0 10px rgba(0,0,0,.2);
        margin-left: 5px;
    }

    .customer-name {
        display: inline-block;
        vertical-align: middle;
        line-height: 32px;
        padding-left: 3px;
    }
</style> 

</html>

Viktor Tachev
Telerik team
 answered on 28 Oct 2020
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
MultiColumnComboBox
Dialog
Chat
DateRangePicker
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Effects
Accessibility
PivotGridV2
ScrollView
BulletChart
Licensing
QRCode
ResponsivePanel
Switch
Wizard
CheckBoxGroup
TextArea
Barcode
Breadcrumb
Collapsible
Localization
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
+? more
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
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?