Telerik Forums
Kendo UI for jQuery Forum
2 answers
56 views
Hi

I'm missing the european timezones (p.e. "Europe/Zurich") in the mentioned ressource above.
Any idea?

Thanks
Jean-Claude
Jean-Claude
Top achievements
Rank 1
 answered on 05 Dec 2013
6 answers
399 views
Can someone please help, we want to resize our KendoUI stock chart based on window resize (i.e. make it responsive). How can we redraw the stock chart when user changes to mobile device or resizes their browser window?
Iliana Dyankova
Telerik team
 answered on 05 Dec 2013
1 answer
359 views
I have HTML that I am pulling from a database and displaying in a cell.  Right now, just the raw HTML is displayed.

How do you enable the column to display the HTML (css and all)?   I have looked at the column templates, but don't see an examples.

Thanks.



Kiril Nikolov
Telerik team
 answered on 05 Dec 2013
1 answer
238 views
Kendo Ui Grid: When I choose cancel on Popup editing, the entire row is deleted.
This happens only with newly added rows, old ones don't get deleted.

to reproduce this => http://uicod.com/c60.cod

1 add a new row
2 then click "Edit" and "Cancel".

Thanks.
Kiril Nikolov
Telerik team
 answered on 05 Dec 2013
7 answers
393 views
I get javaScript error when my model return nullable Int.  I use MissingValues(ChartLineMissingValues.Gap) but this didn't fix the issue. I really don't want to show the line when there is no values. If I change my code to return zero it will show the Line at zero. this is not what I am looking for 

Unhandled exception at line 35, column 17304 in http://localhost:28123/Scripts/kendo/2013.2.716/kendo.all.min.js

0x800a138f - JavaScript runtime error: Unable to get property 'value' of undefined or null reference
Hristo Germanov
Telerik team
 answered on 05 Dec 2013
23 answers
1.5K+ views
Hello,

I have a problem with showing two modal windows:
after second window is closed the page is still covered & unavailable.

Test project is attached.
Please select "change password" in menu and click "change".
Then close opened popup and see that the first window is still covered.

Is it a bug with kendo window or I'm using it in the wrong way?

Vova
Dimo
Telerik team
 answered on 05 Dec 2013
25 answers
3.0K+ views
Do you have any sample code to integrate knockoutjs with the grid?

I got the dropdownlist example working and was easy.

Just can't figure out how to follow the same method with a Datasource with the grid.

I would like to do something like the following again like with the DropDown list
  $(function () {
        $.get("GetJsonData", "", function (data) {
            for (var i = 0; i < data.length; i++) {
                var itemNew = new Item();
                itemNew.Id = data[i].Id;
                itemNew.Name = data[i].Name;
                viewModel.teams.push(itemNew);
            }

            ko.applyBindings(viewModel);

            $("#selectItem").kendoDropDownList();

        });
    });

thanks.
Atanas Korchev
Telerik team
 answered on 05 Dec 2013
1 answer
172 views
I have a pre-existing webforms .NET project that would benefit from KendoUI mobile for some dedicated mobile functionality.  I can get it functioning - and primarily utilize client side functions - but on the rare occasion when I need to use a server control - I'm encountering odd errors.

If I place a server control (like a link button) in a Kendo UI Mobile widget - I get an error when trying to postback.

<ul data-role="listview">
 <li><asp:LinkButton runat="server" ID="l" CommandName="db" CommandArgument='1' Text='Test'></asp:LinkButton></li>
 <li><asp:LinkButton runat="server" ID="l" CommandName="db" CommandArgument='1' Text='Test'></asp:LinkButton></li>
 <li><asp:LinkButton runat="server" ID="l" CommandName="db" CommandArgument='1' Text='Test'></asp:LinkButton></li>
 </ul>

It renders fine - a scrollable view of active list items - but any click/touch results in as js error:
Uncaught Error: Syntax error, unrecognized expression: unsupported pseudo: __doPostBack

Any way to work around this?
Bill O'Neil
Top achievements
Rank 1
 answered on 05 Dec 2013
2 answers
2.8K+ views
Hi Team, 

I am using Kendo UI file upload control with multiple attribute set to true.

Does File Upload control handles the failed uploads on its own ?

I am using the following code snippet on the server and i am posting data through web api.

[HttpPost]
        public Task Post()
        {
            var folderName = "Uploads";
            //var PATH = HttpContext.Current.Server.MapPath("~/" + folderName);
            var PATH = "C://Uploads/";
            var rootUrl = Request.RequestUri.AbsoluteUri.Replace(Request.RequestUri.AbsolutePath, String.Empty);
            if (Request.Content.IsMimeMultipartContent())
            {
                var streamProvider = new MultipartFormDataStreamProvider(PATH);
                var task = Request.Content.ReadAsMultipartAsync(streamProvider).ContinueWith(t =>
                {
                    if (t.IsFaulted || t.IsCanceled)
                    {
                        throw new HttpResponseException(HttpStatusCode.InternalServerError);
                    }                    
                });
                return task;
            }
            else
            {
                throw new HttpResponseException(Request.CreateResponse(HttpStatusCode.NotAcceptable, "This request is not properly formatted"));
            }
        }

 I want to capture the error information for the failed files and display that information to the user.

Kendo file upload is just returning the status as Failed for the failed uploads but how we can pass the actual error information back to the user?

Thanks
Zachary
Top achievements
Rank 1
 answered on 04 Dec 2013
2 answers
80 views
Hi!

I'm implementing a function that will be used as callback for several routes in my SPA. My challenge now is that I don't know how to get the route definition inside the function. For example:

var callback = function(){
   ///How to get the according route definition? For instance: "/login", "/main", "/items/:category/:id"
}

router.route("/login", callback);
router.route("/main", callback);
router.route("/items/:category/:id", callback);

Does the Kendo API provide a way to get that information?

Thanks.
Olivier
Top achievements
Rank 1
 answered on 04 Dec 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?