Telerik Forums
Kendo UI for jQuery Forum
6 answers
365 views
We've built a Kendo UI grid report that works fine with Chrome, Firefox, Safari(windows), and IE11 using Windows 8.1 pro,
JQuery 1.9.1, and Kendo UI 2013.3.119.

There is a problem displaying the Grid using IE 11.0.2 with Windows 7, JQuery 1.9.1, and Kendo UI 2013.3.119.

Can you repeat this problem?  Any solutions to this problem?  
Kiril Nikolov
Telerik team
 answered on 09 Jan 2014
6 answers
196 views
Hi,

we are using several charts in our application. Due to internatiolaisation we want to change the label formatters for dates and other automatically rendered values.

As we don't want to edit every single chart instance by hand, we are looking for a way to set the default formatters and renderers globally.

How can we do it? Why ist it not described in the culture packages?

Thanks
Andreas
Top achievements
Rank 1
 answered on 09 Jan 2014
3 answers
247 views
I have a search form beside the grid and when someone does a search I need it filter the grid. Is the below code how I would accomplish this or is this only a client-side solution? The filtering will happen on the server side. If the below code is also used server side filtering, how do I interpret the querystring on the GET request?


this.submitSearch = function () {
    dataSource.filter(
        { field: "FirstName", operator: "eq", value: $('FirstName').val() },
        { field: "LastName", operator: "eq", value: $('LastName').val() },
        { field: "Email", operator: "eq", value: $('Email').val() },
        { field: "Phone", operator: "eq", value: $('Phone').val() },
        { field: "ReservationDate", operator: "eq", value: $('ReservationDate').val() }
    );
}
Atanas Korchev
Telerik team
 answered on 09 Jan 2014
0 answers
87 views
I was figuring out how to work better with the TabStrip, and thought I would upload the project I worked on in case anybody else might find it useful.
This is a visual studio 2013 project.
Atlas
Top achievements
Rank 1
 asked on 08 Jan 2014
1 answer
162 views
I am using kendo ui Donut chart to display category and its
value on Donut chart.

When there is  5
category data in “Model.ChartDataList”
the Donut chart animation is working  fine.
But when it receive only 1 category data in “Model.ChartDataList” the Donut chart animation is not working.

Is there any way to slow the speed of animation of Donut
chart ?

How can I control the animation of Donut chart ?

 And why it is not animating when there is only 1 category data in “Model.ChartDataList”.

Class ChartData{

public string CategoryName {get;set;}
public int Value {get;set;}

}

Class donutViewModel{

public  List< ChartData> ChartDataList {get;set;}

}

 

  @(Html.Kendo().Chart(Model.ChartDataList)
      .Name("Chart")
      .Legend(legend => legend.Visible(false))
       .Title(title => title.Font("Bold 12px Calibri").Text("CHART"))
        
      .Tooltip(tooltip => tooltip
                          .Visible(true)
                          .Template("${category}-${value}%")
                          .Format("{0}%")
         
      )
            .Series(series =>
            {
                   series.Donut(m => m.Value,m => m.CategoryName);
            })
  )

Iliana Dyankova
Telerik team
 answered on 08 Jan 2014
7 answers
169 views
Dear Sir,

I use kendo with phonegap / IOS
When I touch any Kendo's input box, then push it up or down, the Main Layout included footer or header will be move up or down together.
  
Thanks
Jack
Kiril Nikolov
Telerik team
 answered on 08 Jan 2014
1 answer
454 views
Hi,

I have a treeview bound to a hierarchical data source and it all loads fine

var treeview = $("#tree").kendoTreeView({
         dataSource: treeData,
         dataTextField: "Name",
         checkboxes: {
             template: "<input type='checkbox' name='checkedFiles[#= item.id #]' value='#= item.id #' #if(item.IsChecked){# checked #}#/>"
              
         },
         // listen for item selection
         select: function (e) {
 
             // don't let the item be selected
             e.preventDefault();
             $(':checkbox:first', $(e.node)).click();
 
         }
     }).data("kendoTreeView");
The issue is that I am using a template to set the checked flag on the check box if the datasource says the item is checked. The generated HTML shows the checked flag in the correct place for the relevant items, however the checkbox is either not checked, or  parent items are checked when I don't want them to be

I think the issue is that on the data source, I am using the requestEndHandler to expand all nodes as per the documentation: 

function requestEndHandler() {
    setTimeout("expandNodes()");
};
  
function expandNodes() {
    $("#tree").data("kendoTreeView").expand(".k-item");
};
How can I prevent the expanding of the nodes from messing up my check box state setting?

Many thanks



Kiril Nikolov
Telerik team
 answered on 08 Jan 2014
3 answers
36 views
Hello,

i used follwing code in out layout ...

<footer data-role="footer">
     <!-- Kendo Mobile TabStrip widget -->
     <div data-role="tabstrip">
        <a data-icon="search" data-rel="external" href="/Search">Suchen</a>
        <a data-icon="recents" data-rel="external" href="/Calendar">Termine</a>
        <a data-icon="contacts" data-rel="external" href="/Contacts/MyContacts">meine Aktivitäten</a>
     </div>
</footer>

<script type="text/javascript">
     // Initialize a new Kendo Mobile Application
     var app = new kendo.mobile.Application($(document.body), { platform: "blackberry" }); // ohne Angabe einer Plattform wird das Design automatisch anhand des User-Agents ausgewählt
     kendo.culture("de-DE");
</script>

Everything works fine in visual studio.
After publishing the mobile website .... all data-icons use chinese icons.

How do i change the culture of used data-icons ?

Regards

Jürgen Meyer


Justyna
Top achievements
Rank 1
 answered on 08 Jan 2014
1 answer
74 views
I was wondering if the kendo dropdownlist is supported with the Icenium package of Kendo UI DataViz and Mobile, because the Dropdownlist itself is in Web documentation but it's demoed in the mobile section.
Steve
Telerik team
 answered on 08 Jan 2014
1 answer
115 views
Hi Fellas, 

I just encountered another problematic, and it seems pretty simple, but I could not come up with an answer reading the documentation.
I demonstrated the issue here: http://chris1904.webege.com/test2.html 
Jane Parker's message includes HTML code, and I would like to have that parsed as HTML as well. How do I pass HTML through JSON?

Thank you for your help,
Chris 
Petyo
Telerik team
 answered on 08 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?