Telerik Forums
Kendo UI for jQuery Forum
1 answer
237 views
Do you have any examples of how to bind Kendo to an MS SQL Database.  I saw the following response to this question in one of your blogs but it wasn't helpful - Is there support for SQL Server?
All we require is an endpoint for the data (as XML or JSON). Expose that from SQL Server and you're all good!

Example would be great!

Roger
marbleblue
Top achievements
Rank 1
 answered on 07 Nov 2012
1 answer
52 views
I have used the Themebuilder on the Kendo UI site to create a theme that reflects my company style. It seems that the Export button only output a few lines of code (way to less code, I assume).

 .km-ios .km-view .km-navbar .km-button.km-state-active {
    background-color: rgb(236, 32, 40);
}
.km-ios .km-view .km-content .km-list .km-state-active .km-listview-link {
    background-color: rgb(236, 32, 40);
}
.km-ios .km-view .km-navbar {
    background-color: rgb(0, 111, 81);
}
.km-ios .km-view .km-content .km-list > li {
    background-color: rgb(0, 111, 81);
}
.km-ios .km-view .km-content {
    background-color: rgb(255, 255, 255);
}
.km-ios .km-view .km-navbar .km-view-title > * {
    color: rgb(255, 255, 255);
}
.km-ios .km-view .km-tabstrip {
    background-color: rgb(0, 111, 81);
}
.km-ios .km-view .km-content .km-list > li .km-icon {
    background-color: rgb(236, 32, 40);
}

When I include that css in my project below the existing reference to Kendo CSS it seems that this has no effect in my app.

Anyone who has used the Kendo mobile themebuilder (http://demos.kendoui.com/mobilethemebuilder/index.html) can tell me what could be wrong?
Jan-Dirk
Top achievements
Rank 1
 answered on 07 Nov 2012
3 answers
822 views
When creating a template, I included a ${someHTMLText} in my template.  The result is that the HTML is displayed as text on the screen rather than rendered by the browser.  Is this possible?
Atanas Korchev
Telerik team
 answered on 07 Nov 2012
2 answers
229 views
I am doing a little project which involves me saving data into an array from user inputs which i wish to display using a bar chart. However when i run the code from aptana studio local server, i get no chart, but if i open it using the file:// protocol, it works how it should. Not sure what is going on. I'm still learning web development so i'm not really sure what has gone wrong.

The console error i am recieving when running from a local server is:
$("#chart").kendoChart is not a function
field: "year"
Alexander Valchev
Telerik team
 answered on 07 Nov 2012
2 answers
429 views
Hello,

how can I use the filter in a declarative notation? I am using a dropDownList the following way:

<select data-role="dropdownlist" data-text-field="Name" data-value-field="Id" data-bind="source: data, value: myId" data-source="{filter: {field:'Id', operator:'eq', value:'this.myId'}}"></select>

Within JavaScript:
var viewModel = kendo.observable({
data:[{Id:"1", Name:"a"}, {Id:"2", Name:"b"}, {Id:"3", Name:"c"}, ],
myId:2
});
kendo.bind($("#example"), viewModel);

But this does not work! How can I reference the myId parameter within the viewModel?
The filter works if I hardcode a value (e.g. if I write '2' instead of 'this.myId')

-----------------------------------

I added a short sample with 2 select widgets. The options of the second select widget are dependent on the first select widget.
But this sample does not work.
Can you tell me why?

http://jsfiddle.net/hollomey/fJH8P/18/

How can I filter the options of the 2nd select widget dependent on the selection value of the 1st one?
And how can I make the 2nd select widget to change automatically when a different selection is made in the 1st select widget?
And is it possible to code this sample with a filter on the dataSource?

-----------------------------------

In the next sample I use a change event in the 1st select widget. But the alert-box shows always the value from the previous selection, never the current one. And the close event hangs up the application...
There is also an update problem with the 2nd select widget when changing the selection multiple times...
What's wrong with this code?

http://jsfiddle.net/hollomey/fJH8P/26/

Thanks for your help
Florian
Florian
Top achievements
Rank 1
 answered on 07 Nov 2012
3 answers
425 views
Has anyone tried Kendo with Twitter BootStrap?
Any issues with that?
I'm looking to use Bootstrap for mostly CSS/UI/& buttons.
Prefer Kendo for DataGrids / Heavylifting.

In hints or tips would be great.

Thanks
Kris Nobels
Top achievements
Rank 2
 answered on 07 Nov 2012
1 answer
105 views
Hi,

I am using a datasource with a filter on it.

How can I get the 1st item of the data, which the filter returns?

Sample: The datasource has 20 items. When I apply a filter, the filter returns only 5 items. How can I access the 1st of the 5 items and all its properties?

Thanks
Florian
Florian
Top achievements
Rank 1
 answered on 07 Nov 2012
3 answers
81 views

Hi, 

We are specially looking for new charts & features like, Bubble, Doughnut, Splin, Spline Area, etc. charts and features like annotation drill down from each metric trend. What's near future plan to get this features.

Thanks,
Milind

Iliana Dyankova
Telerik team
 answered on 07 Nov 2012
0 answers
32 views
In the example http://demos.kendoui.com/mobile/forms/index.html (and beta) when I position the fields of type date, I will propose a text keyboard.
Mike
Top achievements
Rank 1
 asked on 07 Nov 2012
5 answers
489 views
Hello guys!
Basically, what I want is just to bind json formatted First and Last names to grid.
Hers is my datasource : http://10.50.0.106/DLC/api/grid?format=json
result ====>
http://10.50.0.106/DLC/api/grid?format=json
{"Result":{"FirstName":"coder","LastName":"coder"}}

Here is how I'm trying to bind it to grid:

 $("#grid").kendoGrid({
                                dataSource: {
                                    type: "jsonp",
                                    transport: {
                                        read: {
                                            url: "http://10.50.0.106/DLC/api/grid?format=json",
                                            dataType: "jsonp"

                                        }
                                    },
                                    pageSize: 1
                                },
                                schema: {
                                    model: {
                                        fields: {
                                            FirstName: { type: "string" },
                                            LastName: { type: "string" }
                                        }
                                    }
                                },
                                columns: [{
                                    field: "FirstName",
                                    width: 90,
                                    title: "First Name"
                                }, {
                                    field: "LastName",
                                    width: 90,
                                    title: "Last Name"
                                }]
                            });

As result I see blank grid with headers.
I receive no errors, warnings or exceptions. Can someone tell me what am I missing or doing wrong?
This actually drives me crazy =)

Muhammad
Top achievements
Rank 1
 answered on 07 Nov 2012
Narrow your results
Selected tags
Tags
Grid
General Discussions
Charts
Data Source
Scheduler
DropDownList
TreeView
MVVM
Editor
Window
Date/Time Pickers
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)
SPA
Filter
Drawing API
Drawer (Mobile)
Globalization
Gauges
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
OrgChart
TextBox
Effects
Accessibility
ScrollView
PivotGridV2
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
Popover
DockManager
FloatingActionButton
TaskBoard
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
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?