Telerik Forums
Kendo UI for jQuery Forum
1 answer
218 views
I'd like to cancel a selection change in the change event based on user input. Is this possible?

Here's a jsfiddle of what I'm attempting to do:
http://jsfiddle.net/latenightcoder/R4mKu/1/
Chris
Top achievements
Rank 1
 answered on 29 Feb 2012
2 answers
181 views
I am trying to debug a call to WCF RIA Service that return JSON data. when using .Ajax it works fine, but does not work when using it for Kendo Grid. I am trying to find out if there are any callbacks for Success or Error for dataSource ?

also Additionally i want to use Paging,sorting and Filtering on server, do you have sample which does it using
 WCF RIA service ?


 <script type="text/javascript">
        $(document).ready(function () {
            $("#grid").kendoGrid({
                dataSource: {
                    type: "json",
                    transport: {
                        read: "http://localhost:50424/Services/Silverlight_WCF_RIA-Web-MyDomainService.svc/JSON/GetSecurity_Users"
                    },
                    schema: {
                        model: {
                            fields: {
                                First_Name: { type: "string" },
                                Last_Name: { type: "string" },
                                Email_Address: { type: "string" }
                            }
                        }
                    },
                    pageSize: 10,
                    serverPaging: true,
                    serverFiltering: true,
                    serverSorting: true
                },
                height: 250,
                filterable: true,
                sortable: true,
                pageable: true,
                columns: [{
                    field: "First_Name",
                    width: 90,
                    title: "First Name"
                }, {
                    field: "Last_Name",
                    width: 90,
                    title: "Last Name"
                }, {
                    field: "Email_Address",
                    title: "Email"
                }
                ]
            });
        });
    </script>
Mike
Top achievements
Rank 1
 answered on 28 Feb 2012
2 answers
251 views
Hi,

I have a grid that allows grid edition and I soon as I add the grid template, I'm no longer be able to edit the cell withing the grid.
Unfortunately I found examples of each of one but not the two mixed together.

I specify the row template like this:
rowTemplate: $.proxy(kendo.template($("#rowTemplate").html()), ds),

The only reason I need the row template in this case is to provide the necessary CSS (text-align:right) to align amount field column.
Maybe this could be achieved in a different way?

Thanks.
Patrick Rioux
Top achievements
Rank 1
 answered on 28 Feb 2012
0 answers
46 views
Hi,

Is it possible to have a more precise date for the next release or get a preview / beta build before the official release? We are starting a new project and heavily interested in upcoming MVVM support.

Thank you!
Etienne
Top achievements
Rank 1
 asked on 28 Feb 2012
1 answer
142 views
 I was using this method:

for each dropdown that I wanted to turn into a Kendo Dropdown I added the class "kendoddl".  then on my document ready I simply called 

 $(".kendoddl").kendoDropDownList();

It worked fine until I added two drop-downs on the same page.  They interfere with each other and stop working after a few clicks.

Is using classes to initialize, as shown above, not supported?



Georgi Krustev
Telerik team
 answered on 28 Feb 2012
4 answers
284 views
Hi,

I just encountered a bug with the Kendo Menu with IE7. If you align your menu to the right of the page, and for some reason you don't have enough place to display the entire sub-menu, the menu won't display correctly or at all.

In the screen shot kendo-menu-ff.png we have the display i got in firefox.

In he screen shot kendo-menu.png we have the display in IE7.

With the IE Developper Tool bar I manage to see that the plugin creates two nested div to contain the animation. The first one, have the overflow property set to hidden and the second one, the nested one, was move to accommodate the lack of space to display it entirely. Hence the result shown earlier. (you can see it by your self with the two other screenshots kendo-menu- 2.pgn and kendo-menu- 3.png).

Since the pluggin write those property directly at the element level, I can't correct it with CSS.

I'm using the kendo-all.js.

Here's my code to generate the menu but I doubt it's my implementation that is at cause. (Without Razor )
<ul id="kendoMenu">
    <li><a href="/">Thèmes</a>
        <ul>
            <li<a href="/Rapports/HEB_QUE">Hébergement au Québec 1</a></li>
            <li><a href="/Rapports/ENT_FRO">Entrées à la frontière</a></li>
        </ul>
    </li>
 
    <li>domirich
        <ul>
            <li><a href="/Account/LogOff">Déconnexion</a></li>
        </ul>
    </li>
    <li>Pilotage
        <ul>
        <li><a href="/Pilotage/Autorisations">Gestion des autorisations</a></li>
        <li><a href="/Pilotage/Sources">Gestion des sources</a></li>
        <li><a href="/Pilotage/Concepts">Gestion des thèmes</a></li>
        </ul>
    </li>
</ul>

And here how I initialise the menu :
<script type="text/javascript">
    $(document).ready(function () {
        $("#kendoMenu").kendoMenu(
        {
            direction: "bottom"
        });
    });
</script>

Please, tell me how to fix this.
Kamen Bundev
Telerik team
 answered on 28 Feb 2012
5 answers
870 views
When you combine column grouping and a grid template, as soon as you group a column the remaining columns grid are out of sync.
Anyone as a solution for this or this is a bug?
Patrick Rioux
Top achievements
Rank 1
 answered on 28 Feb 2012
3 answers
274 views
Whenever I call rowCollapse for any detail row, if the row is already collapsed it will expand that row, and if it is expanded it will collapse the row, like a toggle method rather than a collapse, is this expected behaviour?  The expandRow method does not do this.
Drew
Top achievements
Rank 1
 answered on 28 Feb 2012
0 answers
210 views
Hello,

Can the autocomplete functionality be applied to a DIV with ContentEditable set to true?  I know Jquery UI autocomplete does not work on contenteditable elements (only input and textarea) but did not see any specific reference to this for the Kendo UI autocomplete.

If it does not currently support ContentEditable DIVs is this something that might be added in the future?

Thank you!

~Ed
Ed
Top achievements
Rank 1
 asked on 28 Feb 2012
0 answers
98 views
Suppose I have LEFT grid displaying a list of table names, and a RIGHT grid for displaying the table data when selection made on LEFT.

Basically I want to be able to display the xml formatted results of a "SELECT * from " + $('#LEFT').

Are there any demos or fiddles demonstrating this ?

Watched "Get Started With The Kendo UI DataSource" but not sure if I need to create a model definition for every table that could be queried.
Richard
Top achievements
Rank 1
 asked on 28 Feb 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?