Telerik Forums
Kendo UI for jQuery Forum
3 answers
394 views
I'm loving how Kendo UI is shaping up.  However, I can't yet locate the list of officially supported browsers and devices.  I had assumed 'supports touch devices' meant something akin to universal support, but when I tried the components of web UI on a pretty decent ASUS android honeycomb tablet, several things did not work.  Is this support list somewhere?

Thanks!
Tim
Top achievements
Rank 1
 answered on 22 Aug 2012
0 answers
79 views
I have a telerik grid and i need a client event to be raised when user click on grid column name to sort them.  I understand i could use ondatabinding event but i do not want to use this. Kindly let me know if its possible to catch any other client event when the user tries to sort the grid or if i can define my own.

Thanks
user8721
Top achievements
Rank 1
 asked on 22 Aug 2012
2 answers
135 views
After paging the listview (with infinite scrolling) and then changing the datasource to a smaller set and page = 1 the listview items become invisible.  Have to call this method to bring them back into view:
$("#contact-list").parent().parent().css("-moz-transform""translate3d(0px, 0px, 0px)")

Would like to have a framework method that would do the same in the most appropriate way.

Thank you
Filipp

Mat
Top achievements
Rank 1
 answered on 22 Aug 2012
0 answers
98 views
Is there any way to prevent selection change for ListView ?  sometimes i want to handle something like before change event and show some confirmation message 
User
Top achievements
Rank 1
 asked on 22 Aug 2012
0 answers
83 views
I am able to load menu inside the list view.I want to retrieve the selected item id value.I used onSelect event and i am able to get the selected item text using      
$(e.item).text();
can u tell me how to get the selected id value from the list view.
charan
Top achievements
Rank 1
 asked on 22 Aug 2012
1 answer
99 views
I am intenrested on the commertial licence of Kendo Mobile, and i am a little confused about the section of the developing team, i have my team of developers, like 4, and this year we are going to grow to 18, if i buy the licence of Mobile, $200, in the shoppingCart in the checkout i see that i can buy more than 1 licence, but i dont see how much people is covered per licence, anyone with info about this?
Donna
Telerik team
 answered on 22 Aug 2012
0 answers
104 views
Hi there,

First thing first: I am not a programmer, i know a bit of two about HTML and PHP, but no; i am not a programmer. I want to see things visualy :)

So, with that in mind lets continue.

I found out about Kendo UI a couple days ago, and am really suprised about the features, as i mentioned in the start; i am someone who likes to visualize things. At this moment i visualize things for me (and programmers) with Bootstrap (Foundation could also do the trick) Only i want my next project to include Kendo UI Web + DataViz (i havent purchased anything, first want to start with the web). Why? Beceause my new project needs:

#1. Speed (just like 99 of the 100 projects right?)
#2. Many Grid functionalitys (administration software..)
#3. Needs to be updateable easaly
#4. In the feature charts + mobile.

 Now my question, how can i make the frame of my project visualy with /for Kendo UI? "Normally" I would take bootstrap, get some grids, get some tables, navigation, setup some forms and voila.. you get the idea.

My goal is an fullwidth desktop application for administration tasks.

Any suggestion / tips?
HR
Top achievements
Rank 1
 asked on 22 Aug 2012
1 answer
57 views
We're evaluating Kendo Mobile. How fast it's DataSource implementation is. What it uses internally to get data from external server. I guess, it is jquery.ajax() method. Or it's some custom AJAX call implementation. Could someone please clarify?
Dimo
Telerik team
 answered on 22 Aug 2012
1 answer
268 views

   
THIS GRID IS LOCATED IN A PARTIAL-
@(Html.Kendo()
      .Grid<USARAFSyncMVC.Areas.Event.Models.PaxModel>(Model.EventPaxBreakDowns)
      .Name("PaxGrid")
      .DataSource(dataSource => dataSource
                                          .Ajax()


                                          .Model(model => model.Id(p => p.PaxBDID))
                                          .Create(update => update.Action("_InsertPax", "Event", new { Area = "Event" }))
                                          .Update(update => update.Action("_SavePax", "Event", new { Area = "Event" }))
                                          .Destroy(update => update.Action("_DeletePax", "Event", new { Area = "Event" })))
      .Columns(columns =>
      {
          columns.Bound(p => p.CountryTitle);
          columns.Bound(p => p.MilitaryPlanned);
          columns.Bound(p => p.MilitaryActual);
          columns.Bound(p => p.CivilianPlanned);
          columns.Bound(p => p.CivilianActual);
          columns.Command(command => { command.Edit(); command.Destroy(); }).Width(200).Title("Actions");
      })

      .Pageable()
      .Scrollable()
      .ToolBar(toolbar => toolbar.Create())
      .Sortable()
)

IT IS THEN LOADING DYNAMICALLY INTO THIS WINDOW-

 $("#windowcontainer").append("<div id='window'></div>");


    var mywindow = $("#window").kendoWindow({
        title: title,
        content: { url: url },
        visible: false,
        draggable: false,
        modal: true,
        animation: false,
        onclose: onclose,
        onopen:onOpen, 
        deactivate: function () {
            this.destroy();
        }
    }).data("kendoWindow");
    mywindow.center();
    mywindow.open();


It centers then the grid throws it off and it seems to anchor to the right of the screen. When I try to drag it, it expands, and it's right side stays anchored to the right side of the browser. When I resize, then I am able to drag it. 

But I do not want any of that to happen, I would like it to just center in the first place. 

BTW: It works fine without a grid!


Thanks





Dimo
Telerik team
 answered on 22 Aug 2012
0 answers
140 views
Hello I have an issue with intial sected index of tab strip

I tried:

$("#mobilePeriodChooser").kendoMobileTabStrip({
            selectedIndex: 2
        });

but this causing some duplications and still first is active.

I also tried:
$("#mobilePeriodChooser").data("kendoMobileTabStrip").selectedIndex = 2
But this one is showing error becuase data("kendoMobileTabStrip") is undefined.

So how to setup it ?

Marcin
Top achievements
Rank 1
Veteran
 asked on 22 Aug 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?