Telerik Forums
Kendo UI for jQuery Forum
1 answer
132 views
I am having an issue with the labels on a Kendo Chart. It seems to be caused by data with the date of 11/6/2017. Could it be an issue with daylight savings time? If data is returned that includes that date, the chart generates hundreds of x-axis labels instead of just 20-30 (depending on the date range used). I have changed the raw data for 11/6 and it does not seem to be related to the actual values. I can successfully graph any other date range. Please see the attached graphic.
Stefan
Telerik team
 answered on 20 Nov 2017
3 answers
814 views

Our accessibility department flagged our kendo multiselects as being "inaccessible" because "spacebar" is not supported to use as a selector. Multiselect apparently uses "Enter" key to make multiple selections.

I have tried to swap the keycodes during detection but it doesnt seem to work.

Ultimately, we would like to support "spaces" in our input field, but use the spacebar key to make a selection when scrolling through the list.

 

I have tried this code but it doesnt work. Any ideas? Is this possible?

 

//watch for "spacebar" key sequence from user keyboard
multiselectRoot.on("keydown", function (e) {
 
    if (e.keyCode === 32) { // space bar
        console.log('found spacebar');
 
        event.preventDefault();
        e.keyCode = 13; //reset to "return key"
        multiselect.trigger(e);
 
        console.log('event fired');
    }
});

 

Thank you

Richard
Top achievements
Rank 1
 answered on 17 Nov 2017
1 answer
358 views

So all the examples given are for jQuery and show to use the id assigned to the select and use dataItems() to get the selected items in an array. However, for React, I haven't had luck defining a MultiSelect with an id, and I am unsure how to select a specific one to get the selected items. I have several multiselects defined and need to get the selected items that are provided via a remote data source. 

Here is an example of one them: 

<MultiSelect id="materials" dataSource = {this.materialOptions} dataTextField={'material_code'} dataValueField={'material_code'} placeholder='Select Materials...'/>

 

When I view the element it doesn't have the assigned id "materials". So how I can access this outside of the render definition?

Kara
Top achievements
Rank 1
 answered on 17 Nov 2017
5 answers
235 views

When I view my KendoUI map control on my iPad I see 2 marker images for each marker - one large and the other small.

On every other browser the map looks OK, but for some reason on iPad I see an additional large marker behind.

Is there a way I can remove the large marker on ipad?

Cheers

Stefan
Telerik team
 answered on 17 Nov 2017
6 answers
603 views

Hi, 

Im using the Kendo Date Picker and next to it is an input Im using to display a time range (eg: 12:00 - 13:00). Is it possible to make the input look and behave (ie, changing shades on hover) like a kendoUI Time Picker, but not function like one?

Thanks, 
Grant

Grant
Top achievements
Rank 3
Iron
Iron
Iron
 answered on 17 Nov 2017
1 answer
121 views

Hi,

 

I'm wondering if there is something to make a parent child relationship between an autocomplete component to a grid?

 

I used to have another grid to host the information from autocomplete which I can use linkChild() to easily bind two grids. But I couldn't seem to find any similar function that allows me to do the same between the autocomplete with the grid. If there is no such method exist, is there any walk around that allows me to do so?

Regards,

Yifan

Stefan
Telerik team
 answered on 17 Nov 2017
1 answer
115 views
'CompanyName' field and 'ContactTitle' field have an editable: false attribute.
However, editing is possible.

$("#grid").kendoGrid({
  dataSource: {
    type: "odata",
    transport: {
      read: "https://demos.telerik.com/kendo-ui/service/Northwind.svc/Customers"
    },
  },
  editable : true,
  pageable: true,
  columns: [{
    field: "CompanyName",
    title: "Company Name",
    width: 420,
    editable : false
  },
            {
              title: "Contact Info",
              columns: [{
                field: "ContactTitle",
                title: "Contact Title",
                width: 200,
                editable : false
              },{
                field: "ContactName",
                title: "Contact Name",
                width: 200
              },{
                title: "Location",
                columns: [ {
                  field: "Country",
                  width: 200
                },{
                  field: "City",
                  width: 200
                }]
              },{
                field: "Phone",
                title: "Phone"
              }]
            }]
});



Preslav
Telerik team
 answered on 16 Nov 2017
1 answer
686 views

'CompanyName' field and 'ContactTitle' field have an editable: false attribute.

However, editing is possible.

https://dojo.telerik.com/akUSOh/2

 

$("#grid").kendoGrid({
  dataSource: {
    type: "odata",
    transport: {
      read: "https://demos.telerik.com/kendo-ui/service/Northwind.svc/Customers"
    },
  },
  editable : true,
  pageable: true,
  columns: [{
    field: "CompanyName",
    title: "Company Name",
    width: 420,
    editable : false
  },
            {
              title: "Contact Info",
              columns: [{
                field: "ContactTitle",
                title: "Contact Title",
                width: 200,
                editable : false
              },{
                field: "ContactName",
                title: "Contact Name",
                width: 200
              },{
                title: "Location",
                columns: [ {
                  field: "Country",
                  width: 200
                },{
                  field: "City",
                  width: 200
                }]
              },{
                field: "Phone",
                title: "Phone"
              }]
            }]
});

 

 

Preslav
Telerik team
 answered on 16 Nov 2017
5 answers
934 views

I've searched around a little but can't find a relevent resolution.

 

On a grid with virtual scrolling (all data is on client), how can I stop Kendo from scrolling to the top of the page after a user does a batch save and the grid rebinds?

Stefan
Telerik team
 answered on 16 Nov 2017
4 answers
226 views

I have been having a problem with trying to edit a second time after pressing cancel the first time. I found a kendo example which demonstrates my problem: https://docs.telerik.com/kendo-ui/controls/scheduling/scheduler/how-to/binding/using-local-observable-data-object

I clicked cancel when editing an event. Then double clicked the event again to edit and it did not work. In the example it will only redisplay the edit screen if you press the "update" button first. But after that you can open the edit screen and press cancel as many times as you like.

Can you help fix this?

 

Ivan Danchev
Telerik team
 answered on 16 Nov 2017
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
ContextMenu
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
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?