Telerik Forums
Kendo UI for jQuery Forum
4 answers
452 views
angular.js:11358 RangeError: Maximum call stack size exceeded
   at kendo.all.min.js:78
   at Object.a [as compile] (kendo.all.min.js:78)
   at e.support.browser.msie.e.support.browser.version.e.Observable.extend._compileFormula (kendo.all.min.js:77)
   at .<anonymous> (kendo.all.min.js:77)
   at e.support.browser.msie.e.support.browser.version.e.Observable.extend.batch (kendo.all.min.js:77)
   at e.support.browser.msie.e.support.browser.version.e.Observable.extend.fromJSON (kendo.all.min.js:77)
   at e.support.browser.msie.e.support.browser.version.e.Observable.extend.fromJSON (kendo.all.min.js:78)
   at new e.support.browser.msie.e.support.browser.version.e.Observable.extend.init (kendo.all.min.js:78)
   at new e.support.browser.msie.e.support.browser.version.e.ui.Widget.extend.init (kendo.all.min.js:85)
   at HTMLDivElement.<anonymous> (kendo.all.min.js:26)

 

I am trying to load about 29 thousand rows of data into the kendo spreadsheet and I get the above error. What I am doing is converting data from a ExcelPackage to a Telerik.Web.Spreadsheet workbook on the back-end. Then I convert the workbook via the ToJson method, send that data to the front-end, parse the received string data to a JSON and then load that JSON into the spreadsheet directly as a object or via the spreadsheet.fromJSON(data) method.
It works for less data, but doesn't for this. Also I can have hundreds of thousands of rows with no problems but with data it's another story. Can you tell me if there is some better way to do this, or how to work around this error.
Thank you in advance.

Mihai
Telerik team
 answered on 23 Mar 2016
4 answers
174 views
using asp.net 5 clr and have Kendo version 2016.1.112.  When I try to add DropDownList to a view it isn't in the intellisense and If I manually cut/paste sample code into my view I get error message "No Overload for method 'DropDownList' takes () arguments'.  I have purchased UI for ASP.NET MVC and Kendo UI professional but I'm not sure it is recognizing that I have it installed or there maybe an issue with Kendo with my solution setup.  I also have been unable to get things like grid to show with data but simpler components such as datepicker and color picker are working just fine.
RND
Top achievements
Rank 1
 answered on 23 Mar 2016
1 answer
162 views
I working on gantt chart for task,milestone in Force.com Platform(Salesforce) using Kendo UI. Problem is that '+Add' button doesn't work and I can't able to do dependency(s kind of arrow) and I want to update or add record to salesforce org from Gantt Chart.So its my humble request that If you provide the solution and give some example how to integrate kendo UI gantt Chart with salesforce. It will be great help for me and others.
Bozhidar
Telerik team
 answered on 23 Mar 2016
15 answers
253 views

Hello, 

 

I have a situation where i am clicking on a list of names and building chart series with some options on the fly like: 

for (var i = 0; i < data.Data.length; i++) {
                chartOptions.valueAxis.push({     
                    name: data.Data[i].name + '-' + i,
                    min: data.Data[i].data.min(),
                    max: data.Data[i].data.max(),
                    title: {
                        text: data.Data[i].name + '-' + i,
                        visible: false
                    },
                    visible: true
                });
            }
 
            // Draw Series Axes
            for (var i = 0; i < data.Data.length; i++) {
                chartOptions.series.push({
                    axis: data.Data[i].name + '-' + i,
                    data: data.Data[i].data,
                    color: seriesOptions[i].color,
                    highlight: {
                        markers: {
                            visible: true
                        }
                    },
                    name: data.Data[i].name + '-' + i,
                    markers: {
                        visible: true
                    },
                    style: seriesOptions[i].style,
                    type: seriesOptions[i].type,
                });
            }
 
            // Draw Categories Axes
            chartOptions.categoryAxis.categories = [];
            for (var i = 0; i < data.Categories.length; i++) {
                chartOptions.categoryAxis.categories.push(data.Categories[i]);
            }

Now what is happening is for each series that i add, one new value axis is added too. My question is:

Is it possible to keep all this functionality but somehow default to have just a single value axis shown all the time while also keep the value axis array in match with the series array ?

 I have attached a picture in case i am not being clear with what i am trying to achieve.

Dragos
Top achievements
Rank 1
 answered on 22 Mar 2016
2 answers
274 views

Is there a way to draw bars in a waterfall chart NOT to scale?

I have a Waterfall chart that has a large starting value (thousands) and then 5 bars that are small numbers (hundreds or less), and then finally a summary bar (which is large).

How can I draw it so the middle bars are large, and the outer bars are "not to scale".

I have created a jsfiddle to illustrate the problem:

https://jsfiddle.net/fcg9scma/

The ideal solution would be to have the middle bars be larger, and yet maintain the size of the outside bars.  I tried just dividing the large numbers by 10, but it seems to be a band-aid solution that does not work for a large variety of numbers.  Is there a solution that doesn't involve trying to derive a percentage to reduce the data values for the large numbers (while re-adjusting the text in the labels) ? I

Thanks

 

T. Tsonev
Telerik team
 answered on 22 Mar 2016
2 answers
142 views

SystemJS is not finding the dependent Kendo libraries with the 2016 versions of Kendo. It *does* load libraries that are loaded directly by my code.  But when those libraries try to load *their* dependent libraries, SystemJS cannot find them.

 

I've setup two repositories to demonstrate the issue at:

https://github.com/brownieboy/kendo-systemjs-2016
https://github.com/brownieboy/kendo-systemjs-2015

 

The source code and config files for the two repositories should be the same.  The only difference should be that they are using that one is using a 2016 version of Kendo and other is using a 2015 version.  The 2015 version works and the 2016 doesn't.

 

Possible Related Issues
==================
http://www.telerik.com/forums/new-amd-definitions-in-v2016-1-112-are-incompatible-with-webpack
http://www.telerik.com/forums/issues-loading-latest-kendo-version-using-requirejs

Mike
Top achievements
Rank 1
 answered on 22 Mar 2016
1 answer
108 views
Is there any way do n+1 with step? With the dataset on one of my charts, the units are getting set to .5 When I set the step equal to 2 I’m getting 1.5, 2.5, 3.5… as my values. I’d really prefer the labels to be whole numbers.

Here’s a hardcoded example of my chart:
http://dojo.telerik.com/@kmcdaniel/OTEZO
Iliana Dyankova
Telerik team
 answered on 22 Mar 2016
1 answer
57 views
Hi ,

We have a particular case which is creating a recurring event with the rule of repeating 3 times or until 30/04/2016 every "First Saturday - Monthly" starting from 29/3/2016 8:00 to 8:30

I don't know why the events that created on 29/03 or 30/03 aren't displayed to the UI with above rule (ex: Saturday Apr-02).

Could you please advise how we fix it and please make sure the alternative events also work well.

Thanks so much for your help.
Georgi Krustev
Telerik team
 answered on 22 Mar 2016
5 answers
286 views

Hi there,

I was wondering if it's possible to remove the # from the routing in a Kendo SPA application.   

In angularjs you set the locationProvider to use "html5" mode and it relies upon the web server being smart enough to serve any request underneath the spa to the main spa page.

For example

http://www.example.com/spa/#/main

would become

http://www.example.com/spa/main

Thanks,

Devin

Petyo
Telerik team
 answered on 22 Mar 2016
2 answers
81 views

How can i achieve this? 

I have tried with kendo drawing, but i haven't got it to work. Can someone provide me with a working example ?

Thank you.

Dragos
Top achievements
Rank 1
 answered on 22 Mar 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
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?