Telerik Forums
Kendo UI for jQuery Forum
1 answer
166 views
I have the following code which works perfectly in Chrome and Firefox, but it does not work in IE9. The server has the correct CORS header Access-Control-Allow-Origin

I don't get any errormsg in IE, but when i start network trace in the F12 developer tools I Can see that it is not trying to read data at all. api.rambase.net is never accessed.
<!DOCTYPE html>
<head>
    <title></title>
    <link href="styles/kendo.common.min.css" rel="stylesheet" type="text/css" />
    <link href="styles/kendo.default.min.css" rel="stylesheet" type="text/css" />
    <script src="js/jquery.min.js" type="text/javascript"></script>
    <script src="js/kendo.web.min.js" type="text/javascript"></script>
</head>
<body>
    <div id="grid"></div>
    <script>
        $(document).ready(function () {
            var myDatasource = new kendo.data.DataSource({
                transport: {
                    read: {
                        url: "http://api.rambase.net/sales/customers/",
                        dataType: "json",
                        data: {
                            access_token: "pJqsseeESsdfse-d9_8CMQPsLg2"
                        },
                        beforeSend: function (req) {
                            req.setRequestHeader('Accept', "application/json");
                        }
                    }
                },
                schema: {
                    data: "customers.customer"
                }
            })
 
            $("#grid").kendoGrid({
                dataSource: myDatasource
            });
        });
 
    </script>
</body>
</html>
rgullhaug
Top achievements
Rank 1
 answered on 03 Apr 2012
1 answer
140 views
<select name="select1" id="select1">
   <option value="">-- select --</option>
   <option value="1">One</option>
   <option value="2">Two</option>
</select>

When I do $("#select1").kendoDropDownList() the submitted value becomes "-- select --" instead of ""

The value of the option label is empty string, the submitted value should be empty string.
Georgi Krustev
Telerik team
 answered on 03 Apr 2012
0 answers
57 views
can you please give the example for how to set the strip lines property in chart

please help me urgently

Thanks in advance.
Nagarjuna
Top achievements
Rank 1
 asked on 03 Apr 2012
1 answer
111 views
I went through all the demos, there is no color picker; Is there any other 3rd party that you guys recommend ? I evaluated a few, the one with the name jPicker sounds pretty useful to me.
Dimo
Telerik team
 answered on 03 Apr 2012
1 answer
114 views
I have a simple push button or <input type="button">

I would like that to look like buttons that we see in Template framework demos.

I have not seen any plugin for that. How can I make my button like that ?
Dimo
Telerik team
 answered on 03 Apr 2012
1 answer
108 views
Hello,

When I attempt to bind a grid to a grouped data source using the MVVM pattern I am able to get data to display, but the groups will not collapse.  Here is a jsFiddle that illustrates the problem:

http://jsfiddle.net/nbove/DgAFv/1/

I am assuming this behavior is not intended since it only happens when binding using the MVVM pattern.

Rosen
Telerik team
 answered on 03 Apr 2012
0 answers
139 views
I need a non-editable grid with row select and without any kind of drag and drop.  

So far the grid control is mostly doing great, but there's one ugly UI problem.  If the visitor clicks on a row and then drags up or down to other rows, the browser (in this case webkit) allows them to select the text in the various cells they drag over.  This is both ugly and confusing to the site visitor.

Is there some configuration option or extra CSS/javascript that can disallow mouse-drag text selection in a grid?
T
Top achievements
Rank 1
 asked on 03 Apr 2012
1 answer
122 views
There is a "roadmap" link that contains what would be better characterized as release notes given its rear-view perspective.  Is there an actual roadmap where would be able to see features from the product backlog scheduled for upcoming releases?
Dimo
Telerik team
 answered on 03 Apr 2012
6 answers
416 views
Hi,

I want to customize the options of date filter dropdown. I just want "Is before" and "Is after". How can i do that? Right now i am doing it this way:
{
field: "DateCol",
title: " Date",
template: '#= kendo.toString(DateCol, "MM/dd/yyyy hh:mm:ss")#',
filterable: {
                extra: false, //do not show extra filters
                operators: { // redefine the string operators
                    date: {
                        lt: "Is before",
                        gt: "Is after"
                    }
                }
            }
}
This shows only the options that i have written but the Problem is that it doesn't filter. What is the issue? Pls help.

Regards,
Khushali
Nikolay Rusev
Telerik team
 answered on 03 Apr 2012
1 answer
314 views
Hello,

I'm trying to set the current culture doing so;

<div id="calendar"></div>

<script>
$(document).ready(function() {
kendo.culture("it-IT");
$("#calendar").kendoCalendar();
});
</script>

 but doesn't work :'(
I still see the calendar in english view, I tried also with french using kendo.culture("fr-FR"); like here (jsFiddle demo) but still be in english
what can I do?
Iliana Dyankova
Telerik team
 answered on 03 Apr 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?