Telerik Forums
Kendo UI for jQuery Forum
2 answers
74 views
...just curious (anxious) :)
sitefinitysteve
Top achievements
Rank 2
Iron
Iron
Veteran
 answered on 20 Sep 2011
13 answers
262 views
I have my returned JSONP object, which I normally pass into my jQuery template, but I'd like to attempt to throw it into the KendoUI grid if possible....how do I go about that?

I don't want to CALL the service via the datasource, I just want to pass the grid the resulting data

Steve
sitefinitysteve
Top achievements
Rank 2
Iron
Iron
Veteran
 answered on 16 Sep 2011
2 answers
98 views
Hi,

Is there nya chance put into this framework, the datepicker and dialog from jQuery UI? Then I could stop using jQuery UI, and start using Kendo;-)
Jarosław
Top achievements
Rank 1
 answered on 16 Sep 2011
2 answers
432 views
Hi:
I'm using the insertBefore method to insert new items to a panel bar group. After browse rendering you can see the following:
<li class="t-item t-state-default">
<span class="t-link t-header">item1</span>
</li>
My question is:
Is there a way that you can add and "id" and an onclick event to this new panels ?

Regards and congratulations this is a great job !
Luis Miguel
Top achievements
Rank 1
 answered on 15 Sep 2011
4 answers
152 views
How do you show the tooltip with design as in example? For me it renders visually only plain character numbers and under the chart DIV, looking with Firebug structurally it's the same as in the example. Of course I use the same theme as in example.
Barna
Top achievements
Rank 1
 answered on 15 Sep 2011
4 answers
211 views
How do I define the following inside the window?

<div id="mi-singledetails-mobile">
            <div id="mi-singletemplate-mobile">
            </div>
            <div id="dt_launchContainer-mobile">
                <telerik:RadButton ID="launchButtonMobile" runat="server" Text="Launch Player" Height="65px" CssClass="Green" AutoPostBack="false" UseSubmitBehavior="false" OnClientClicking="onPlayerOpenClicking" ClientIDMode="Static" EnableViewState="false">
                    <Icon SecondaryIconUrl="~/App_Themes/Medportal/images/launchplayer.png" />
                </telerik:RadButton>
            </div>
        </div>

When I Kendo that, it becomes this
<div class="t-widget t-window" style="padding-top: 35px; width: 700px; height: 550px; display: block; top: 255px; left: 610px; -moz-transition: none 0s ease 0s ; opacity: 1; -moz-transform: scale(1);"><div class="t-window-titlebar t-header" style="margin-top: -35px;"> <span class="t-window-title">Details</span><div class="t-window-actions t-header"><a class="t-window-action t-link" href="#"><span class="t-icon t-close">Close</span></a></div></div><p id="mobile-details-window" class="t-window-content t-content">
        </p></div>
Alex Gyoshev
Telerik team
 answered on 15 Sep 2011
1 answer
303 views
first, this's a great thing. 
I have seen the API and demo. Then for a Test,for the TabStrip.

Loading content with AJAX ,this does not work!


I view the API in kendoui.com ,it doesn't work too.

what's the matter?

I Want to add a new Tab , this tab loading content with ajax.

how can I write the code? the API doesn't have a prompt, it doesn't have any description about the params.

this is my code, not work too.

var tabStrip=$("#tabstrip").kendoTabStrip().data("kendoTabStrip");
tabStrip.insertAfter([{text:"New Tab3",content:[null,"http://www.danamy.cn/index.html"]},{text:"New Tab4"}],tabStrip.tabGroup.children("li:last"));

I'm Chinese , English is so so. - -.
Kamen Bundev
Telerik team
 answered on 15 Sep 2011
4 answers
642 views
Im trying to get a splitter layout to refresh and resize when I resize the browser window.

Im have manged to get the layout to stretch 100 % both width wise and height so the only thing I cant work out is what to do inside my jqeury "$(window).resize(function() " so that the hole splitter layout to refresh and resize ???

Best Regards
Nicklas

01.<!doctype html>
02.<html>
03.    <head>
04.        <title>Basic usage</title>
05.        <link href="_includes/css/base.css" rel="stylesheet"/>
06.        <link href="_includes/css/kendo.common.min.css" rel="stylesheet"/>
07.        <link href="_includes/css/kendo.kendo.min.css" rel="stylesheet"/>
08.        <script src="_includes/js/jquery.1.6.2.min.js"></script>
09.        <script src="_includes/js/kendo.all.min.js"></script>
10.    </head>
11.    <body>
12.        <div id="splitter" >
13.            <div id="vertical">
14.                <div id="top">
15.                    <p>
16.                        Outer splitter : top pane
17.                    </p>
18.                </div>
19.                <div>
20.                    <div id="horizontal">
21.                        <div id="left">
22.                            <p>
23.                                Inner splitter :: left pane
24.                            </p>
25.                        </div>
26.                        <div id="center">
27.                            <p>
28.                                Inner splitter :: center pane
29.                            </p>
30.                        </div>
31.                        <div id="right">
32.                            <p>
33.                                Inner splitter :: right pane
34.                            </p>
35.                        </div>
36.                    </div>
37.                </div>
38.                <div id="bottom">
39.                    <p>
40.                        Outer splitter : bottom pane
41.                    </p>
42.                </div>
43.            </div>
44. 
45.            <script type="text/javascript">
46.                $(document).ready(function()
47.                {
48.                   $("#splitter #vertical").height($(window).height() - 2)
49.                 
50.                   function onResize(e)
51.                   {
52.                       console.log("Resized :: Splitter #" + this.element[0].id);
53.                       console.log(this.element[0]);
54.                   };
55.                 
56.                   $("#vertical").kendoSplitter({
57.                        orientation: "vertical",
58.                        panes: [
59.                            { collapsible: true, size: "30%" }, // top height
60.                            { collapsible: false, size: "40%" },
61.                            { collapsible: true, size: "30%" } // bottom height
62.                        ],
63.                        resize: onResize
64.                    });
65. 
66.                    $("#horizontal").kendoSplitter({
67.                        panes: [
68.                            { collapsible: true, size: "20%" }, // left height
69.                            { collapsible: false, size: "60%"  }, // center
70.                            { collapsible: true, size: "20%" } // right height
71.                        ],
72.                        resize: onResize
73.                    });
74.                     
75.                    $(window).resize(function()
76.                    {
77.                        // what do i put here to force resize refresh of all splitters ???
78.                    });
79.                });
80.            </script>
81.        </div>
82.    </body>
83.</html>
n
Top achievements
Rank 1
 answered on 15 Sep 2011
1 answer
308 views
Hi there,

Just wondering about examples using themes, skins?

I know these are different controls to the jQuery UI ones but the themeroller stuff in jQuery could be handy to create themese for Kendo UI or will you have your own way to create themes?

Regards DotnetShadow
Sebastian
Telerik team
 answered on 14 Sep 2011
0 answers
87 views
Hi,
Is it possible to show "series" values after the bar graphs, or on top of the bar graphs? So not only on the valueAxis.

Thanks
Barna
Top achievements
Rank 1
 asked on 14 Sep 2011
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
Chat
MultiColumnComboBox
Dialog
DateRangePicker
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Accessibility
Effects
PivotGridV2
Licensing
ScrollView
Switch
TextArea
BulletChart
QRCode
ResponsivePanel
Wizard
CheckBoxGroup
Localization
Barcode
Breadcrumb
Collapsible
MultiViewCalendar
Touch
RadioButton
Stepper
Card
ExpansionPanel
Rating
RadioGroup
Badge
Captcha
Heatmap
AppBar
Loader
Security
TaskBoard
Popover
DockManager
TimePicker
FloatingActionButton
CircularGauge
ColorGradient
ColorPalette
DropDownButton
TimeDurationPicker
ToggleButton
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
SmartPasteButton
PromptBox
SegmentedControl
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?