Telerik Forums
Kendo UI for jQuery Forum
0 answers
97 views
Hello,

A question if we build a website completely on HTML5 with KendoUI JSON datasources will Google/Bing crawl are JSON data ? Or will it only crawl are HTML5 template ?

There is a lot off information about HTML5 and JSON on the web only there is nothing that says will Google/Bing crawl JSON data.
The onlything we find is that Google works with # (get, post) this get and post i don't see inside KendoUI if we look at the Row template sample.
Marco
Top achievements
Rank 1
 asked on 14 Apr 2012
1 answer
96 views
How can we add new value axis in kendo Ui
Hansika
Top achievements
Rank 1
 answered on 14 Apr 2012
0 answers
134 views
Hi all,
We are looking for a way to create a scheduler like Outlook week view... or google calendar ..

regards
AC
Antonello
Top achievements
Rank 1
 asked on 14 Apr 2012
4 answers
1.9K+ views
I'm embarking on a big ASP.NET MVC web application development project in early January and although I was previously set on using the Telerik ASP.NET MVC Extensions, I am now wondering whether using Kendo would actually be better? Better in the sense of a nicer UI with a better future growth path. This particular application is the back-office component of a LOB application and does not require mobile support, although partial mobile support in future should probably not be ruled out.

I've read the MVC FAQ here: http://www.kendoui.com/faq/mvc-faq.aspx and note that ASP.NET MVC wrappers will be provided in future, but I need to start soon.

As the server side technology has to be ASP.NET MVC (WCF is also an option), I require some solid examples of using Kendo with ASP.NET MVC showing menus, grids, forms and comprehensive CRUD operations. I may be missing them, but are there any comprehensive Kendo + ASP.NET MVC examples available for study yet?

I think having such examples would greatly promote adoption of Kendo by ASP.NET MVC developers. In fact a separate forum for Kendo + ASP.NET MVC might be a good idea.

Thanks in advance
Long
Top achievements
Rank 1
 answered on 14 Apr 2012
9 answers
2.5K+ views
I have a working asmx web service, which returns JSON data, feeding a grid via a datasource:-
var dataSource = new kendo.data.DataSource({
       transport: {
           read: {
               type: "GET",
               url: "http://localhost:51465/WidgetService.asmx/GetPatients",
               contentType: 'application/json',
               datatype: "json"
           }
 
       },
        
       serverPaging:false,
        
       schema: {
 
           data: "d"
 
       }
       , pageSize: 10
   });

This works fine.  However , when I try to pass a parameter to the asmx service (to enable server side filtering), like this:-
var dataSource = new kendo.data.DataSource({
       transport: {
           read: {
               type: "GET",
               url: "http://localhost:51465/WidgetService.asmx/GetPatientsFiltered",
               contentType: 'application/json',
               datatype: "json",
 
               data: { srchFilter: "blue" }
           }
       },
     
       serverPaging:false,
        
       schema: {
           data: "d"
       }
       , pageSize: 10
   });

I get an Invalid JSON primitive error.  Using fiddler, I can see that the call to the web service is http://localhost:51465/WidgetService.asmx/GetPatientsFiltered?srchFilter=blue&take=10&skip=0&page=1&pageSize=10
, but as it's a JSON call, it isn't encoded correctly. How can I correctly format the call?
Also, even though server side paging is set to false, it's passing the paging parameters - the only way to stop this is to remove the pageSize setting, which then removes client-side paging on the grid.  How can I fix this.

It would be really helpful to have a lot fuller documentation on the datasource, including all the options and parameters that can be used, and the sort of services it is expecting (i.e. parameter names / formatting etc..). Currently I feel as if I'm stumbling around in the dark (and most examples on the web either relate specifically to jquery, or asp.net AJAX).

Thanks
Long
Top achievements
Rank 1
 answered on 14 Apr 2012
0 answers
119 views
Hi,
How I can create i validator message with tooltip ?

Thanks
Vitantonio
Top achievements
Rank 1
 asked on 14 Apr 2012
5 answers
810 views
I'm using jquery mobile with some controls of kendo ui (either kendo mobile isn't out yet).

Jquery Mobile use AJAX to load the content of the next page and replaces the content of the div with the attribute data-role="page". 
This is fine and works great, but with the time the page gets slower and slower. the reason for this is, that kendo ui creates elements in the body of the document, and those elements are never removed... so the page dom increases with every page load... 

Is there a reason to destroy existing controls so that they remove the generated content in the body? Or can I define in which element kendo ui will generate the hidden divs?

Thank you 
Micha
Chad
Top achievements
Rank 1
 answered on 14 Apr 2012
18 answers
850 views
When I try to scroll an opened dropdownlist on the iPad, it selects the item that was touched in the list and then closes. So to select the actual item that I'm looking for I have to open and scroll n number of times until I reach such item.  Is there a way to differentiate the touch between a drag and a click.  I was thinking about trying to make it cancel the close when the drag event happens.
Swetha
Top achievements
Rank 1
 answered on 13 Apr 2012
3 answers
299 views
How can we add data to the HTML headers sent by the data source?
Is there a function or property that will do this?

Something like this would be a simple fix as JQuery 1.5.* supports adding
a "headers" map to add any custom headers you want.

                        transport: {
                            read: "http://localhost/WebAPITest/api/Transactions",
                            datatype: "json",
                            headers: { Authorization: "user/password" }
                        },

Thanks
Gary
Top achievements
Rank 1
 answered on 13 Apr 2012
1 answer
155 views
Hello,

Can you provide several examples for MVVM with TreeView and a JSON DataSource ?

Best Regards,
Guillaume
Kyle
Top achievements
Rank 1
 answered on 13 Apr 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
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?