Telerik Forums
Kendo UI for jQuery Forum
1 answer
73 views
hello , i am new to kendoui , the server side wrapper : asp.net , jsp , php , is it only for web? not for mobile ? 
do you have any plan for mobile?
Dimo
Telerik team
 answered on 19 Jun 2013
2 answers
91 views
Hi,
Can you please see this website: http://kiwi.saykor.com/

Please, click on Harry Potter :) you will see the grid.
1 issue: The data is loaded from mongolab.com binded to the controls and it seems is here but not show on the grid as long as not click on any column header. Then the first issue is fixed automatically.

2 issue: see the dropdown Choose University. On the first load it seems is empty but is not. When you click it will see the index 1 is selected but is not show on the label as long as not click on the dropdown.

tested on last version of browsers: FF, Chrome and IE 

Last row resize problem: refresh the page pls. Click on Harry Potter, all is ok. Click on Morticia, add 2 students, all is ok. Click back on Harry Potter and now we have a space between last row and pagination/total row. This behavior is happen on IE10.
On Chrome and FF the first click on HP after refresh the page break the last row.

Maybe some of this problems is for missing configuration I am not sure. Please advise.

Best regards
Saykor
Top achievements
Rank 2
 answered on 19 Jun 2013
2 answers
157 views
Hi!

We are developing an app using kendoMobileDataviz version 2013.1.319 and jQuery 1.9.1. We have a view with a kendoChart and it is showing a bar chart, and the user can select from a drop down to have the data presented as a pie chart as well.

The problem is that when the user touches any of the bars or the pie, the App sort of hangs. Is there any way to disable the click events for the whole chart? The events we find in the documentation are 'plotAreaClick' and 'seriesClick', we have tried using e.preventDefault() on both the events but that doesnt help.

- Any idea on why touching the chart hangs the app?
- How do we disable touch events on the whole chart?


Thanks!
Andreas
Top achievements
Rank 1
 answered on 19 Jun 2013
1 answer
130 views
Hi,


I want to use Kendo upload into kendow window, but I am getting issue while uploading it. Below code for kendo upload in page.


ISSUE : I am getting multiple times response in "onSuccessWnd" function and also in my controller. So that same image will display multiple times. Please me solution for same.

It is working perfectly without window.


/********************** image.cshtml page  *********************/

@(Html.Kendo().Upload()
                  .Name("attachments")
                  .HtmlAttributes(new { id = "FilesToUploadWnd", style = "width:100%" })
                  .Messages(m => m.Select("select files from your computer… "))
                  .ShowFileList(false)
                  .Async(async => async
                            .Save("SaveWnd", "Log")
                        )
                  .Events(e => e
                            .Success("onSuccessWnd")
                          )
 
                )


/********************** javascript function  *********************/

function onSuccessWnd(e) {
 
        var url = "../FolderName/" + e.response.status.toString();
 
        var elem = document.createElement("img");
 
        elem.setAttribute("height", "70");
        elem.setAttribute("width", "70");
         
        elem.setAttribute("src", url);
 
        document.getElementById(appendID).appendChild(elem);
  
}
Please let know if any body have a solution for that.
Daniel
Telerik team
 answered on 19 Jun 2013
1 answer
42 views
Hi!

When the page is zoomed in Chrome and FF (haven't checked other browsers) at approximately 150%, and you try to slide over the tree nodes with a mouse from top to bottom, the whole tree shakes along with its nodes. It's subtle but very inconvenient. Can anything be done to get rid of this behavior? At 100% zoom it's cool. 

This can be reproduced even in a demo: http://demos.kendoui.com/web/treeview/index.html

Thanks in advance!
Dimo
Telerik team
 answered on 19 Jun 2013
2 answers
2.0K+ views
Inside selContentItem() shouldn't e.sender be the kendoListView and thus the same as (in this case) $('#contentListView').data('kendoListView')? When I break and debug, it looks like it (though == returns false), but e.sender.dataSource is empty.

$('#contentListView').kendoListView({
        dataSource: data
        , template: kendo.template($("#template").html())
        , selectable: "single"
        , schema: {
            model: {
                children: "Children"
                , id: "id"
                , hasChildren: "hasChildren"
            }
        }
        ,change: selContentItem
    });
  
function selContentItem(e) {
    //I would expect the following to return true and if it did (and similar logic followed), the next line would work nicely but it doesn't because the first line returns false. Why?
  
    console.log(e.sender == $('#contentListView').data('kendoListView'));
    console.log(e.sender.dataSource.view()[e.sender.select().index()]);
  
}
Michael
Top achievements
Rank 1
 answered on 18 Jun 2013
1 answer
7.5K+ views
Hi, 

I want to restrict the number of files that can be uploaded to the server for a single Upload click to a maximum of 20.

Is there any way to achieve this in the Kendo UI file upload control. ? 
Roberto
Top achievements
Rank 1
 answered on 18 Jun 2013
7 answers
394 views
Hello,

I have a few questions about globalization :
1) Why don't you use the browser language by default ? If the script of the current culture of the browser was added, why not use it by default ? For the moment, it's always 'en-US'
2) I added the script <script src="scripts/js/cultures/kendo.culture.fr.min.js"></script> in my application. If I set the culture to 'fr-FR' (kendo.culture("fr-FR")), it doesn't work, the default 'fr' script is not used (I think it should be).
3) Is it possible (and how) to use your globalization framework to localize our own strings ?

Cordially,
Kakone.
Georgi Krustev
Telerik team
 answered on 18 Jun 2013
1 answer
112 views
I have a declarative grid inside a template and I'd like to allow the columns to be filterable, but with filterable.extra set to 'false'. Is this possible?
Here's a JSBin example

I've tried every variation of data-filterable-extra="true" / data-filterableextra="true" / data-filterableExtra="true" / etc...
Ideally, I'd only have the input box and assume that the search method is 'contains'.

Note that this lives within a template, and that I need to loop through an array to get the values, so my implementation actually looks more like this.
Dan
Top achievements
Rank 1
 answered on 18 Jun 2013
2 answers
84 views
I have a Kendo UI Web treeview configured to do OnDemand loading from a remote dataservice using JSON and ODATA.  This is working very well, and I have been very pleased.

My issue comes to light when programmatically selecting a node in the tree, and then clicking its expand icon.  What occurs is that the selection immediately jumps to the first root node.  However, if before or after expanding, you manually select (using your mouse) a node then this behavior stops occurring.

I also notice that when programmatically selecting a node I lose my focused node, but that the focus returns whenever a manual selection is made (using your mouse).

I am not sure that these behaviors are related in anyway, and frankly I do not need the focus, my big issue is the selection changing when all that is done is merely expanding the selected node.

So, to recreate:

1) Setup a treeview in the fashion I described above (with 4 levels)
2) Load the treeview's root nodes (1st level) (rest of the nodes are loaded on-demand when expand occurs)
3) Programmatically expand the first root node to the 3rd level down (arbitrary level #)
3) Programmatiically select this node (with children) on the 3rd level
4) Now it is time for the user to interact with the tree  (Notice at this point how no node has focus (cant keyboard navigate)
5) Merely, expand the currently selected node to view its children
6) Notice, the selection has jumped to the first root level node (but also notice now how this node has focus)

As I said before, my most impeding issue at this point is the selection changing.

Do you know how I can prevent the selection from changing when I just expand the programmatically selected node?


Thanks,

Lee
Lee
Top achievements
Rank 1
 answered on 18 Jun 2013
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?