Telerik Forums
Kendo UI for jQuery Forum
2 answers
232 views
I'm want to reference https://cdn.kendostatic.com/2012.2.710/js/kendo.web.min.js (to prevent the "insecure content" warning messages) but the SSL certificate isn't right. Is this a known issue, and one that will be fixed, or do I need to host the Kendo files on my own servers?
Mark
Top achievements
Rank 1
 answered on 13 Aug 2012
0 answers
77 views
As per your tutorials u have used kendo.all.js
but i had downloaded kendo web components and i used following JS files

 <script src="jquery-1.7.1.js" type="text/javascript" ></script>
    
    <script src="/kendoui.web.2012.2.710.open-source/source/js/kendo.web.min.js" type="text/javascript" ></script>
    
 <script type="text/javascript"  src="/kendoui.web.2012.2.710.open-source/source/js/kendo.core.js"></script>
   
   <script type="text/javascript"  src="/kendoui.web.2012.2.710.open-source/source/js/kendo.fx.js"></script>
   
    <script src="/kendoui.web.2012.2.710.open-source/source/js/kendo.draganddrop.js" type="text/javascript"></script>

    <script src="/kendoui.web.2012.2.710.open-source/source/js/kendo.resizable.js" type="text/javascript" ></script>

    <script src="/kendoui.web.2012.2.710.open-source/source/js/kendo.splitter.js" type="text/javascript" ></script>

   

 <link href="/kendoui.web.2012.2.710.open-source/source/styles/kendo.common.css" rel="stylesheet" type="text/css"/>
    <link href="/kendoui.web.2012.2.710.open-source/source/styles/kendo.default.css" rel="stylesheet"  type="text/css"/>




but i did not got the result ?
May I know the reason and what is alternate solution for this please respond soon.
Thanks in advance
this is my jsp code


<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>


<html>
<head>
    <title></title>
    <script src="jquery-1.7.1.js" type="text/javascript" ></script>
    
    <script src="/kendoui.web.2012.2.710.open-source/source/js/kendo.web.min.js" type="text/javascript" ></script>
    
 <script type="text/javascript"  src="/kendoui.web.2012.2.710.open-source/source/js/kendo.core.js"></script>
   
   <script type="text/javascript"  src="/kendoui.web.2012.2.710.open-source/source/js/kendo.fx.js"></script>
   
    <script src="/kendoui.web.2012.2.710.open-source/source/js/kendo.draganddrop.js" type="text/javascript"></script>

    <script src="/kendoui.web.2012.2.710.open-source/source/js/kendo.resizable.js" type="text/javascript" ></script>

    <script src="/kendoui.web.2012.2.710.open-source/source/js/kendo.splitter.js" type="text/javascript" ></script>

    <script src=""></script>


 <link href="/kendoui.web.2012.2.710.open-source/source/styles/kendo.common.css" rel="stylesheet" type="text/css"/>
    <link href="/kendoui.web.2012.2.710.open-source/source/styles/kendo.default.css" rel="stylesheet"  type="text/css"/>
</head>
<body>
    
        <div id="example" class="k-content">
            <div id="vertical">
                <div id="top-pane">
                    <div id="horizontal" style="height: 100%; width: 100%;">
                        <div id="left-pane">
                            <div class="pane-content">
                                <h3>Inner splitter / left pane</h3>
                                <p>Resizable and collapsible.</p>
                            </div>
                        </div>
                        <div id="center-pane">
                            <div class="pane-content">
                                <h3>Inner splitter / center pane</h3>
                                <p>Resizable only.</p>
                            </div>
                        </div>
                        <div id="right-pane">
                            <div class="pane-content">
                                <h3>Inner splitter / right pane</h3>
                                <p>Resizable and collapsible.</p>
                            </div>
                        </div>
                    </div>
                </div>
                <div id="middle-pane">
                    <div class="pane-content">
                        <h3>Outer splitter / middle pane</h3>
                        <p>Resizable only.</p>
                    </div>
                </div>
                <div id="bottom-pane">
                    <div class="pane-content">
                        <h3>Outer splitter / bottom pane</h3>
                        <p>Non-resizable and non-collapsible.</p>
                    </div>
                </div>
            </div>

            <script>
            
                $(document).ready(function() {
                
                    $("#vertical").kendoSplitter({
                    
                        orientation: "vertical",
                        
                        panes:
                      
                        [
                            { collapsible: false },
                            
                            { collapsible: false, size: "100px" },
                            
                            { collapsible: false, resizable: false, size: "100px" }
                            
                        ]
                        
                    });

                    $("#horizontal").kendoSplitter({
                        panes: [
                            { collapsible: true, size: "220px" },
                            { collapsible: false },
                            { collapsible: true, size: "220px" }
                        ]
                    });
                });
            </script>

            <style scoped="scoped">
                #vertical {
                    height: 380px;
                    width: 700px;
                    margin: 0 auto;
                }
                #middle-pane {
                    background-color: rgba(60, 70, 80, 0.10);
                }
                #bottom-pane {
                    background-color: rgba(60, 70, 80, 0.15);
                }
                #left-pane {
                    background-color: rgba(60, 70, 80, 0.05);
                }
                #center-pane {
                    background-color: rgba(60, 70, 80, 0.05);
                }
                #right-pane {
                    background-color: rgba(60, 70, 80, 0.05);
                }
                .pane-content {
                    padding: 0 10px;
                }
            </style>
        </div>

</body>
</html>


sairam
Top achievements
Rank 1
 asked on 13 Aug 2012
1 answer
96 views
Hello,
Is it possible to allow expand row and show children grid (like in exmaple http://demos.kendoui.com/web/grid/hierarchy.html) only for a particular items? I.e. some of my rows does'nt have children items to display, so I don't need an ability to expand it. 
Nikolay Rusev
Telerik team
 answered on 13 Aug 2012
1 answer
196 views

Does the Kendo UI Grid support pinning one or more columns to the left side of the grid?
Nikolay Rusev
Telerik team
 answered on 13 Aug 2012
2 answers
4.0K+ views
I'm having trouble setting up the width of DatePicker. There's no way in Kendo API to set this on initialization. I tried in-line style with !important attribute, but it only limits the width of text box keeping the lengthy wrapper unchanged.

Is there a way around this?
Casey
Top achievements
Rank 1
 answered on 13 Aug 2012
0 answers
64 views
I've had no luck getting or setting the datePicker value using "value()" as the documentation states however using "val()" like standard jQuery seems to work fine.  Has anyone else had this problem?
Casey
Top achievements
Rank 1
 asked on 13 Aug 2012
4 answers
147 views
I have a couple modal windows, one has a grid with a list of grouped items and when a row is clicked another modal window appears overtop as a confirmation window with a cancel and continue button.  These work fine in IE, Firefox, and Chrome on the desktop but when opened from the Android browser or Chrome for Android there is a problem.  If I click on a row in the first window where a button will appear in the second "confirmation" window it clicks that button as if it was already there.  This causes the confirmation window to appear and then close as if I clicked a button.  I have attached a file that has a basic demo of the problem. Has anyone else seen such behavior and is there a fix?  I'm thinking that since it's working fine in all desktop browsers it must be touch related.

Thanks,
Casey
Casey
Top achievements
Rank 1
 answered on 13 Aug 2012
0 answers
103 views
It seems that window is added to the body tag and positioned absolutely with high z-index.

This limits how it can be used within a container if the purpose is to use it as a non-modal window.

Correct me If I am wrong, but it seems that absolute positioning and high z-index are only needed for modal windows and not for non-modals?

I am not sure if this is a limitation or by design. Either way it would be nice to use the window widget in non modal context which respects parent container boundaries and is positioned relative to it and not the body.

Is this something I should raise as a feature request or a bug?  

I am curious as to what the expert developers/kendo developers have to say about this.

Thanks,
Numan
Numan
Top achievements
Rank 1
 asked on 13 Aug 2012
4 answers
109 views
If I use rowTemplate with a detail grid the columns misalign. 

Here is a simple way to reproduce to this problem: http://jsfiddle.net/yzKqV/ (uncomment the commented line to see the issue)

Is this a bug or am I missing something basic here?

Thanks,
Numan
Numan
Top achievements
Rank 1
 answered on 13 Aug 2012
0 answers
114 views
Is it possible to disable or scale back the kinetic scroll on long ListViews without losing the endless scroll functionality? With long lists, this scrolling sometimes seems a bit unnatural. This is particularly noticeable with a "flick" gesture, which seems to react a bit slowly and accelerate/decelerate strangely.

Thanks,
Jason
Jason
Top achievements
Rank 1
 asked on 12 Aug 2012
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
Chat
DateRangePicker
Dialog
Checkbox
Timeline
Drawer
DateInput
ProgressBar
MediaPlayer
ImageEditor
TextBox
OrgChart
Effects
Accessibility
PivotGridV2
ScrollView
BulletChart
Licensing
QRCode
ResponsivePanel
Switch
Wizard
CheckBoxGroup
TextArea
Barcode
Breadcrumb
Collapsible
Localization
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
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?