Telerik Forums
Kendo UI for jQuery Forum
3 answers
268 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
66 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
160 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
136 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
326 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
170 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
954 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
375 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
1 answer
438 views
hello this my table
http://hizliresim.com/wMDDl2

and this my grid table
http://hizliresim.com/w1EE2G

How do I change the data-uid?
Alexander Popov
Telerik team
 answered on 13 Feb 2014
Narrow your results
Selected tags
Tags
Grid
General Discussions
Charts
Data Source
Scheduler
DropDownList
TreeView
MVVM
Editor
Window
DatePicker
Spreadsheet
Upload
ListView (Mobile)
ComboBox
TabStrip
MultiSelect
AutoComplete
ListView
Menu
Templates
Gantt
Validation
TreeList
Diagram
NumericTextBox
Splitter
PanelBar
Application
Map
Drag and Drop
ToolTip
Calendar
PivotGrid
ScrollView (Mobile)
Toolbar
TabStrip (Mobile)
Slider
Button (Mobile)
Filter
SPA
Drawing API
Drawer (Mobile)
Globalization
LinearGauge
Sortable
ModalView
Hierarchical Data Source
Button
FileManager
MaskedTextBox
View
Form
NavBar
Notification
Switch (Mobile)
SplitView
ListBox
DropDownTree
PDFViewer
Sparkline
ActionSheet
TileLayout
PopOver (Mobile)
TreeMap
ButtonGroup
ColorPicker
Pager
Styling
MultiColumnComboBox
Dialog
Chat
DateRangePicker
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Effects
Accessibility
PivotGridV2
ScrollView
Switch
BulletChart
Licensing
QRCode
ResponsivePanel
TextArea
Wizard
CheckBoxGroup
Localization
Barcode
Breadcrumb
Collapsible
MultiViewCalendar
Touch
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
TaskBoard
Popover
DockManager
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
TimePicker
BottomNavigation
Ripple
SkeletonContainer
Avatar
Circular ProgressBar
FlatColorPicker
SplitButton
Signature
Chip
ChipList
VS Code Extension
AIPrompt
PropertyGrid
Sankey
Chart Wizard
OTP Input
SpeechToTextButton
InlineAIPrompt
StockChart
ContextMenu
DateTimePicker
RadialGauge
ArcGauge
AICodingAssistant
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?