Telerik Forums
Kendo UI for jQuery Forum
3 answers
322 views
Is there any way to fire the upload action when the uploader is set to autoUpload: false?
I mean, using javascript not a click on a button.

thx.
Dimo
Telerik team
 answered on 23 Nov 2011
1 answer
168 views
I am trying to build the mobile application for stock market.So is it possible that stock market data can be updated in real time basis in kendo ui grid. Please guide me.
andrew
Top achievements
Rank 1
 answered on 22 Nov 2011
0 answers
101 views
Is there Option for Batch Updates (CRUD). if yes, how to enable it, any demos of it.
In that Case How will you handle Uncommited Modified Data, and the user changes Page or Applys filter that can hide the Modified Rows or sorts where the Row goes to another. How are such conditions handled ?
Naunihal
Top achievements
Rank 1
 asked on 22 Nov 2011
0 answers
190 views
Hi
Greetings!!!
Can you tell me whether Kendo UI grid supports streaming data?? for example in want to show streaming data continiously updating in the Grid for Microsoft or any other scrip. Please let me know how it is possible through Kendo UI.

Regards
Manash
WIPL
manash
Top achievements
Rank 1
 asked on 22 Nov 2011
2 answers
127 views
I have been trying to get a simple Kendo project to work and finally decided to post here for some help.

Here is my code:

<!DOCTYPE html>

<html>

<head>

    <title></title>

    <link href="kendo.common.min.css" rel="stylesheet" />

    <link href="kendo.kendo.min.css" rel="stylesheet" />

    <script src="js/jquery-1.6.2.min.js"></script>

    <script src="js/kendo.all.min.js"></script>

    <style>

        .contain {

            width: 800px;

            height: auto;

        }

    </style>

</head>

<body>

    <div id="container" class="contain">

        <div id="grid"></div>

        

    </div>

    <script>

        $(document).ready(function () {

            var source = [

                            {

                                "firstname": "Richard",

                                "lastname": "Rostant"

                            },

                            {

                                "firstname": "John",

                                "lastname": "Smith"

                            },

                            {

                                "firstname": "Harry",

                                "lastname": "Summers"

                            },

                            {

                                "firstname": "Henry",

                                "lastname": "Ford"

                            }

                         ];

            var ndataSource = new kendo.data.DataSource({ data: source });

            

            $("#grid").kendoGrid({

                datasource: ndataSource,

                columns: [

                                {

                                    field: "firstname",

                                    title: "First Name"

                                },

                                {

                                    field: "lastname",

                                    title: "Last Name"

                                }

                          ],

                height: 600

            });

        });

    </script>

</body>

</html>

I can't seem to get the grid to display anything. It renders, but no data is being displayed. I am sure that it is something simple that is just eluding me. 

Any help would be appreciated.

Richard
Top achievements
Rank 2
 answered on 22 Nov 2011
1 answer
159 views
I would like to place the menu at the bottom of the page. That would be opened up and the arrows were in the opposite direction.
Kamen Bundev
Telerik team
 answered on 22 Nov 2011
1 answer
166 views
I have a couple of widgets on a page that I want to be draggable, but I want to restrict the area from which the drag event may start (kind of like a "toolbar" at top of the widget that will move the whole widget). Is there any support for this functionality yet? 

(To clarify: see this for an example.)

/Jacob
Alex Gyoshev
Telerik team
 answered on 22 Nov 2011
3 answers
162 views
Hi,

I've played around a bit with the controls on the demo site and would like to give you some quick feedback about the DropDownList control (e.g. http://demos.kendoui.com/overview/index.html -> country list)

This control feels unnatural to me. The reasons, in my view, are:

1. Inconsistent: Compared to other kendo UI controls (e.g. buttons) or the standard HTML controls, the DropDownList has a 3D effect -> a shadow

2. Delay: When I hoover over the DropDownList it gets highlighted. Only after a short (but visible) delay of may be 50ms, it pops-out the shadow (testes in Chrome)

3. Mouse Pointer: When I click on the DropDownList, the mouse pointer changes from the arrow to a ....text marker (-> see screenshot attached) and then back to the arrow

4. Performance: The reaction of the DropDownList feels slow/not reactive compared to standard HTML DropDownList controls

Note: With "standard HTML DropDownList controls" I mean e.g. chrome://settings/browser (type this URL into your chrome address bar).

Regards,
Mike
Kamen Bundev
Telerik team
 answered on 22 Nov 2011
6 answers
333 views
Hi,

I have a need to have multiple windows interact.

The problem is, unlike your RadWindows for Ajax which will always be on top after receiving a mouse click, not so with the Kendo UI windows.

I will explain.

I open window A.

Window A launches window B.

Window B is UNDER window A.

I have written JQuery to search for the divs with the k-window classes, find the title span, and set the z-index behaviors I want but this is not as elegant as the behavior of your own RadWindows in the Telerik Ajax suite which I use on my other big ASP.NET project.

I believe your windows need to do 2 things for official v1 release.

A- Minimize

B- Whenever a window receives focus it should have the highest z-index. 

Thanks!!

Cary














Cary Abramoff
Top achievements
Rank 1
 answered on 22 Nov 2011
1 answer
665 views
Can you have a quick peek and see if you can detect why this would fail?

http://screencast.com/t/NgirLT9EIErZ

This is the second "template" I'm running after an ajax callback, code I believe is borderline identical...but this one just doesn't seem to run at all and I'm stumped

Can you spot the problem?

success: function (data) {
    var docs = data.d; //Get the data
    var doctemplate = kendo.template($("#dashwidget-document-template").html()); //compile the template
 
    alert(doctemplate);
 
    var result = doctemplate(docs); //Run the template, SILENTLY FAILS HERE...NEVER GETS TO THE ALERT
    alert(result);
 
    $("#document-list").html(result); //display html
},

<div id="document-container">
    <ul id="document-list">
        <li>Loading...</li>
    </ul>
</div>
 
<script id="dashwidget-document-template" type="text/x-kendo-template">
    <li>#= Title #</li>
</script>
sitefinitysteve
Top achievements
Rank 2
Iron
Iron
Veteran
 answered on 22 Nov 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
ScrollView
Switch
TextArea
BulletChart
Licensing
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
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
SegmentedControl
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
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?