Telerik Forums
Kendo UI for jQuery Forum
3 answers
98 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
3 answers
249 views
Hi ,

I have to dynamically create a Tabstrips . Suppose there are  Buttons(like 'profile" ,"Home", "ContactUS ","Services") .  Also I  have created partial view for this(profilePartialview , HomePartialview ,ContactusPartialView ,ServicePartialview) . Now when i click on "profile" than "profilePartialview" should be  rendered as tabStrips and Similary others. 

Please assist me how can i  achieve this.


Thanks,
Pawan
Roy
Top achievements
Rank 1
 answered on 13 Feb 2014
1 answer
59 views
Hello
Currently there are 3 editable options incell,inline, and popup. However I would like to ask if there is possible to simply create totaly custome editor which will behave e.g like popup, with internal template but visulay it will be sepearte view. Not window over grid but view that e.g. will hide grid.

Regards
Marcin
Alexander Valchev
Telerik team
 answered on 13 Feb 2014
1 answer
1.2K+ views
Hi,

I have a requirement to implement a custom pager template.  Is this possible in KendoUI grid?  Basically, we need to add buttons within the paging footer like am 'Edit' button. It seems like other libraries support this, but I can't seem to be able to do this in Kendo. I know that I could use jQuery selectors, but that doesn't seem very maintainable in the long term.

Thanks!

Mark
Alexander Valchev
Telerik team
 answered on 13 Feb 2014
2 answers
137 views
Working with the scheduler, I want to be able to know when the user has changed the month/week/day so that I can fetch more events from the server rather than having to pass unnecessary data down on load.  Is there a good way to pull this off without wiring up to click events of the navigational controls? 

Databinding / Databound fires for a lot of other reasons, so that doesn't seem like an optimal solution. 
T
Top achievements
Rank 1
 answered on 13 Feb 2014
1 answer
122 views
Hi,

I have a simple app I am testing kendo ui with, I have the following code :

$("#menu").kendoMenu({ select: function (e) {
        return;
    } });

And else where I set up events to the onKeyDown and onKeyUp like as follows :
document.onkeydown = function(event) {
        console.log('keydown');
    }

    document.onkeyup = function(event) {
        console.log('keyup');
    }


And the html for the menu is as follows :
<div id="mainMenu">
        <ul id="menu">
            <li>
                Debugging
                <ul>
                    <li id='cancelAll'>
                        Cancel all operations
                    </li>
                    <li id='cursorMode'>
                        Cursor modes
                        <ul>
                            <li id='cmNone'>None</li>
                            <li id='cmPoint'>Point</li>
                            <li id='cmLine'>Line</li>
                        </ul>
                    </li>
                    <li id='measureMode'>
                        Measure modes
                        <ul>
                            <li id='mmlengths'>Lengths</li>
                            <li id='mmpolylength'>PolyLength</li>
                            <li id='mmarea'>Area</li>
                        </ul>
                    </li>
                    <li id='dimensionMode'>
                        Dimension modes
                        <ul>
                            <li id='dim_count'>Count</li>
                            <li id='dim_length'>Length</li>
                            <li id='dim_area'>Area</li>
                            <li id='dim_object'>Object</li>
                            <li id='dim_none'>None</li>
                        </ul>
                    </li>
                </ul>
            </li>
        </ul>
    </div>

As soon as I select a sub menu option like 'Count' under Dimension modes, the onKeyDown does not trigger anymore, but if I click outside my app to a blank space on the browser and back again, the event starts working again?

Any ideas of what I could be doing wrong, and for completeness the onKeyUp always works ?????

Thank you in advance.

Jason





Dimo
Telerik team
 answered on 13 Feb 2014
1 answer
309 views
Hello
Is there any possibility to set spacing between Donut chart series?

Regards
Marcin
Iliana Dyankova
Telerik team
 answered on 13 Feb 2014
6 answers
149 views
Is it possible to use: $("#modal_scroll").data("kendoMobileScroller").reset(); inside of a modal view?

I use similar commands throughout my app, but on the modal it has no effect. Modal is:

                <div data-role="modalview" data-before-show="logged_before()" data-model="Service.viewModel" id="details" style="width: 100%; height: 100%;">
                    <div data-role="header">
                         <div data-role="navbar" style="background: #333333;">
                             <span data-role="view-title" style="color: #eeeeee; padding: 0px;">Details</span>
                             <a data-align="left" data-role="button" onclick="$('#details').data('kendoMobileModalView').close();" style="margin-top: 10px; text-align: center; background: #ffffff; width: 60px; font-size: 12px; line-height: 12px; padding: 7px 6px 6px 6px; font-weight: bold; border-color: green;">Back</a>
                         </div>
                    </div>
                    <div class="view-content" data-role="scroller" id="modal_scroll">
                        <div id="detail_area"></div>
                    </div>
                </div>
Michael
Top achievements
Rank 1
 answered on 13 Feb 2014
1 answer
936 views
I'm having trouble getting server-side aggregated results to work. This is what I currently have set up:

The DataSource is built in JS with no server-side wrappers:

serverAggregates: true,
schema: {
    aggregates: function(response) {
         return response.aggregatedResults;
    }
},
aggregate: [
    { field: "Revenue", aggregate: "sum" }
]


The JSON data being returned has: 

{
    "aggregatedResults": {
         "Revenue": {
               "sum": 123245"
         }
    }
}


The grid appears, with an aggregate row at the bottom, but empty cells. My questions are:

Since this is all server-side, why does Kendo need to know what type of aggregate it is (sum, count, etc)? Is there just a "value" type?
If the schema definition for the DataSource includes an aggregates function, why do I need to then re-specify the aggregates lower down?
Do I need to specify a formatting template for each footer cell, or are there defaults automatically applied?
Are my issues with the DataSource or the Grid?

Thanks!
Nikolay Rusev
Telerik team
 answered on 13 Feb 2014
2 answers
361 views
Hi All, 

I will ingress on a new project that was specified to be made for web, using HTML5 specs. I´m conviced to use KendoUI Web Framework for do this, but I have some doubts. I have experience with ASP.NET WebForms and I don´t know MVC so well. I want your help to choose the best way to start this project. You think that I can develop using WebForms or you recomend me to use MVC?

I already read John´s blog post http://blogs.telerik.com/kendoui/posts/12-06-05/asp_net_web_forms_and_html5_part_1 but I could not conclude what the best way.

Thanks,

Danilo Pimentel
Danilo Pimentel
Top achievements
Rank 1
 answered on 13 Feb 2014
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?