Telerik Forums
Kendo UI for jQuery Forum
14 answers
186 views
We are trying to make a button which calls some ajax.  But when it's done we want the content to be scrolled up.  So it's front and center.

we have found this.
/**
 * Scrolls the container to the top.
*/
reset: function() {
      this.movable.moveTo({x: 0, y: 0});
},

with in kendo.mobile.scroller.js

But we have yet to find out how to use the method "moveTo(x,y)"

Any help would be GREAT!!!!! 
John
Top achievements
Rank 1
 answered on 06 Sep 2013
11 answers
1.4K+ views
Does Kendo have a Tooltip plug-in that can be invoked from the grid cell, perhaps opening when the mouse has been in the cell for a specified duration, e.g. 750ms, and then closing when the mouse leaves the cell?


Dimo
Telerik team
 answered on 06 Sep 2013
1 answer
83 views
I am calling three kendo grids on a page. I am using web api to fill data in the datasource. Sometime (not all the time) one of my kendo grid does not load data for an unknown reason. I just see the grid is there without any data in it. When I reload the page I see the data is back. What can be the reason for this problem? What should I do to solve this problem?
Jayesh Goyani
Top achievements
Rank 2
 answered on 06 Sep 2013
2 answers
106 views
I am implementing the date picker in my system, and the control throws an error in jquery library when run using Ie7 and Ie8 compatibility mode.. I run on Ie10

I know there is a thread which discusses the same issue...
http://www.kendoui.com/forums/kendo-ui-web/date-time-pickers/datepicker-use-ie9-compatibility-mode-ie7-or-ie8-day-not-selected.aspx

 it says.. its fixed in the latest version.. i have the latest one (kendoui.web.2013.2.716)... but i still experience the issue..

I took a screen recording and uploaded on youtube..
http://youtu.be/L_ZgDCtZJkA

I am fine, as long as there is a confirmation from telerik team that, it wud work fine on direct Ie7 and 8 browsers and not the compatibility mode... will it?
Chris
Top achievements
Rank 1
 answered on 05 Sep 2013
3 answers
224 views
Is it possible to navigate command buttons on the grid with arrow keys?

http://jsbin.com/ocekUQI/1/edit?html,output

My user would like to be able to navigate the grid with the arrow keys including the command buttons
beauXjames
Top achievements
Rank 2
 answered on 05 Sep 2013
4 answers
239 views
 I've following <div>-element:
  <div id="data"></div>
and creating dynamically via Javascript function following HTML code and insterting it into the <div>-element
html += "  <ul data-role=\"listview\" data-style=\"inset\" data-type=\"group\">";
 html +=
"   <li>";
 html +=
"    <ul>";
 html +=
"     <li data-icon=\"play\"><a href=\"../play-music.html\">Play Music</a></li>";
 html +=
"     <li data-icon=\"cart\"><a href=\"../music-store.html\">Buy Music</a></li>";
 html +=
"    </ul>";
 html +=
"   </li>";
 html +=
"  </ul> ";

 document.getElementById(
"data").innerHTML = html;
The output wasn't rendered. How could I render it? Every function I've tried of the framework did't redner the complete <div> only parts :(
Christian
Top achievements
Rank 1
 answered on 05 Sep 2013
2 answers
168 views
Hi,

I'm using Cascading ComboBoxes to outline a Account and it's Primary Contact. The Account ComboBox cascades down to the Primary Contact ComboBox, which loads a list of Contacts for that Account.

This all seems to work fine on my Create page, but when re-loading the data on the Edit page it hiccups a bit. The initial "Account" ComboBox loads properly, but the Primary Contact Box does not. When Inspecting the Object on the page, the value is properly set, but the ComboBox simply shows the Placeholder Text.

Sometimes when loading the page in debug mode, you can see the initial Values get put into the ComboBoxes, but the Primary Contact fails to set the selected item properly. This behaviour almost seems like it's a timing issue?

I've outlined my two ComboBoxes in the code below:
@(Html.Kendo().ComboBox()
  .Name("AccountID")
  .DataTextField("AccountName")
  .DataValueField("AccountID")
  .Placeholder("Not Applicable/No End User Known")
  .Filter(FilterType.Contains)
  .HtmlAttributes(new { style = "width: 325px;" })
  .Events(e =>
      {
          e.Change("onChange_EndUser");
      })
  .DataSource(source =>
      {
          source.Read(read =>
              {
                  read.Action("GetEndUserAccounts", "Accounts");
              });
      })
  )
 
@(Html.Kendo().ComboBox()
  .Name("PrimaryContactID")
  .DataTextField("Name")
  .DataValueField("ContactID")
  .Placeholder("Not Applicable/No Contact is Known")
  .Filter(FilterType.Contains)
  .HtmlAttributes(new { style = "width: 325px"})
  .DataSource(source =>
      {
          source.Read(read =>
              {
                  read.Action("GetAccountContacts", "Contacts").Data("filterContacts_EndUser");
              })
              .ServerFiltering(true);
      })
  .CascadeFrom("AccountID")
  )
And my Javascript:
function filterContacts_EndUser() {
       return {
           accountId: $("#AccountID").val()
       };
   }
Any help would be greatly appreciated!

Thanks,
Landon
Landon
Top achievements
Rank 2
 answered on 05 Sep 2013
4 answers
410 views
Hello,

did I understand the purpose of data-reload correctly? I would like to refresh my data source every time I navigate to a view, but it doesnt happen. Ajax request is not being sent.

At the moment i am using dataSource.read() and I call it on data-show event on a view. However that makes 2 Ajax requests when i access the page for the first time, so its not a perfect solution.

Hope I was clear, thank you in advance.
Filip
Top achievements
Rank 1
 answered on 05 Sep 2013
2 answers
829 views
Hello,

I have a Grid using multiselect. My problem is: The Gridrows should be draggable (which perfectly works without multiselect). If I activate multiselect it doesnt work because the mousedown seems to be a selection mode for the multiselection. Is there any possibility to deactivate the mouse selection without deactivating the multiselect of the grid?

It should only be possible to select with the ctrl-key.

Thank you!
BigzampanoXXl
Top achievements
Rank 1
 answered on 05 Sep 2013
9 answers
580 views
Is there an event that I can register to for a Pie Chart's lenged's series click?
Hristo Germanov
Telerik team
 answered on 05 Sep 2013
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?