Telerik Forums
Kendo UI for jQuery Forum
3 answers
196 views
Hi,
I have one chart that can be set as column, bar, line and area by a radio input and I'd implemented the refresh method to update the chart for a selected type. I also have a slider where I can change a date and the datasource is updated. The problem is that when the read() method is called after a date is changed doesn't matter if I'd chosen the bar, line or area type, the chart goes back to the default type (stacked column) that was set on MVC sintax. Is there a property that I should set to keep the chart type the same it was before the datatasource update and the read() call?





T. Tsonev
Telerik team
 answered on 15 Jan 2014
4 answers
155 views
In an asp.net mvc 4.5 web project I'm adding the following css files to a bundle: bundles.Add(new StyleBundle("~/Content/css/kendo").Include(
     "~/Content/kendo/kendo.common-bootstrap.css",
     "~/Content/kendo/kendo.bootstrap.css",
     "~/Content/kendo/kendo.dataviz.css",
     "~/Content/kendo/kendo.dataviz.bootstrap.css"));
The result produces the following "Minification failed" error:
<link rel="stylesheet" href="/Content/css/kendo?v=1YMtmjX1ETsQVj7kkRXXmXC3IReX27oqRzELH_ZcGPE1">
/* Minification failed. Returning unminified contents.
(9,96148): run-time error CSS1030: Expected identifier, found '.'
(9,96165): run-time error CSS1031: Expected selector, found ')'
(9,96165): run-time error CSS1025: Expected comma or open brace, found ')'
(9,96202): run-time error CSS1030: Expected identifier, found '.'
(9,96219): run-time error CSS1031: Expected selector, found ')'
(9,96219): run-time error CSS1025: Expected comma or open brace, found ')'
(9,96363): run-time error CSS1030: Expected identifier, found '.'
(9,96371): run-time error CSS1031: Expected selector, found ')'
(9,96371): run-time error CSS1025: Expected comma or open brace, found ')'
*/
/*
* Kendo UI Complete v2013.3.1122 (http://kendoui.com)
...

Sebastian
Telerik team
 answered on 15 Jan 2014
4 answers
123 views
I am compleatly new to the kendo ui and i have downloaded the latest version of kendo ui with the free trail version which is for the evaluation purpose only, in my system.I am struggling to understand how to get started with the this.This has got only the examples,js,license agreements and styles.

I do not undersatand from where to start and how to proceed...i would appreciate if anyone can give me some details on how to get started.i have tried to see the videos given in the website in the browser "mozilla firefox 8.0" but it does not have any result to see.
Thanks,
Swarup
Kiril Nikolov
Telerik team
 answered on 15 Jan 2014
1 answer
261 views
I have Two scenarios, where i want to provide filtering, which does not have direct Mapping with Table column Field.
1) First one i am using Foreign Key Column with Combo Editior, this column is also using Template to display Name isntead of IDs.
  so the Table Relationship is like this, degree has DegreeCategoryID_FK  & joins to DegreeCategory's  DegreeCategoryID_PK Column.

On the Server WebAPI Read method Looks like
==========================================================================================================================
  public PageResult<Degree> GetDegrees(ODataQueryOptions<Degree> options)
        {
            IQueryable results = options.ApplyTo(db.Degrees.Include(dc => dc.DegreeCategory));

            return new PageResult<Degree>(
                results as IEnumerable<Degree>,
                Request.GetNextPageLink(),
                Request.GetInlineCount());

        }
==========================================================================================================================

So when user filters on this Column, it should actually translate that filter to DegreeCategory.Name on the server. 
How can i achieve this ?

The following is in Degree Grid
   {
                                    field: "DegreeCategoryID_FK",
                                    title: "DegreeCategory",
                                    width: 140,
                                    editor: DegreeCategoryComboEditor,
                                    template: function (dataItem) {
                                        //if (window.SelectedDegree != null) {
                                        //    dataItem.DGID_FK = window.SelectedDegree.DGID_PK;
                                        //    return window.SelectedDegree.Name;
                                        //}
                                        //else
                                        //    return "";
                                        return GetdegreeCategoryName(dataItem.DegreeCategoryID_FK, dataItem.DegreeCategory.CategoryName);
                                    }
                                },
Petur Subev
Telerik team
 answered on 15 Jan 2014
1 answer
182 views
Hello, we are trying to combine ellipses and sortable columns in Kendo grid. But if we set sortable:true the column does no longer get the ellipses feature. The full header is displayed without the "..." at the end.

The reason seems to be, that the sortable option adds another <a> Tag to the column Header, disabling the Display:inline style required for the ellipses.

Is there any workaround for that? Is this a bug that will be fixed in a future version of Kendo UI?

Thanks a log
Johann
Dimiter Madjarov
Telerik team
 answered on 15 Jan 2014
1 answer
1.1K+ views
I have been looking through the forums and the docs, but can't find a way to have separate arrays of colors for each series.  I know how to specify the color array using seriesColors, but not at each series level.  I want my donut chart with two series to have 2 different color schemes without using colors from the data, i.e. series.colorField

For example:  http://demos.kendoui.com/dataviz/donut-charts/index.html   I want the inner circle to have one set of colors, and the outer circle to have another.  I want to do this via JS/HTML, not from the data source.    Something like:

"seriesColorsOne": [
            "#428bca",
            "#014478",
            "#a8d166"]

"seriesColorsTwo": [
            "#ED9C28",
            "#d9534f",
            "#363636"]

I am sure I am just overlooking something.
Iliana Dyankova
Telerik team
 answered on 15 Jan 2014
3 answers
181 views
We were trying to implement right to Left text functionality for the KendoUI Dataviz by using css (kendo.rtl.css) provided by KendoUI library. But the chart is completely broken? We can’t fix that issue because we have no control over the SVG. I have tried the same thing for the Grids. Its working fine. Is kendo UI supports Right to Left functionality for the charts? If so please provide some insights in to that.
Iliana Dyankova
Telerik team
 answered on 15 Jan 2014
1 answer
34 views
Hi
If we add any record, after save it should by default select the
record which has been added if it exists in the grid.
How do we achieve this in Kendo?



Kiril Nikolov
Telerik team
 answered on 15 Jan 2014
1 answer
86 views
I believe there may be a bug in the way panes are removed from splitter IF there are more that one splitter on the page.  The following is the remove method from kendo.splitter.js in v2013.3.1119:

remove: function(pane) {
    pane = $(pane);
 
    var that = this;
 
    if (pane.length) {
        kendo.destroy(pane);
        pane.each(function(idx, element){
            that.options.panes.splice($(element).index(".k-pane"), 1);
            $(element).remove();
        });
 
        that._removeSplitBars();
 
        if (that.options.panes.length) {
            that.resize();
        }
    }
 
    return that;
},
If there is only one splitter on the page, $(element).index(".k-pane") will return the appropriate index of the pane.  If there are more than one splitter on the page, the ".k-pane" selector will return panes for ALL the splitters on the page (not just the splitter in question) and the element's index within that jquery object will NOT correspond to the index in the that.options.panes array.  I haven't tried it but I think that the following would eliminate the erroneous panes:
that.options.panes.splice($(element).parent().children(".k-pane").index($(element)),
1);


Dimo
Telerik team
 answered on 15 Jan 2014
1 answer
183 views
Dear Support, 
I want to use the scheduler in classic ASP as the existing Telerik Rad Scheduler is very slow.

Can I please have the Vertical Grouping sample project in Classic ASP please.

Thanks,
Mrinal
Vladimir Iliev
Telerik team
 answered on 15 Jan 2014
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
Chat
DateRangePicker
Dialog
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
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?