Telerik Forums
Kendo UI for jQuery Forum
4 answers
163 views

Using even the published demo code at demos.telerik.com, I cannot shift-tab out of a toolbar control.  This can be reproduced at http://demos.telerik.com/kendo-ui/toolbar/index:  get the focus inside the toolbar and press tab to go forward through the buttons, eventually exiting the toolbar and on to other items.  Again, put the focus in the toolbar and use shift-tab to move backwards through the elements.  The focus reaches the first button and stops - it won't shift-tab out.  

In my product's code, I experience almost the same, except the shift-tabbing seems to stop at the second button in the toolbar, not the first as seen in the demo.

Ivan Danchev
Telerik team
 answered on 03 Oct 2016
1 answer
136 views

Hi,

I am looking for an example on the syntax of a  kendo mvvm dependant(computed) observable when used in type script. 

Have not been able to find this anywhere.

 

Best regards

Ole

 

Stefan
Telerik team
 answered on 03 Oct 2016
1 answer
127 views

This started sometime late 2015 from what I can tell on the dojo page. It doesn't make sense and looks strange.

http://dojo.telerik.com/udIHI

Georgi Krustev
Telerik team
 answered on 03 Oct 2016
2 answers
690 views

I have a html/javascript chart which I populate via an ajax call. On dataBound, i resize the chart xAxis max and draw plotbands based on the values bound to the grid. Unfortunately, the setOptions call seems to then fire the dataBound event again... and around and around it goes in an endless loop. I got around this by setting a flag so that it only processes the first time. However, the issue I now face is that when I pull new data into the chart later (say because the user expanded the data ranges), i cant reset that flag and let it fire the code in the dataBound event. So, when the user expands the date ranges there is a good chance that my poltbands and axiscrossing settings will be wrong. Any advice?  See below for code...

 

$.ajax({
        type: "POST",
        data: JSON.stringify({
            startDate: $('#txtDateRangeFilter').data('daterangepicker').startDate,
            endDate: $('#txtDateRangeFilter').data('daterangepicker').endDate
        }),
        url: "/User/EChart",
        contentType: "application/json",
        dataType: 'json'
    })
        .done(function (data) {
            var plotbandloaded = false;

            $('#currentDuration').text(Math.round(data.userGoalDetails.DurationHours * 100) / 100 + " hrs");
            $('#goalDuration').text(Math.round(data.userGoalDetails.Goal * 100) / 100 + " hrs");
            $("#chartE").kendoChart(
            {
                dataSource: {
                    data: data.userActivity
                },
                sort: {
                    field: "CreateDateTime",
                    dir: "asc"
                },
                title: {
                    text: ""
                },
                legend: {
                    position: "bottom"
                },
                chartArea: {
                    background: "",
                    width: 300,
                    height: 190
                },
                seriesDefaults: {
                    type: "line",
                    style: "smooth"
                },
                series: [
                    {
                        field: "Minutes",
                        name: "Minutes",
                        axis: "Minutes",
                        color: "#4D4D4D",
                        type: "column"
                    }, {
                        name: "Count",
                        field: "Count",
                        axis: "Count",
                        color: "#00B5A3",
                        type: "line"
                    }
                ],
                valueAxes: [{
                    name: "Minutes",
                    color: "#4D4D4D"
                }, {
                    name: "Count",
                    color: "#00B5A3"
                }],
                categoryAxis: {
                    field: "Day",
                    majorGridLines: {
                        visible: false
                    },
                    axisCrossingValues: [0, 50],
                    labels: {
                        rotation: "auto"
                    }
                },
                tooltip: {
                    visible: true,
                    format: "{0}%",
                    template: "#= series.name #: #= value #"
                },
                dataBound: function (e) {
                    setTimeout(function () {
                        if (plotbandloaded == false) {
                            var goal = Math.round((data.userGoalDetails.Goal * 60) * 100) / 100;
                            var goalTo = goal + (goal * .025);
                            var setMax = goal + (goalTo * .15);
                            var chart = $('#chartE').data("kendoChart");
                            var axisCrossing = chart.options.series[1].data.length + 1;
                            var options = {
                                valueAxes: [{
                                        name: "Minutes",
                                        color: "#4D4D4D",
                                        max: setMax,
                                        plotBands: [{
                                            from: goal,
                                            to: goalTo,
                                            color: "#c00",
                                            opacity: 0.3
                                        }]
                                    }, {
                                        name: "Count",
                                        color: "#00B5A3"
                                    }],
                                categoryAxis: { axisCrossingValues: [0, axisCrossing] }
                                };

                            plotbandloaded = true;
                            chart.setOptions(options);
                        };
                    }, 100)
                }
            });

        });

Dimo
Telerik team
 answered on 03 Oct 2016
1 answer
207 views

Hi, 

I have been using the column menu to filter/choose columns to display in my grid and have been greatly pleased with the results.  However, I would like to add a second custom menu item to the column menu that has the functionality of the column menu, but the choices are determined differently...

 

so say my columns are human names, Aaron, Andrew, Dave, Dorothy, Evan, Eric.  Currently in the "columns" section of the menu, I can select which of those 6 I would like to display.  Is it possible to add a second menu item that will contain choices 'A', 'D', and 'E' as checkboxes and will display those columns starting with the respective letter? 

Hopefully that was clear enough.  Thanks for the help!

Dimiter Madjarov
Telerik team
 answered on 03 Oct 2016
1 answer
80 views

I am using the kendo UI with the following version Kendo UI v2016.2.714.

I have a kendo grid with add, update and delete buttons, these functionalities are working fine in all the latest browsers except IE11.

Do i need include anything to make it work for these button events or any other ways to get this done.

 

Rumen
Telerik team
 answered on 03 Oct 2016
1 answer
231 views

Hi,

Is anybody seeing the "blank context menu issue" in the spreadsheet? The menu contains 4 items (Cut, Copy, Paste and Merge) but they are not visible unless you hover over them

And the Cut, Copy and Paste commands don't work anyway, they cause a "do not use this function" message. See http://screencast.com/t/lsHfeO8FT

This is happening with the Q3 2016 release in Chrome, Edge and IE 11.

 

Mike Wiese

Rumen
Telerik team
 answered on 30 Sep 2016
1 answer
74 views

Clicking on the legend item hides/shows series on a line graph. 

Is it possible to bind to this event and execute my code? There are an example of hover over events, but I can't find any other example.

Thanks!

Zak
Top achievements
Rank 1
 answered on 30 Sep 2016
11 answers
442 views
Hi

Do you plan to add multi checkboxes inside the filter in the Row mode - when the filter boxes appear under headers?

Currently it is possible but in the Menu mode when filters appear after filter icon is clicked.

If yes when it could be expected? If no do you know any easy way to customize that?

Thanks in advance for an answer
Boyan Dimitrov
Telerik team
 answered on 30 Sep 2016
0 answers
212 views

Hi folks,

You might experience an issue with missing or malformed Unlink and PDF toolbar tools with version 2016.3.914 of Kendo UI Editor.

The Problem
The issue could be observed on the following demos:

and is also logged with Medium severity here.
Here is how the PDF icon looks when the problem happens:

The Workround

A possible partial workaround is to add the following to the page styles:

.k-i-unlink { background-position: -288px -72px; }
.k-i-pdf { background-position: -288px -240px !important; }


Note that the solution works for all themes except the Office365.

Telerik Admin
Top achievements
Rank 1
Iron
 asked on 30 Sep 2016
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
SmartPasteButton
PromptBox
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?