Telerik Forums
Kendo UI for jQuery Forum
1 answer
405 views
See the example here: http://jsbin.com/upaXUva/5/edit

When we have a kendo UI Grid within a modal (problem occurs with Bootstrap modal, Kendo UI modal and jQuery UI modal), open the filter dropdown, and the dateime controls within that will fail to produce their dropdowns (click the datetime control, the dropdown flashes and then disappears). This problem doesn't occur when the Grid is "directly on the page".

Is there some event that is cancelling the dropdown? Some problem with the Grid component?

Kendo UI version: 2013.2.716
jQuery: 1.9.1
Bootstrap: 2.3.2
Alexander Valchev
Telerik team
 answered on 17 Sep 2013
14 answers
359 views
Hi!

I'm testing the scheduler and seem to be having a problem wrt. getting recurring events to "behave" in a Norwegian setting. The app is an ASP.NET MVC4 web application. I have set both uiCulture and culture to nb-NO in web.config, and I've loaded kendo.culture.nb-NO.min.js in _Layout.cshtml.

If I am in DayView, choosing today's date (which is a Tuesday) and try to set up a weekly recurring event, the dialog has pre-selected Wednesday as the weekday for the recurring event. If I change that to Tuesday manually, all seems to work fine. However, this should not be necessary.  ;-)  

All day names are listed in Norwegian, and the first-day-of-week is Monday, just as it should be. Only the preselected weekday seems to be wrong.

Have I missed something in the config, or is this a bug...?

Best regards,
  Gunnar


gunnisen
Top achievements
Rank 1
 answered on 17 Sep 2013
4 answers
579 views
I have no problem using Kendoui with requirejs except when I try to localize the dates using kendo.culture().  For another project without requirejs I have no issues.

My settings are

require.config({
  paths: {
      jquery: 'lib/jquery-1.7.2.min',
      kendo: 'lib/kendo.web.min',
      kendoCulture: 'lib/cultures/kendo.culture.es-MX.min',
      knockout: 'lib/knockout-2.1.0',
      knockout_kendo: 'lib/knockout-kendo.min',
      underscore: 'lib/underscore-min',
      json2: 'lib/json2',
  }
});
 
require([
    'jquery',
    'kendo',
    'kendoCulture',
    'knockout',
    'knockout_kendo',
    'underscore',
    'json2'
    ], function (
        $,
        kendo,
        kendoCulture,
        ko,
        knockout_kendo,
        _,
        json2) {
 
        // Start of Main Function
        $(function () {
 
 
            kendo.culture("es-MX");
 
              $("#tabstrip").kendoTabStrip({
                        animation:{
                            open:{
                                effects:"fadeIn"
                            }
                        }
 
                    });
 
            // knockout Bindings
   
        });
});

The error message that I get is that kendo is undefined when the kendo.culture("es-MX") command is called.

Thanks,

Alberto



Mihai
Telerik team
 answered on 17 Sep 2013
2 answers
370 views
i have implemented Menu as per demo.
but i click on the menu / mouse over nothing happen.

i need step by step process to work with Kendo Menu, Children and innerChildren.


by 
Shan .A
Kiril Nikolov
Telerik team
 answered on 17 Sep 2013
3 answers
127 views
In this demo - http://demos.kendoui.com/web/grid/detailtemplate.html

Is there any way to customize the show/hide triangle? As in, can we show text/links? Something like "Show Details/Hide Details"?
Kiril Nikolov
Telerik team
 answered on 17 Sep 2013
4 answers
198 views
Hi,

I have defined a ListView declaritively like this:

<ul data-role="listview" data-bind="source: myDataSource" data-template="myTemplate" data-bound="displayEmptyText" data-endless-scroll="true">
</ul>

The displayEmptyText function checks the number of data items in the DataSource and displays "No items available" if there are 0 items. This works when I set endless-scroll to false but doesn't fire the event when endless-scroll is true.

Is this going to be fixed in a coming release? Is there a better way to achieve the display of the "No items available" message?

Cheers

Dean
Petyo
Telerik team
 answered on 17 Sep 2013
2 answers
175 views
Is there any plan to implement something like the Silverlight RadTreeListView in the kendo suite?

The kendo tree is nice, and the kendo grid is cute, but every single Silverlight app I've built over the past 3 years has used the RadTreeListView. My customers are now demanding html solutions instead of Silverlight, but they are still giving me functional specifications that require the functionality of a TreeListView control. I am reluctant to roll my own...

Do you have any plans to add hierarchical support in the grid, or tabular support to the tree?
MikeWiese
Top achievements
Rank 1
 answered on 17 Sep 2013
1 answer
154 views
Hello,

We have developed a mobile application with remote views, where we are navigating between pages using app.navigate. I am now experimenting with the Router and want to set up a route for, say, '/things/:thingId' which displays the remote view 'views/thing-detail.html' for the correct thing (so we can address that particular page from an email, for instance). My code for the route set up is as follows:
application.router.route( "/things/:thingId", function ( thingId ) {
    var store = application.managedContext.getEntityStore( "things" );
    store.find( thingId ) // potentially async call which returns a promise to return a thing
    .done( function ( thing ) {
        application.kendoApplication.navigate( "views/thing-detail.html" );
        application.views.thingDetailViewModel.setSelectedThing( thing );
    });
});
This works, but when kendoApplication.navigate is called the URL is updated to #views/thing-detail.html, which is not what I want to happen (I want it to stay as /thing/123). In the SPA examples I have read, the views and layouts are constructed programmatically. If I want to use the router in this way, will I have to do the same, or is there a way to have the Router and Mobile Application work together (or am I going about this the wrong way!)?
Petyo
Telerik team
 answered on 17 Sep 2013
4 answers
208 views
Hello,

i am evaluating your kendo Ui controls for an web project and got an error while loading data in the kendo scheduler. 
i attached a file of the error stack from chrome to this

this is my javascript file
function showCalendar(userID) {
    var apiUrl = "/svc/pimapi/calendar/" + userID;
 
    $("#scheduler").kendoScheduler({
 
        time: "Europe/Berlin",
        views: ["week", "day", "month"],
        height: 600,
        dataSource: {
            type: "json",
            transport: {
                read: { url: apiUrl }
            },
 
            schema: {
                data: "ResponseItems",
                model: {
                    fields: {
                        Title: { from: "Stichwort", type: "string" },
                        Start: { from: "Terminstart", type: "date" },
                        End: { from: "Terminende", type: "date" },
                        Description: { from: "Memo", type: "string" }
                    }
                }
            }
        }
 
    });
}

some sample data: 

{"ResponseItems":[{"Stichwort":"test","Terminstart":"04.09.2013 16:00:00","Terminende":"04.09.2013 16:30:00","Memo":"testtest","Art":"T2"},{"Stichwort":"testtest","Terminstart":"05.09.2013 12:00:00","Terminende":"05.09.2013 13:00:00","Memo":"testetestetst\r\n\r\nPARTY","Art":"T1"}]}


maybe you could help me showing some appointments in my scheduler?


regards
Dominic
Atanas Korchev
Telerik team
 answered on 17 Sep 2013
3 answers
545 views
I have a grid with row selection and detail for each rows, ex:

var grid = $('#myTable').kendoGrid({
   selectable: "row",
   detailInit: function() { /* load detail items with json ajax request */ },
   change: function() {.... }
}).data('kendoGrid');

When I click on the button that shows the details, the change event is also triggered. Is there a way to prevent that?
jwize
Top achievements
Rank 1
 answered on 17 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?