Telerik Forums
Kendo UI for jQuery Forum
1 answer
74 views
Hi,

I would like to have different sorting functions for different groups.

For my cases, the events are grouped either by current, past and future group based on the time of the event.

For Current and Future Events, they should be sorted in Ascending Order.
For Past Events, they should be sorted in Descending Order.

I have manually sorted the list first before inserting into the list view as datasource

The group and fixedHeaders work field work perfectly on iOS.
On Android, however, the items order changed.

Do we have any ways to fix this?

Thanks!
Kiril Nikolov
Telerik team
 answered on 07 Jan 2014
5 answers
1.2K+ views
How can I prevent/cancel delete key presses from the scheduler control?
I've gone all over the API, but I can't find a way to intercept the delete key and prevent the default.
Dimo
Telerik team
 answered on 07 Jan 2014
3 answers
374 views
Marketing has specific design in mind for my bullet chart. I'm using a vertical Bullet Chart. I need the target line to be a dotted line.  Oh did I mention I'm using ICENUM to do the bullet chart on the phone. It's looking good.

I've tried to add the labels property found in the documentation;

 series: [
                    {   
                        target: {
                            color: "#444",
                            dashType: "dot",
                            line: {
                              width: 1,
                            }
                        }    
                        
It's not working for me. 

Here is my complete script: 

$("#bar-chart").kendoChart({
                theme: global.app.chartsTheme,
                renderAs: "svg",
                legend: {
                    position: "bottom"
                },
                seriesDefaults: {
                    type: "column"
                },
                series: [
                    {   
                        type: "verticalBullet",
                        color: "#d87635",
                        currentField: "score",
                        targetField: "average",
                        labels:   // Did I mention that the labels are not working for me?
                       {
                           visible: true,
                           format: "{0}",
                           font: "14px Arial",
                       },
                        target: {
                            color: "#444",
                            dashType: "dot",    
                            line: {
                              width: 1,
                            }        
                        },                       
                        data: [
                           {
                                score: 93.7,
                                average: 65.2,                              
                            }, {
                                score: 80.2,
                                average: 22.2,
                            }, {
                                score: 60.8,
                                average: 35.2,
                            }, {    
                                score: 82.1,
                                average: 45.2,                                
                            }, {
                                score: 74.2,
                                average: 55.2,
                            }
                        ]
                    }
                ],
                categoryAxis: {
                    labels: { rotation: -45 },
                    categories: ["Sales & Contracting", "Implementation & Training", "Functionality & Upgrades", "Service & Support", "General"],
                    line: {
                        visible: false
                    },
                    color: "#444", 
                    axisCrossingValue: [0, 0, 100, 100]
                },
                 tooltip: {
                    visible: false
                }
            }).data("kendoChart");

Any Help would be greatly appreciated. 
Iliana Dyankova
Telerik team
 answered on 07 Jan 2014
2 answers
100 views
Anyone know what might be causing this? Looks the same in Chrome and IE, so I don't think it's a browser thing.

Rosen
Telerik team
 answered on 07 Jan 2014
4 answers
65 views
hi guys.
i have recently create an  application that use google maps and also authentication with our server using jquery $. post command.
i have noticed that each time the code is calling to the loading animation ,it somehow bypassing it. the loading popup does not showing and in the debugger i see how it is  commit the code for showing animation and... nada.
what can be the reasons for that?
before about two months  i see someone with same issues who suggest  to attach global jquery ajax events  with showLoading and hideLoading functions  and it was works for  awhile.
can you provide the application settings and ajax settings in which loading animation will work correctly?
regards,
 maor
Maor
Top achievements
Rank 1
 answered on 07 Jan 2014
2 answers
91 views
I want to print a view but the print only print's the current page.
Marisol
Top achievements
Rank 1
 answered on 07 Jan 2014
15 answers
2.5K+ views
Is there a way to display the template for the selected value in the DropDownList?

Providing sample code should not be necessary, as this sample shows what I'm referring to.  Using said sample, what if I wanted the movie poster to show in the selected value?

Thanks, 

Josh
Zachary
Top achievements
Rank 1
 answered on 06 Jan 2014
4 answers
109 views
I visited

http://demos.kendoui.com/web/upload/async.html

with IE10 and tried uploading a zero byte file. It works on Chrome, but in IE10, it just shows the progress animation indefinitely. Is this behavior (a) reproducible and/or (b) correct?
Dimiter Madjarov
Telerik team
 answered on 06 Jan 2014
1 answer
136 views
I have a multiselect that I am initializing.  All works fine except the following scenario...

1.) Select several values from the dropdown list and they are shown as selected values and removed from the list of available options (as expected)
2.) Remove a selected item or two by clicking on the little "x"

At this point the selected items that have been removed (by clicking the "x") should show up back in the list from the dropdown...  They do not and that is my question... How do I get the removed selected values to show back up in the list of available items from the dropdown?

                var asDatabaseCubeId = $("#ASDatabaseCubeId").val();
                var dimName = $(ui.draggable).children(".rb-item-label").attr("data-dimensionname");
                var hireName = $(ui.draggable).children(".rb-item-label").attr("data-hirearchyname");
                var memberCount = $(ui.draggable).children(".rb-item-label").attr("data-membercount");
                
                // defaults
                var serverFiltering = false;
                var autoBind = true;
                var minLength = 0;
                var placeholder = "Select filter parameters...";

                if (memberCount >= 1000) {
                    serverFiltering = true;
                    autoBind = false;
                    minLength = 3;
                    placeholder = "Enter at least 3 characters";
                }

                /* This initiates the actual Kendo Multiselect control */
                $('#' + id).kendoMultiSelect({
                    dataTextField: "DisplayName",
                    dataValueField: "MemberValue",
                    placeholder: placeholder,
                    tagTemplate: $("#multiSelectTagTemplate").html(),
                    dataSource: new kendo.data.DataSource({
                        serverFiltering: serverFiltering,
                        transport: {
                            read: {
                                url: window.rootUrl + "/Reports/DimensionMembers",
                                dataType: "json",
                                data: {
                                    ASDatabaseCubeId: asDatabaseCubeId,
                                    DimensionName: dimName,
                                    HirearchyName: hireName
                                }
                            },
                            parameterMap: convertParam
                        }
                    }),
                    filter: 'contains',
                    //autoBind: autoBind,
                    minLength: minLength
                });
Georgi Krustev
Telerik team
 answered on 06 Jan 2014
5 answers
290 views
Hi,

How can I get the starttime and endtime from the scheduler in the datebinding event?

Thanks,
Martin
Vladimir Iliev
Telerik team
 answered on 06 Jan 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?