Telerik Forums
Kendo UI for jQuery Forum
6 answers
264 views
I was wondering if it is possible to use sortable handlers within a kendo template. Also, is it supported by mvvm? I'm having trouble finding documentation. Thanks in advance.
Alexander Valchev
Telerik team
 answered on 13 May 2015
2 answers
691 views

We use the kendo datasource sync feature for our crud operations and want to validate on or before sync gets called. It looks like your validation story is built around the UIValidator, which doesn't really work for us, we want to validate in code. I would expect that since you can define a schema for your model that the datasource would run through validation on or before sync but this doesn't seem to be the case. Am I missing something? How can I validate the datasource before I call sync?

 

Thanks,

Gregory Bailey

Advent Software, Inc.

Alexander Valchev
Telerik team
 answered on 13 May 2015
1 answer
154 views

Hi,

Is the multi-column header functionality in the normal kendo grid going to be implemented in the future for the tree list grid?

 

Thanks,

Rob.

Atanas Georgiev
Telerik team
 answered on 13 May 2015
4 answers
638 views

I have a grid in which column allows users to attach 1 or more files for a given row.  The users can add attachments one at a time.

After they have completed adding files, i would like to read the list of files from the kendoUpload control and upload them along with other data in the grid in one shot.

 The code below however always returns only one file even if there is more than one that the user added.  Any ideas why this is?

 

var fileData = new FormData();
//prefix files with assumptionCode to map them to appropriate record in controller
$.each($("input[type=file]"), function (i, obj) {
    debugger;
    var id = $(this).closest('form').attr('id');
    $.each(obj.files, function (j, file) {
        fileId = id + '_' + file.name
        fileData.append(fileId, file);
    })
});
 

For the the column that contains the kendoUpload controls, i am using a custom template which returns the following:

   frm = "<form method='post' action='#' enctype = 'multipart/form-data' id='" + data.Code + "' >"
            + "<input class='attachments' tabindex='-1' name='files[]' type='file' "
            + "id='" + data.Code + "' /></form>"
 
    return frm

 Any idea why this is happening and how to resolve

 

 

T. Tsonev
Telerik team
 answered on 13 May 2015
3 answers
268 views
I am creating a chart using Kendo DataBiz: Code as below

1) Charts gets displayed
2) Once user click the Legend (Spots) it hide the Spots bar
3) But Bar does not appear back once user select the Spots Legend again
4) Line on other hand  works quite well.

See attached with screenshot.

Code as below:
$("#ChartTopnPrograms").kendoChart({

                                dataSource: {

                                    data:
data[0]

                                },

                                chartArea: {

                                    width: 750,

                                    height: 280

                                   
,background: ""

                                },

                                theme: '@Model.SelectedTheme',

//                                title: {

//                                    //text:
"Top n Programs between " + kendo.toString(start.value(),
"dd-MMM-yyyy") + " to " + kendo.toString(end.value(),
"dd-MMM-yyyy"),

//                                    font:
"12px sans-serif"

//                                },

                                legend: {

                                    position: "right"

                                },

                                seriesDefaults:
{

                                    type: "bar"

                                },

                                series: [{

                                    field: "ProgramCount",

                                    name: "Spots"

                                }

                            , {

                                type: "line",

                                field: "Value",

                                name: "Actual Value",

                                axis: "Value"

                            }

                        ],

 

                                categoryAxis: {

                                    field: "ProgramName",

                                    name: "Program",

                                   
axisCrossingValues: [0, 100],

                                    labels: {

                                        font: "11.5px Arial,Helvetica,sans-serif"

                                    }

                                },

                                valueAxis: [{

                                    labels: {

                                       
template: "#= kendo.format('{0:N0}',
value) #"

                                    },

                                    title: { text: "" }

                                }, {

                                    labels: {

                                       
template: "#= kendo.format('{0:N0}',
value) #"

                                    },

                                    name: "Value",

                                    title: {
text: "Value" }

                                }

 

                        ],

                                tooltip: {

                                    visible: true,

                                    format: "{0}",

                                    template: "#= series.name #:#= kendo.format('{0:N0}', value)
#"

                                }

                            });
Iliana Dyankova
Telerik team
 answered on 13 May 2015
3 answers
94 views

Hi guys, I've been looking for a better way to collect app erros/usage and send a report to a remote server.

Which kendo features I can use to make a good solution?

 

Regards.

Kiril Nikolov
Telerik team
 answered on 13 May 2015
4 answers
267 views
Hi there, I am having a problem in displaying multi axis chart. I have two chart types (of course two series) - Bubble and Column. But Kendo draws only column but not the bubble.
Data series for bubble is in the format of [{x1,y1,s}, {x2,y2,s}, {x3,y3,s}, {x4,y3,s}]
Data series for column is in the format of [y1, y2, y3, y4]. I set the category access for column as [x1, x2, x3, x4].

Telerik for silverlight  draws them perfectly. But Kendo does not. I have attached two images - the one with bubble and Column chart is drawn by Telerik Silverlight, the one with just Column chart is drawn in Kendo.
I have posted this on Stackoverflow as well if that is any better to see the images - http://stackoverflow.com/questions/26617108/kendoui-multiple-axis-chart-mixed-chart-with-bubble-and-column-chart-types

Could you please suggest me how do I achieve the Multi Axis chart especially the combination of followings.
1. Area and Bubble
2. Area and Scatter
3. Line and Bubble
4. Line and Scatter
5. Column and Bubble
6. Column and Scatter

Many thanks in advance.
-Vinnie



Iliana Dyankova
Telerik team
 answered on 13 May 2015
3 answers
151 views

Hello - are there any plans to develop a Translator, which can be used in conjunction with Telerik Test Studio, in the way that there are translators for Kendo Calendar, Grid, Menu etc..?

 Thanks in advance!

Atanas Georgiev
Telerik team
 answered on 13 May 2015
1 answer
106 views

Hi,

I have a grid with paging.

If I go to another page which isn't the first one,
and then press on one of the headers and sort the column,
then I click on the Add button,
the first row is added immediately , regardless Required fields and  Validation,
although the user didn't press on V!  (the confirmation button)

(attach file)

Do you have any idea why does it happen?

Thanks…

Kiril Nikolov
Telerik team
 answered on 13 May 2015
3 answers
118 views
Since there is no way to center align text I was using non-braking spaces for this task. It wasn't perfect but it worked(at least in version 2014.3.1316). I've tried to update to latest 2015.1.429 version recently and discovered that titles with nbsp in it are completely broken. Here is an example.
T. Tsonev
Telerik team
 answered on 13 May 2015
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
Drag and Drop
Map
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
Licensing
ScrollView
Switch
TextArea
BulletChart
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
TimePicker
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
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
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?