Telerik Forums
Kendo UI for jQuery Forum
1 answer
151 views
Hey fellas,
sorry but I didn't really find out the best place to start the thread since Forum's topics are kinda locked!

I really need to know if there is any RTL support in this framework or not? the problem with most of such frameworks is that they do not go over RTL support initially which is a real pain for projects targeting RTL-language-based customers.
I deeply appreciate if Telerik's great team of gurus, support people like me by offering precise RTL conversion recipes.

Any Help?
Alex Gyoshev
Telerik team
 answered on 30 Sep 2011
1 answer
155 views
I can't get a grip of the asynchronously uploaded file, I tried printing out $GLOBALS to find the file (it's not in $_FILES). Also
file_get_contents('php://input')
 is empty. I can see the file in "POST" tab in firebug, but it doesn't seem to ever reach the server. What am I doing wrong?
Krzysztof
Top achievements
Rank 1
 answered on 30 Sep 2011
1 answer
279 views

I have two tabs inside the Kendo Tab strip.

Both of the tabs have its own grids as well, but when ever i do the column drop on the grid of the 1st tab, the column
drop gets visible on the grid of the second tab.

now if i change the code to create the grid on the first tab to be second, then it gets vice versa.
basically which ever the last grid created in the code, becomes active for the column drop.

though the column filter functionlity is working on the desired grid, on the column header drop area the column is not visible.

<html>
    <head>
        <title>Basic usage</title>
        <link href="./addi/styles/examples.css" rel="stylesheet"/>
        <link href="./addi/styles/kendo.common.css" rel="stylesheet"/>
        <link href="./addi/styles/kendo.kendo.css" rel="stylesheet"/>
        <script src="./addi/js/jquery.js"></script>
        <script src="./addi/js/kendo.core.js"></script>
        <script src="./addi/js/kendo.fx.js"></script>
        <script src="./addi/js/kendo.draganddrop.js"></script>
        <script src="./addi/js/kendo.resizable.js"></script>
        <script src="./addi/js/kendo.window.js"></script>
    <script src="./addi/js/kendo.tabstrip.js"></script>
  
        <script src="./addi/js/kendo.data.js"></script>
        <script src="./addi/js/kendo.pageable.js"></script>
        <script src="./addi/js/kendo.sortable.js"></script>
        <script src="./addi/js/kendo.groupable.js"></script>
        <script src="./addi/js/kendo.grid.js"></script>
        <script src="./addi/js/people.js"></script>
  
    <script src="./addi/js/kendo.splitter.js"></script>
  
<style>
html,body { height:100%;margin:0;padding:0;}
</style>
  </head>
  
    <body>
        <div id="tabstrip" style="height: 100%; border: 1;">
            <ul>
                <li>First tab</li>
                <li>Second tab</li>
            </ul>
              
            <div>
                <div id="vertical" >
                    <div>
                        <div id="horizontal1" >
                            <div></div>
                            <div><div id="grid3"></div></div>
                        </div>
                    </div>
                    <div>
                        <div id="horizontal2" >
                            <div></div>
                            <div></div>
                        </div>
                    </div>
                    <div>
                        <div id="horizontal3" >
                            <div></div>
                            <div></div>
                        </div>
                    </div>
                </div>
            </div>
            <div>
                <div id="grid"></div>
            </div>
        <script type="text/javascript">
                $(document).ready(function() { 
                  $("#tabstrip").kendoTabStrip();
                    
                   $("#grid").kendoGrid({
                       dataSource: { 
                           data: createRandomData(50),
                            pageSize: 10 
                       },
                        height: window.height,
                        groupable: true, 
                        scrollable: true,
                        sortable: true,
                        pageable: true,
                        columns: [ 
                           
                               field: "FirstName",
                                title: "First Name"
                            },
                            
                              field: "LastName",
                              title: "Last Name"
                            }, 
                           
                              field: "City"
                            }, 
                           {
                              field: "Title" 
                           }, 
                           {  
                              field: "BirthDate", 
                              title: "Birth Date",
                              template: '<#= kendo.toString(BirthDate,"dd MMMM yyyy") #>'
                            },
                            {
                                field: "Age"
                            }
                        
                   });
  
                      
                       $("#grid3").kendoGrid({
                       height: window.height,
                        groupable: true,
                        scrollable: true,
                        sortable: true,
                        pageable: true,
                        columns: [
                           {
                               field: "FirstName",
                                title: "First Name"
                            },
                            {
                               field: "LastName",
                                title: "Last Name"
                            },
  
                        ]
                   });
  
                    $("#vertical").kendoSplitter({
                        orientation: "vertical",
                        panes: [
                            { collapsible: true, size: "100%" },
                            { collapsible: false },
                            { collapsible: true, size: "100%" }
                        ]
                    });
                    $("#horizontal1").kendoSplitter({
                       orientation: "horizontal",
                       panes: [
                            { collapsible: true, size: "300px" },
                            { collapsible: false },
                            { collapsible: true, size: "100%" },
                { resizable: true }
                        ]
                    });
                    $("#horizontal2").kendoSplitter({
                        orientation: "horizontal",
                       panes: [
                            { collapsible: true, size: "300px" },
                            { collapsible: false },
                            { collapsible: true, size: "100%" },
                { resizable: true }
                        ]
                    });
                    $("#horizontal3").kendoSplitter({
                        orientation: "horizontal",
                       panes: [
                            { collapsible: true, size: "300px" },
                            { collapsible: false },
                            { collapsible: true, size: "100%" },
                { resizable: true }
                        ]
                    });
                    $(document).ready(function(){
                        var tabstrip = $("#tabstrip").kendoTabStrip().data("kendoTabStrip");
                        tabstrip.select(tabstrip.tabGroup.children("li:first"));
                    });
                      
               });
                 
  
        
            </script>
      </div>
    </body>
</html>

Please help
Nikolay Rusev
Telerik team
 answered on 30 Sep 2011
1 answer
744 views
How to connect MySQL database using J2EE in kendo ui

Thanks in advance
Rosen
Telerik team
 answered on 30 Sep 2011
7 answers
259 views
Hello everyone!

I would like to know for what we have 'ranges' in DataSource, and when/where we are using it.

Cheers!
Rosen
Telerik team
 answered on 30 Sep 2011
1 answer
156 views
Dear Kendo UI Team and fellow users,

Is there a nice search feature for the grid or if not, will there be in the future?

Thanks so much!
Nikolay Rusev
Telerik team
 answered on 29 Sep 2011
1 answer
194 views
I noticed that the upload widget currently uses an HTTP POST for both upload and removal of files.  Would it make sense for the widget to default to an HTTP DELETE verb for removal of files?  Or perhaps offer the ability to configure the HTTP method in the configuration.  such as removeUrlMethod: 'DELETE'.  I think the RESTafarians would like it. :)


T. Tsonev
Telerik team
 answered on 29 Sep 2011
1 answer
94 views
Is it possible to fit an window in a splitting pane. If possible then how I can do it. please help. Thanks in advance
Dimo
Telerik team
 answered on 27 Sep 2011
8 answers
286 views
Will it be part of the Telerik Ultimate Collection?...wouldnt be too ultimate without Kendo :)
Sebastian
Telerik team
 answered on 27 Sep 2011
1 answer
542 views
Is there a way to show only unique values from the data source in this list or is there a way to filter the data source so only unique values are returned?
Georgi Krustev
Telerik team
 answered on 27 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
Drag and Drop
Application
Map
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
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?