Telerik Forums
Kendo UI for jQuery Forum
18 answers
363 views
There seems to be an issue with Safari where I imagine the Kendo framework is getting an incorrect window height.  If you look at the attached image it looks like the view height is offset about as the height of the new tab strip feature.  Is there a work around for this?  Is this an iOS Safari bug?

Scott
Kiril Nikolov
Telerik team
 answered on 14 Apr 2014
4 answers
480 views
Hello everyone!

I'm new with Phonegap and Kendo!
I look for a solution for several hours and nerver found it, so I need your  precious help!

I  have a listview-link and when I click on an item, I call a function who use "app.navigate" to redirect to an another page, but I want to know if is it possible to send datas to this another page? and how to do that?

Maybe I should use an another solution than app.navigate? 

thank you in advance.





Kiril Nikolov
Telerik team
 answered on 28 Mar 2014
7 answers
53 views
Please take a look at the video: https://www.youtube.com/watch?v=M_qL1djVWWs 

Any idea on how to fix this? 

I have no such problems with iPad iOS6. Maybe it's the version difference or screen size difference.
Petyo
Telerik team
 answered on 26 Mar 2014
5 answers
46 views
Easier to show than to explain. Please take a look at the video: https://www.youtube.com/watch?v=aChANYI6VsA

I am using v2013.3.1414.
Petyo
Telerik team
 answered on 18 Mar 2014
4 answers
130 views
Hi,

Since the latest version the app.pane.history became obsolete? (Only contains one item).
Is there any way to know the amount of items in the history now?



Dorian
Top achievements
Rank 2
 answered on 10 Mar 2014
1 answer
120 views
When Kendo detects support for history.pushState(), it  uses it to store history on each navigate(). I want to exclude some of these navigate() calls from this login because I don't want user to be able to back into this particular view. This can be achieved with history.replaceState(), does Kendo provide a way to do replaceState() instead on pushState()?
Petyo
Telerik team
 answered on 10 Mar 2014
3 answers
52 views
DevExpress PhoneJS supports partial views that allow you to share and reuse similar HTML markup among multiple views.

I need this feature right now in Kendo UI Mobile...  I'm thinking about doing some kind of work around possibly with Templates or a jQuery Clone method call but it's going to be pretty hacky...  Does Kendo UI Mobile have something similar to this already:

DevExpress's PhoneJS Partial Views are described here under Flexible View Rendering Engine:
http://phonejs.devexpress.com/

Thank,
Nathan
KSBA Techie
Top achievements
Rank 1
 answered on 13 Feb 2014
1 answer
51 views
Hello everyone, 

I am currently developing an app with ICENIUM (jquery). I need to know if is possible to retrieve data from a pre populated sqlite database, and the way to do that.

Best regards.

Ivan.
Kiril Nikolov
Telerik team
 answered on 13 Feb 2014
2 answers
94 views
Hi, im evaluating the Kendo Mobile UI with application framework to develop a hybrid app for Android and IOS.

Im using application Framework, separating classes using .js files.

The problem is that visual studio 2013 intellisense doesnt provide any help for class constructor (for example when i wrote new User() intellisense dont suggest the constructor parameters defined).

any idea?

/*
User = kendo.data.ObservableObject.extend({
    init: function(username,nombre,apellido,email){
        this.username = username;
    }
});
*/

EXAMPLE FILES:

app.js

var app = new kendo.mobile.Application($(document.body), {
    user : null,
    loginService: null,
    skin:'flat',
    transition: 'slide',
    initial :  "views/account/login.html",
    init: function () {
        this.loginService = new LoginService();
        if (this.loginService.loadLocalCredential())
            this.initial = 'views/home/index.html';
    }
});

login.js

LoginService = kendo.data.ObservableObject.extend({
    username: "",
    password: "",
    isLoggedIn: false,
    login: function () {
        var that = this;
        var url = 'http://url/Account/Login?username=' + this.username + '&password=' + this.password;
        $.ajax({
            url: url,
            dataType: "json",
            success: function (data, textStatus, jqXHR) {
                if (data.result == true) {
                          var user = new User(username,nombre,apellido,email); /* when i write new User() intellisense doesnt provide any help*/
                    that.set("isLoggedIn", true);
                    app.navigate("./views/home/index.html");
                }
            }
        });
    },
    logout: function () {
        this.clear();
        app.navigate('./views/home/index.html');
    },
    clear: function () {
        this.set('username', '');
        this.set('password', '');
        this.set('isLoggedIn', false);
    },
    loadLocalCredential: function () {
        this.set('username', 'geoorge');
        this.set('password', '1231');
        this.set('isLoggedIn', true);
         
    }
 
});


user.js

User = kendo.data.ObservableObject.extend({
    username: "",
    nombre: "",
    apellido: "",
    email: "",
    isLoggedIn: false,
    init: function(username,nombre,apellido,email){
        this.username = username; this.nombre = nombre; this.apellido = apellido; this.email = email;
    }
});


Thanks!
Kiril Nikolov
Telerik team
 answered on 11 Feb 2014
3 answers
169 views
Hi,

we want to change the title in navbar according to some global variables.
after navigating to another application page via app.navigate('ksettings.html') it's not possible to call title method of the navbar, eg.

$("#photonavbar").data("kendoMobileNavBar").title( g_models.ParamsVM.valSpecNames.join(' ' ) );

because $("#photonavbar").data("kendoMobileNavBar") is undefined.
Event indicating all kendo structures are initiated would be usefull.

How to track that page was succesfully navigated and all kendo structures are instantiated?

Thanks in advance
Brandon Peterson
Top achievements
Rank 2
 answered on 07 Feb 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Patrick
Top achievements
Rank 1
Iron
Iron
Iron
MIS
Top achievements
Rank 1
Ross
Top achievements
Rank 1
Marcin
Top achievements
Rank 1
Iron
Iron
Sean
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Patrick
Top achievements
Rank 1
Iron
Iron
Iron
MIS
Top achievements
Rank 1
Ross
Top achievements
Rank 1
Marcin
Top achievements
Rank 1
Iron
Iron
Sean
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?