Telerik Forums
Kendo UI for jQuery Forum
0 answers
51 views
When I aggregate a grid on a certain column, the column will be displayed in the groupheadertemplate of the field. The problem is that the field is also displayed in the grid as a column. Is there a way to disable this column in the grid and only show the groupheader template?
 
Andre Broers
Top achievements
Rank 1
 asked on 01 May 2012
1 answer
218 views
I'm trying to set the width of controls in my form but I noticed that the combobox tends to be a little shorter than the other elements with the same width.
Here is a sample http://jsfiddle.net/sitty/PLdGS/8/ I have one input text control and another kendo ComboBox both with width set to 300 but the combo box appears to be a little shorter than the input control.
Iliana Dyankova
Telerik team
 answered on 01 May 2012
2 answers
98 views
We have downloaded a trial of Kendo Mobile.

I have an empty project in visual studio 2010.  I have then added a new html file.

In the same project, I added a "js" folder to which I added the javascript files. 

I have also added a "styles" folder in which I added the css files included in the zip downloaded for the trial

Whenever I open one of these css files, Visual Studio 2010 Premium crashes:  "Microsoft Visual Studio 2010 has stopped working".  This happens each and every time without fail and happens whenever I open a css file from the zip.  When I open another css file I created myself, it does not crash.

I am using Windows 7 Professional 32-bit.

Any ideas what I could be missing or what could be causing the issue?
Dimo
Telerik team
 answered on 01 May 2012
0 answers
105 views
<script id="rowTemplate" type="text/x-kendo-tmpl">

<input name="domainCode" id= "domainCode" type="text" readOnly="true" value="#= Name #" >

</script>


if User enter new value then click on submit button. automatically text box values become blank or empty.


Please assist me

Thanks in advance.
Atit
Top achievements
Rank 1
 asked on 01 May 2012
3 answers
143 views
Hi guys

I define a dropdownlist in the grid, how can I sum this column based on the data-text-field of this dropdown list?

Thanks
Bing
Alexander Valchev
Telerik team
 answered on 01 May 2012
1 answer
62 views
I have seen two different examples - in one of them the language used was #= varname # and in the other I saw - ${varname} . Can some throw some light on the difference between the two.

Thanks in advance.
Pechka
Top achievements
Rank 1
 answered on 01 May 2012
0 answers
123 views
I am testing in Chrome. I don't see any errors in the developer's console. I also don't see a 2nd request made to the datasource.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head>
    <title>My Open Cal</title>
 
    <!-- Kendo UI Files -->
    <link href="styles/kendo.mobile.all.min.css" rel="stylesheet" type="text/css" />
    <script src="js/jquery.min.js" type="text/javascript"></script>
    <script src="js/kendo.mobile.min.js" type="text/javascript"></script>
    <script>
        $( //jQuery page load
            function ()
            {
                var app = new kendo.mobile.Application($(document.body), { layout: "layout", icon: "/images/xboxavatar.png" });
                $("#ulMyCal").kendoMobileListView({
                     
                    dataSource: new kendo.data.DataSource(
                    {
 
                        transport:
                                {
                                    read:
                                    {
                                        url: "http://search.twitter.com/search.json",
                                        contentType: "application/json; charset=utf-8",
                                        type: "GET",
                                        dataType: "jsonp",
                                        data:
                                        {
                                            q: "#tampa"
                                        }
                                    }
                                },
 
                        schema: {
                            data: "results"
 
                        }
                    }),
                    template: "<p>${text}</p>"
 
                });
 
                setTimeout(refreshListView, 5000);
 
 
            })
 
            function refreshListView()
            {
                $("#ulMyCal").data("kendoMobileListView").refresh();
            }
    </script>
</head>
<body>
 
    <!-- Layout for all views in the application, as specified when the app is created -->
    <div data-role="layout" data-id="layout">
      <div data-role="header" >
          <div data-role="navbar">
            <span data-role="view-title">My Open Cal</span>
          </div>
      </div>
      <div data-role="footer">
          <div data-role="tabstrip">
            <a href="#index" data-icon="organize">My Calendar</a>
            <a href="#search" data-icon="search">Search</a>
            <a href="settings.htm" data-icon="settings">Settings</a>
          </div>
     </div>
    </div>
 
 
    <div data-role="view" id="index" data-title = "My Calendar">
        <div style="text-align:center">
            <ul id="ulMyCal" data-style="inset">
             
            </ul>
        </div>
    </div>
 
    <div data-role="view" id = "search" data-title = "Search">
         
    </div>
 
</body>
</html>
Sasha
Top achievements
Rank 1
 asked on 01 May 2012
1 answer
313 views
Hello,

I have an OData service with custom basic authentication. With your dataSource, how can I set the username and the password ? Can I access the request headers ?

Cordially,
Kakone.
Tom
Top achievements
Rank 1
 answered on 01 May 2012
1 answer
175 views
hi all:

How to refresh a grid with parameters, I write that, but it's not work,pls help me ,thanks.

the code               

  var grid_=$("#grid_right").kendoGrid({
                    dataSource: {
                        type: "json",
                        transport: {
                            read:{
                                url: "charge-property/resources/unit_list_data.jsp",
                                dataType:"json",
                                data: {
                                    q: "1231453456456"
                                }
                            }
                 ..........................................
                 ..........................................
                }).data("kendoGrid");

I want to in a button in the event,The parameter q modify the into "test"(old  q: "1231453456456" )

the code :
 grid_ .dataSource.read({
                          url: "charge-property/resources/unit_list_data.jsp",
                          dataType: "json",
                         data: {
                             q: "test"
                         }
                      });
                     grid_.refresh();
pls help me ,thanks.

Volkan
Top achievements
Rank 1
 answered on 30 Apr 2012
0 answers
60 views
I am getting reports from some of my testers that they cannot see the charts. The frame is there and the backgrounds are there, but the lines and pie slices are not there. To make sure it was not just my site, I had them go to the kendo dataviz demos and those are not available either.

I have confirmed this is the case on my personal phone which is android 2.3.4.


Is anyone else experiencing this?
Joshua
Top achievements
Rank 1
 asked on 30 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?