-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathExampleList.xml
More file actions
1703 lines (1703 loc) · 119 KB
/
ExampleList.xml
File metadata and controls
1703 lines (1703 loc) · 119 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" ?>
<MainPage>
<IncludeGroups>
<Group name="jquery">
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/jquery-migrate-1.0.0.js"></script>
</Group>
<Group name="codemirror">
<script type="text/javascript" src="/examples/scripts/vendor/codemirror/lib/codemirror.js"></script>
<script type="text/javascript" src="/examples/scripts/vendor/codemirror/mode/xml/xml.js"></script>
<script type="text/javascript" src="/examples/scripts/vendor/codemirror/mode/htmlmixed/htmlmixed.js"></script>
<script type="text/javascript" src="/examples/scripts/vendor/codemirror/mode/javascript/javascript.js"></script>
<link rel="stylesheet" href="/examples/scripts/vendor/codemirror/lib/codemirror.css" />
</Group>
<Group name="bootstrap">
<script src="/examples/scripts/vendor/bootstrap.min.js"></script>
<link href="/examples/styles/Bootstrap/bootstrap.css" rel="stylesheet" />
<link href="/examples/styles/Bootstrap/bootstrap-responsive.css" rel="stylesheet" />
</Group>
<Group name="kendoui">
<script type="text/javascript" src="http://cdn.kendostatic.com/2012.2.710/js/kendo.all.min.js"></script>
<script type="text/javascript" src="http://include.jaydata.org/1.5.5/jaydatamodules/kendo.js"></script>
<link rel="stylesheet" type="text/css" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.common.min.css" />
<link rel="stylesheet" type="text/css" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.default.min.css" />
</Group>
<Group name="knokout">
<script type="text/javascript" src="http://include.jaydata.org/knockout-2.1.0.js"></script>
<script type="text/javascript" src="http://include.jaydata.org/1.5.5/jaydatamodules/knockout.js"></script>
</Group>
<!--<Group name="yql">
<script type="text/javascript" src="http://include.jaydata.org/1.5.5/jaydataproviders/YQLProvider.js"></script>
</Group>-->
<!--<script type="text/javascript" src="http://include.jaydata.org/jaydata.js"></script>-->
<Group name="jaydata">
<script type="text/javascript" src="http://include.jaydata.org/1.5.5/jaydata.js"></script>
<script type="text/javascript" src="http://include.jaydata.org/1.5.5/jaydata-compatibility.js"></script>
<script type="text/javascript" src="http://include.jaydata.org/1.5.5/jaydatamodules/deferred.js"></script>
</Group>
<Group name="gallery">
<link rel="stylesheet" href="/examples/Plugins/prettyphoto/css/prettyPhoto.css" />
<script src="/examples/Plugins/prettyphoto/js/jquery.prettyPhoto.js"></script>
<script src="/examples/scripts/galleryHandler.js"></script>
</Group>
<!--<Group name="facebook">
<script type="text/javascript" src="http://include.jaydata.org/jaydataproviders/FacebookProvider.js"></script>
</Group>-->
</IncludeGroups>
<Includes>
<group name="jquery"></group>
<group name="jaydata"></group>
<group name="codemirror"></group>
<group name="bootstrap"></group>
<link rel="stylesheet" href="/examples/styles/Bootstrap/docs.css"/>
<link rel="stylesheet" href="/examples/styles/dd.css" />
<script src="/examples/scripts/ui.js"></script>
</Includes>
<Examples>
<!-- KendoUI examples -->
<!--<Example>
<Title>Listview with Kendo UI</Title>
<Lead><![CDATA[The simplest way to use JayData and KendoUI is creating a listview. All you need is a JayData context, of course it works with all <a href="http://jaydata.org/providers">providers</a>! In this example OData is used. ]]></Lead>
<Description>
<![CDATA[As you can see in this example, to use Kendo UI with JayData is a piece of cake. All you need is a JayData context, of course it works with all providers!
In this example OData is used. <br/>Check the network panel to see the requests.
You can create a Kendo Datasource with a simple method: asKendoDataSource() and off you go. If works everywhere where Kendo expects a DataSource, not only
with ListView. Our datasource supports everything, so paging, filtering and sorting all works. If you use oData, then paging, filtering and sorting happens on
the server side! asKendoDataSource() is a method of Queryable so you can use all features of JayData, filtering, projection, etc.]]>
</Description>
<Image>/examples/Images/indexeddb.png</Image>
<Link>KendoUI/ListView</Link>
<Tags>KendoUI, OData, list</Tags>
<Level>100</Level>
<Suggested></Suggested>
<JsFiddle>http://jsfiddle.net/JayData/F4Hda/</JsFiddle>
<Meta-KeyWords>JayData, KendoUI, Crossplatform, Javascript, HTML5, tutorial, example</Meta-KeyWords>
<Meta-Description>How to create JayData listview with Kendo UI? See this simple listview example.</Meta-Description>
<Includes>
<group name="kendoui"></group>
<script type="text/javascript" src="/examples/scripts/vendor/north.js"></script>
<script type="text/javascript" src="http://jaydata-cdn.s3.amazonaws.com/datajs-1.0.3-patched.js"></script>
</Includes>
<SupportedBrowsers>
<Browser title="Internet Explorer" name="ie" minVersion="7" />
<Browser title="Google Chrome" name="chrome"/>
<Browser title="Opera" name="opera" minVersion="11"/>
<Browser title="Safari" name="safari" minVersion="5"/>
<Browser title="Blackberry" name="blackberry" minVersion="7.0"/>
<Browser title="Windows Phone" name="wp" minVersion="8"/>
<Browser title="iOS" name="ios" minVersion="4"/>
<Browser title="Android" name="android" minVersion="2.2"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/introducing-jaydata-and-kendo-ui-kendo-ui-blog" target="_blank" css="">Introducing JayData And Kendo UI</ContentLink>
<ContentLink link="http://jaydata.org/blog/jaydata-kendo-ui-awesomeness" target="_blank" css="">JayData+Kendo UI =Awesomeness</ContentLink>
<ContentLink link="http://jaydata.org/categories/kendo-ui" target="_blank" css="">JayData blogs about Kendo UI</ContentLink>
</RelatedContents>
</Example>-->
<!--<Example>
<Title>Kendo UI listview with filter and sorting</Title>
<Lead><![CDATA[JayData and Kendo UI listview with filtering and sorting. The dataSource supports paging, filtering and sorting without writing storage or protocol-specific code.]]></Lead>
<Description>
<![CDATA[As you can see in this example, to use Kendo UI with JayData is a piece of cake. All you need is a JayData context, of course it works with all providers!
In this example oData is used. Check the network panel to see the requests.
You can create a Kendo Datasource with a simple method: asKendoDataSource() and off you go. <br/>If works everywhere where Kendo expects a DataSource, not only
with ListView. Our datasource supports everything, so paging, filtering and sorting all works. If you use oData, then paging, filtering and sorting happens on
the server side! asKendoDataSource() is a method of Queryable so you can use all features of JayData, filtering, projection, etc.]]>
</Description>
<Meta-KeyWords>JayData, HTML5, Kendo UI, HTML5 datasource, Javascript, example</Meta-KeyWords>
<Meta-Description>How to use the JayData with Kendo UI? See this listview example.</Meta-Description>
<Includes>
<group name="kendoui"></group>
<script type="text/javascript" src="/examples/scripts/vendor/north.js"></script>
<script type="text/javascript" src="http://jaydata-cdn.s3.amazonaws.com/datajs-1.0.3-patched.js"></script>
</Includes>
<Image>/examples/Images/indexeddb.png</Image>
<Link>KendoUI/ListView_Filter</Link>
<Tags>KendoUI, OData, query, JayStorm, sort, list</Tags>
<Level>110</Level>
<Suggested></Suggested>
<JsFiddle>http://jsfiddle.net/JayData/F4Hda/</JsFiddle>
<SupportedBrowsers>
<Browser title="Internet Explorer" name="ie" minVersion="7" />
<Browser title="Google Chrome" name="chrome"/>
<Browser title="Opera" name="opera" minVersion="11"/>
<Browser title="Safari" name="safari" minVersion="5"/>
<Browser title="Blackberry" name="blackberry" minVersion="7.0"/>
<Browser title="Windows Phone" name="wp" minVersion="8"/>
<Browser title="iOS" name="ios" minVersion="4"/>
<Browser title="Android" name="android" minVersion="2.2"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/introducing-jaydata-and-kendo-ui-kendo-ui-blog" target="_blank" css="">Introducing JayData And Kendo UI</ContentLink>
<ContentLink link="http://jaydata.org/blog/jaydata-kendo-ui-awesomeness" target="_blank" css="">JayData+Kendo UI =Awesomeness</ContentLink>
<ContentLink link="http://jaydata.org/categories/kendo-ui" target="_blank" css="">JayData blogs about Kendo UI</ContentLink>
</RelatedContents>
</Example>-->
<!--<Example>
<Title>Kendo UI grid with filter and sorting (ENDPOINT)</Title>
<Lead><![CDATA[Simple Kendo UI grid with remote OData datasource. Sorting, paging and filtering works on the server side but with a simple switch they can be one the client side, too.]]></Lead>
<Description>
<![CDATA[This Kendo Grid example uses oData to access the Northwind service. Sorting, paging and filtering works on the server side but with a simple
switch they can be one the client side, too. In this example the grid is read only and the columns are manually configured. In other
examples you'll see read-write grid and automatic column setup.]]>
</Description>
<Meta-KeyWords>JayData, HTML5, Javascript, Kendo UI, Crossplatform, WebSQL, IndexedDB, example</Meta-KeyWords>
<Meta-Description>How to use the JayData with Kendo UI? See this simple grid example.</Meta-Description>
<Includes>
<group name="kendoui"></group>
<script type="text/javascript" src="/examples/scripts/vendor/north.js"></script>
</Includes>
<Image>/examples/Images/indexeddb.png</Image>
<Link>KendoUI/Grid_ReadOnly</Link>
<Tags>KendoUI, OData, query, sort, Northwind, grid</Tags>
<Level>130</Level>
<Suggested></Suggested>
<SupportedBrowsers>
<Browser title="Internet Explorer" name="ie" minVersion="7" />
<Browser title="Google Chrome" name="chrome"/>
<Browser title="Opera" name="opera" minVersion="11"/>
<Browser title="Safari" name="safari" minVersion="5"/>
<Browser title="Blackberry" name="blackberry" minVersion="7.0"/>
<Browser title="Windows Phone" name="wp" minVersion="8"/>
<Browser title="iOS" name="ios" minVersion="4"/>
<Browser title="Android" name="android" minVersion="2.2"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/introducing-jaydata-and-kendo-ui-kendo-ui-blog" target="_blank" css="">Introducing JayData And Kendo UI</ContentLink>
<ContentLink link="http://jaydata.org/blog/jaydata-kendo-ui-awesomeness" target="_blank" css="">JayData+Kendo UI =Awesomeness</ContentLink>
<ContentLink link="http://jaydata.org/categories/kendo-ui" target="_blank" css="">JayData blogs about Kendo UI</ContentLink>
</RelatedContents>
</Example>-->
<!--<Example>
<Title>Kendo UI grid and CRUD (ENDPOINT, sync)</Title>
<Lead><![CDATA[Create, read, update and delete in-browser database records in Kendo UI grid. JayData knows how to process the CRUD actions and translate it to different data storage syntaxes. ]]></Lead>
<Description>
<![CDATA[ This Kendo Grid example uses a local Northwind database. Sorting, paging and filtering works along
with full CRUD. The demo is written so that your local database is reinitialized on every page reload and your changes are lost!]]>
</Description>
<Meta-KeyWords>JayData, HTML5, Javascript, Kendo UI, Crossplatform, example</Meta-KeyWords>
<Meta-Description>How to use the JayData with Kendo UI! See this simple example.</Meta-Description>
<Image>/examples/Images/indexeddb.png</Image>
<Link>KendoUI/Grid_CRUD</Link>
<Tags>KendoUI, CRUD, grid, Northwind</Tags>
<Level>140</Level>
<Suggested></Suggested>
<Includes>
<group name="kendoui"></group>
<script type="text/javascript" src="/examples/scripts/vendor/north.js"></script>
</Includes>
<SupportedBrowsers>
<Browser title="Internet Explorer" name="ie" minVersion="7" />
<Browser title="Google Chrome" name="chrome"/>
<Browser title="Opera" name="opera" minVersion="11"/>
<Browser title="Safari" name="safari" minVersion="5"/>
<Browser title="Blackberry" name="blackberry" minVersion="7.0"/>
<Browser title="Windows Phone" name="wp" minVersion="8"/>
<Browser title="iOS" name="ios" minVersion="4"/>
<Browser title="Android" name="android" minVersion="2.2"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/introducing-jaydata-and-kendo-ui-kendo-ui-blog" target="_blank" css="">Introducing JayData And Kendo UI</ContentLink>
<ContentLink link="http://jaydata.org/blog/jaydata-kendo-ui-awesomeness" target="_blank" css="">JayData+Kendo UI =Awesomeness</ContentLink>
<ContentLink link="http://jaydata.org/categories/kendo-ui" target="_blank" css="">JayData blogs about Kendo UI</ContentLink>
</RelatedContents>
</Example>-->
<!--<Example>
<Title>Kendo UI Autocomplete (ENDPOINT, sync)</Title>
<Lead><![CDATA[Populate the Kendo UI auto-complete field with in-browser database records using JayData. <br/>No manual querying, no pain, just smooth data access.]]></Lead>
<Description>
<![CDATA[This Kendo autocomplete example uses a local Northwind database. Populate the Kendo UI auto-complete field with in-browser database records using JayData. <br/> No manual querying, no pain, just smooth data access.]]>
</Description>
<Meta-KeyWords>JayData, HTML5, Javascript, Kendo UI, Crossplatform, example</Meta-KeyWords>
<Meta-Description>How to use the JayData with Kendo UI! See this example.</Meta-Description>
<Includes>
<group name="kendoui"></group>
<script type="text/javascript" src="/examples/scripts/vendor/north.js"></script>
</Includes>
<Image>/examples/Images/indexeddb.png</Image>
<Link>KendoUI/Autocomplete</Link>
<Tags>KendoUI, autocomplete, Northwind</Tags>
<Level>200</Level>
<Suggested></Suggested>
<SupportedBrowsers>
<Browser title="Internet Explorer" name="ie" minVersion="7" />
<Browser title="Google Chrome" name="chrome"/>
<Browser title="Opera" name="opera" minVersion="11"/>
<Browser title="Safari" name="safari" minVersion="5"/>
<Browser title="Blackberry" name="blackberry" minVersion="7.0"/>
<Browser title="Windows Phone" name="wp" minVersion="8"/>
<Browser title="iOS" name="ios" minVersion="4"/>
<Browser title="Android" name="android" minVersion="2.2"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/introducing-jaydata-and-kendo-ui-kendo-ui-blog" target="_blank" css="">Introducing JayData And Kendo UI</ContentLink>
<ContentLink link="http://jaydata.org/blog/jaydata-kendo-ui-awesomeness" target="_blank" css="">JayData+Kendo UI =Awesomeness</ContentLink>
<ContentLink link="http://jaydata.org/categories/kendo-ui" target="_blank" css="">JayData blogs about Kendo UI</ContentLink>
</RelatedContents>
</Example>-->
<!--<Example>
<Title>Kendo MVVM remote binding and JayData (ENDPOINT, sync)</Title>
<Lead><![CDATA[Make your code clean with Kendo UI MVVM and edit WebSQL/IndexedDB records with the help of JayData observables. Revitalized code of <a href="http://demos.kendoui.com/web/mvvm/remote-binding.html">original KendoUI example</a> ]]></Lead>
<Description>
<![CDATA[This Kendo mvvm example is a copy of the <a href="http://demos.kendoui.com/web/mvvm/remote-binding.html" target="_blank">original KendoUI example</a>
but it uses a local Northwind database.<br />
The demo is written so that your local database is reinitialized on every page reload and your changes are lost!]]>
</Description>
<Meta-KeyWords>JayData, HTML5, Kendo UI, Javascript, MVVM, HTML5, IndexedDB, example, online</Meta-KeyWords>
<Meta-Description>How to use the JayData with Kendo UI! See this simple example.</Meta-Description>
<Includes>
<group name="kendoui"></group>
<script type="text/javascript" src="/examples/scripts/vendor/north.js"></script>
</Includes>
<Image>/examples/Images/indexeddb.png</Image>
<Link>KendoUI/MVVM</Link>
<Tags>KendoUI, MVVM, CRUD, Northwind</Tags>
<Level>200</Level>
<Suggested></Suggested>
<SupportedBrowsers>
<Browser title="Internet Explorer" name="ie" minVersion="7" />
<Browser title="Google Chrome" name="chrome"/>
<Browser title="Opera" name="opera" minVersion="11"/>
<Browser title="Safari" name="safari" minVersion="5"/>
<Browser title="Blackberry" name="blackberry" minVersion="7.0"/>
<Browser title="Windows Phone" name="wp" minVersion="8"/>
<Browser title="iOS" name="ios" minVersion="4"/>
<Browser title="Android" name="android" minVersion="2.2"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/introducing-jaydata-and-kendo-ui-kendo-ui-blog" target="_blank" css="">Introducing JayData And Kendo UI</ContentLink>
<ContentLink link="http://jaydata.org/blog/jaydata-kendo-ui-awesomeness" target="_blank" css="">JayData+Kendo UI =Awesomeness</ContentLink>
<ContentLink link="http://jaydata.org/categories/kendo-ui" target="_blank" css="">JayData blogs about Kendo UI</ContentLink>
</RelatedContents>
</Example>-->
<!--<Example>
<Title>Kendo UI mobile app with master-detail listview (ENDPOINT, sync)</Title>
<Lead><![CDATA[<br/>Master-detail listview populated with local WebSQL/IndexedDB records by JayData. This Kendo mobile example uses a local Northwind database.]]></Lead>
<Description>
<![CDATA[Master-detail listview populated with local WebSQL/IndexedDB records by JayData. This Kendo mobile example uses a local Northwind database. The code on the left can be folded/unfolded.<br />
The demo is written so that your local database is reinitialized on every page reload and your changes are lost!]]>
</Description>
<Meta-KeyWords>JayData, HTML5, Javascript, JayData providers, Kendo UI, WebSQL, IndexedDB, example</Meta-KeyWords>
<Meta-Description>How to use the JayData with Kendo Ui? See this simple example.</Meta-Description>
<Image>/examples/Images/indexeddb.png</Image>
<Link>KendoUI/Mobile_Simple</Link>
<Tags>KendoUI, WebSQL, IndexedDB</Tags>
<Level>200</Level>
<Suggested></Suggested>
<Includes>
<group name="kendoui"></group>
<script src="/examples/scripts/example/kendo_mobile_simple.js"></script>
<script src="/examples/scripts/vendor/north.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.mobile.all.min.css" />
<link href="/examples/styles/examples.css" rel="stylesheet" />
</Includes>
<SupportedBrowsers>
<Browser title="Internet Explorer" name="ie" minVersion="7" />
<Browser title="Google Chrome" name="chrome"/>
<Browser title="Opera" name="opera" minVersion="11"/>
<Browser title="Safari" name="safari" minVersion="5"/>
<Browser title="Blackberry" name="blackberry" minVersion="7.0"/>
<Browser title="Windows Phone" name="wp" minVersion="8"/>
<Browser title="iOS" name="ios" minVersion="4"/>
<Browser title="Android" name="android" minVersion="2.2"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/introducing-jaydata-and-kendo-ui-kendo-ui-blog" target="_blank" css="">Introducing JayData And Kendo UI</ContentLink>
<ContentLink link="http://jaydata.org/blog/jaydata-kendo-ui-awesomeness" target="_blank" css="">JayData+Kendo UI =Awesomeness</ContentLink>
<ContentLink link="http://jaydata.org/categories/kendo-ui" target="_blank" css="">JayData blogs about Kendo UI</ContentLink>
</RelatedContents>
</Example>-->
<Example>
<Title>Kendo UI Task manager mobile app</Title>
<Lead><![CDATA[<br/>Learn how to manage appication settings in local databases through an advanced task manager app using JayData.]]></Lead>
<Description>
<![CDATA[Learn how to manage application settings in local databases through an advanced task manager app using JayData. <br />
This Kendo mobile example uses a local database. <br/>Download the source of this example.]]>
</Description>
<Meta-KeyWords>JayData, HTML5, Kendo UI, taskmanager, localDB, Javascript, JayData providers, WebSQL, IndexedDB, example</Meta-KeyWords>
<Meta-Description>How to use the JayData with Kendo! See this complex mobile application.</Meta-Description>
<Includes>
<group name="kendoui"></group>
<script src="/examples/scripts/example/kendo_mobile_simple.js"></script>
<script type="text/javascript" src="/examples/scripts/vendor/north.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.mobile.all.min.css" />
<link href="/examples/styles/examples.css" rel="stylesheet" />
</Includes>
<Image>/examples/Images/indexeddb.png</Image>
<Link>KendoUI/Mobile_Complex</Link>
<Tags>KendoUI, CRUD, filter, query</Tags>
<Download>https://github.com/PeterAronZentai/kendomobiledemo</Download>
<Level>300</Level>
<Suggested></Suggested>
<SupportedBrowsers>
<Browser title="Internet Explorer" name="ie" minVersion="7" />
<Browser title="Google Chrome" name="chrome"/>
<Browser title="Opera" name="opera" minVersion="11"/>
<Browser title="Safari" name="safari" minVersion="5"/>
<Browser title="Blackberry" name="blackberry" minVersion="7.0"/>
<Browser title="Windows Phone" name="wp" minVersion="8"/>
<Browser title="iOS" name="ios" minVersion="4"/>
<Browser title="Android" name="android" minVersion="2.2"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/introducing-jaydata-and-kendo-ui-kendo-ui-blog" target="_blank" css="">Introducing JayData And Kendo UI</ContentLink>
<ContentLink link="http://jaydata.org/blog/jaydata-kendo-ui-awesomeness" target="_blank" css="">JayData+Kendo UI =Awesomeness</ContentLink>
<ContentLink link="http://jaydata.org/categories/kendo-ui" target="_blank" css="">JayData blogs about Kendo UI</ContentLink>
</RelatedContents>
</Example>
<!--<Example>
<Title>Kendo UI Bar Chart (ENDPOINT)</Title>
<Lead><![CDATA[Populate Kendo UI Dataviz bar chart by fetching remote records via OData. This KendoUI Dataviz bar chart example uses a remote Northwind database.]]></Lead>
<Description>
<![CDATA[ Populate Kendo UI Dataviz bar chart by fetching remote records via OData. This KendoUI Dataviz bar chart example uses a remote Northwind database.]]>
</Description>
<Meta-KeyWords>JayData, HTML5, HTML5 chart, Javascript, Kendo UI, Crossplatform demo, example</Meta-KeyWords>
<Meta-Description>How to use the JayData with Kendo UI? See this simple chart example.</Meta-Description>
<Includes>
<group name="kendoui"></group>
<script type="text/javascript" src="/examples/scripts/vendor/north.js"></script>
</Includes>
<Image>/examples/Images/indexeddb.png</Image>
<Link>KendoUI/BarChart</Link>
<Tags>KendoUI, OData, Northwind</Tags>
<Level>300</Level>
<Suggested></Suggested>
<SupportedBrowsers>
<Browser title="Internet Explorer" name="ie" minVersion="7" />
<Browser title="Google Chrome" name="chrome"/>
<Browser title="Opera" name="opera" minVersion="11"/>
<Browser title="Safari" name="safari" minVersion="5"/>
<Browser title="Blackberry" name="blackberry" minVersion="7.0"/>
<Browser title="Windows Phone" name="wp" minVersion="8"/>
<Browser title="iOS" name="ios" minVersion="4"/>
<Browser title="Android" name="android" minVersion="2.2"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/introducing-jaydata-and-kendo-ui-kendo-ui-blog" target="_blank" css="">Introducing JayData And Kendo UI</ContentLink>
<ContentLink link="http://jaydata.org/blog/jaydata-kendo-ui-awesomeness" target="_blank" css="">JayData+Kendo UI =Awesomeness</ContentLink>
<ContentLink link="http://jaydata.org/categories/kendo-ui" target="_blank" css="">JayData blogs about Kendo UI</ContentLink>
</RelatedContents>
</Example>-->
<!--<Example>
<Title>Kendo UI Northwind product browser app (ENDPOINT)</Title>
<Lead><![CDATA[Populate categorized products in Kendo UI ListView from live OData service using JayData. Filter and order records with JSQL syntax and apply projection to reduce network payload. ]]></Lead>
<Description>
<![CDATA[This Kendo mobile example uses a remote Northwind database over OData.
asKendoDataSource() is a method of Queryable, so not only an EntitySet can be specified but other JayData expressions as well.
The projection on the Categories set reduces the network traffic because pictures won't be downloaded (we only display the name of the category so
pictures are not needed). Be sure to include the primary key into the map!
The filter on the Products set filters out records on the server so products that are not in stock won't be displayed.
It also sorts the products on the server side.
When KendoUI widget also filters and sorts the records (such as grid), the filtering and ordering specified at datasource definition and the filtering and ordering
specified by the KendoUI widget are combined.]]>
</Description>
<Meta-KeyWords>JayData, HTML5, Kendo UI, OData service, OData, Javascript, mobile app, Northwind, example</Meta-KeyWords>
<Meta-Description>How to use the JayData with Kendo UI? See this simple example.</Meta-Description>
<Includes>
<group name="kendoui"></group>
<script src="/examples/scripts/example/kendo_mobile_simple.js"></script>
<script type="text/javascript" src="/examples/scripts/vendor/north.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.2.710/styles/kendo.mobile.all.min.css" />
<link href="/examples/styles/examples.css" rel="stylesheet" />
</Includes>
<Image>/examples/Images/indexeddb.png</Image>
<Link>KendoUI/Prefilter</Link>
<Tags>KendoUI, OData, filter, query, projection</Tags>
<Level>300</Level>
<Suggested></Suggested>
<SupportedBrowsers>
<Browser title="Internet Explorer" name="ie" minVersion="7" />
<Browser title="Google Chrome" name="chrome"/>
<Browser title="Opera" name="opera" minVersion="11"/>
<Browser title="Safari" name="safari" minVersion="5"/>
<Browser title="Blackberry" name="blackberry" minVersion="7.0"/>
<Browser title="Windows Phone" name="wp" minVersion="8"/>
<Browser title="iOS" name="ios" minVersion="4"/>
<Browser title="Android" name="android" minVersion="2.2"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/introducing-jaydata-and-kendo-ui-kendo-ui-blog" target="_blank" css="">Introducing JayData And Kendo UI</ContentLink>
<ContentLink link="http://jaydata.org/blog/jaydata-kendo-ui-awesomeness" target="_blank" css="">JayData+Kendo UI =Awesomeness</ContentLink>
<ContentLink link="http://jaydata.org/categories/kendo-ui" target="_blank" css="">JayData blogs about Kendo UI</ContentLink>
</RelatedContents>
</Example>-->
<!--<Example>
<Title>Kendo UI Master-detail Grid (ENDPOINT)</Title>
<Lead><![CDATA[Render Kendo grids with live OData service using JayData and display products grouped by categories. This Kendo Grid example uses OData to access the Northwind service.]]></Lead>
<Description>
<![CDATA[This Kendo Grid example uses OData to access the Northwind service. Sorting, paging and filtering works on the server side but with a simple
switch they can be one the client side, too. In this example the grid is read only and the columns are manually configured.]]>
</Description>
<Meta-KeyWords>JayData, HTML5, Javascript, Kendo UI, oData, WebSQL, IndexedDB, example</Meta-KeyWords>
<Meta-Description>How to use the JayData with Kendo UI? See this simple example.</Meta-Description>
<Includes>
<group name="kendoui"></group>
<script type="text/javascript" src="/examples/scripts/vendor/north.js"></script>
</Includes>
<Image>/examples/Images/indexeddb.png</Image>
<Link>KendoUI/MasterDetails</Link>
<Tags>KendoUI, OData, filter, query, paging, sorting</Tags>
<Level>150</Level>
<Suggested></Suggested>
<SupportedBrowsers>
<Browser title="Internet Explorer" name="ie" minVersion="7" />
<Browser title="Google Chrome" name="chrome"/>
<Browser title="Opera" name="opera" minVersion="11"/>
<Browser title="Safari" name="safari" minVersion="5"/>
<Browser title="Blackberry" name="blackberry" minVersion="7.0"/>
<Browser title="Windows Phone" name="wp" minVersion="8"/>
<Browser title="iOS" name="ios" minVersion="4"/>
<Browser title="Android" name="android" minVersion="2.2"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/introducing-jaydata-and-kendo-ui-kendo-ui-blog" target="_blank" css="">Introducing JayData And Kendo UI</ContentLink>
<ContentLink link="http://jaydata.org/blog/jaydata-kendo-ui-awesomeness" target="_blank" css="">JayData+Kendo UI =Awesomeness</ContentLink>
<ContentLink link="http://jaydata.org/categories/kendo-ui" target="_blank" css="">JayData blogs about Kendo UI</ContentLink>
</RelatedContents>
</Example>-->
<!--<Example>
<Title>Kendo UI Cascading combobox (ENDPOINT)</Title>
<Lead><![CDATA[Populate cascading Kendo comboboxes with remote live OData with typed data API. This Kendo autocomplete example uses a remote Northwind database.]]></Lead>
<Description>
<![CDATA[Populate cascading Kendo comboboxes with remote live OData with typed data API. This Kendo autocomplete example uses a remote Northwind database.]]>
</Description>
<Meta-KeyWords>JayData, HTML5, Javascript, Kendo UI, OData, IndexedDB, example</Meta-KeyWords>
<Meta-Description>How to use the JayData with Kendo UI? See this simple example.</Meta-Description>
<Includes>
<group name="kendoui"></group>
<script type="text/javascript" src="/examples/scripts/vendor/north.js"></script>
</Includes>
<Image>/examples/Images/indexeddb.png</Image>
<Link>KendoUI/Cascading_Combobox</Link>
<Tags>KendoUI, OData, Northwind</Tags>
<Level>100</Level>
<Suggested></Suggested>
<SupportedBrowsers>
<Browser title="Internet Explorer" name="ie" minVersion="7" />
<Browser title="Google Chrome" name="chrome"/>
<Browser title="Opera" name="opera" minVersion="11"/>
<Browser title="Safari" name="safari" minVersion="5"/>
<Browser title="Blackberry" name="blackberry" minVersion="7.0"/>
<Browser title="Windows Phone" name="wp" minVersion="8"/>
<Browser title="iOS" name="ios" minVersion="4"/>
<Browser title="Android" name="android" minVersion="2.2"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/introducing-jaydata-and-kendo-ui-kendo-ui-blog" target="_blank" css="">Introducing JayData And Kendo UI</ContentLink>
<ContentLink link="http://jaydata.org/blog/jaydata-kendo-ui-awesomeness" target="_blank" css="">JayData+Kendo UI =Awesomeness</ContentLink>
<ContentLink link="http://jaydata.org/categories/kendo-ui" target="_blank" css="">JayData blogs about Kendo UI</ContentLink>
</RelatedContents>
</Example>-->
<!-- Knokout examples -->
<!--<Example>
<Title>Flower Shop - HTML5</Title>
<Lead><![CDATA[A simple e-shop HTML5 app created with Jaydata, JayStorm, KnockoutJS and jQuery.<br />Check out the <a href="http://www.youtube.com/watch?v=whTmPoPqHdU" target="_blank">hands on lab video!</a>]]></Lead>
<Description>
<![CDATA[With this Application you can buy your favorite flower as a gift or for your home, it's up to you! Check out our store by choosing a category! You can download the Flower shop hands on lap example source.]]>
</Description>
<Meta-KeyWords>JayData, HTML5, Javascript, Knockout.js, eshop mobile app, crossplatform, jQuery, example</Meta-KeyWords>
<Meta-Description>How to use the JayData with Kendo UI? See this mobile app example.</Meta-Description>
<Image>/examples/Images/indexeddb.png</Image>
<Link>Knockout/FlowerShop</Link>
<Tags>OData, JayStorm, Knockout, jQuery, query</Tags>
<Download>http://jaydata.codeplex.com/downloads/get/507804</Download>
<RunApplication>/examples/download/flowershop.apk</RunApplication>
<Level>200</Level>
<Suggested></Suggested>
<Includes>
<group name="gallery"></group>
<link href="/examples/styles/flowershop/mixins.css" rel="stylesheet" />
<group name="knokout"></group>
<script src="http://jaydata-cdn.s3.amazonaws.com/datajs-1.0.3-patched.js"></script>
<script src="/examples/scripts/vendor/jquery/jquery.flexslider-min.js"></script>
</Includes>
<SupportedBrowsers>
<Browser title="Internet Explorer" name="ie" minVersion="9+" />
<Browser title="Google Chrome" name="chrome" minVersion="12+"/>
<Browser title="Firefox" name="firefox" minVersion="10+"/>
<Browser title="Safari" name="safari" minVersion="4+"/>
<Browser title="Windows Phone" name="wp" minVersion="7,5+"/>
<Browser title="Blackberry" name="blackberry" minVersion="7+"/>
<Browser title="iOS" name="ios" minVersion="4+"/>
<Browser title="Android" name="android" minVersion="2.2+"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://www.youtube.com/watch?v=whTmPoPqHdU" target="_blank" css="">Flower shop hands on lab (VIDEO)</ContentLink>
<ContentLink link="http://jaydata.org/blog/how-to-use-jaydata-with-knockoutjs" target="_blank" css="">How to use JayData with Knockout.js?</ContentLink>
<ContentLink link="http://jaydata.org/categories/knockout.js" target="_blank" css="">Blogs with Knockout tag</ContentLink>
<ContentLink link="http://jaystack.com/blog/jaystorm-services-overview" target="_blank" css="">JayStorm platform overview</ContentLink>
</RelatedContents>
<GalleryImages>
<Image url="/examples/Images/gallery/flowershophtml5/flowershop_desktop_teljes.png" thumbUrl="/examples/Images/gallery/flowershophtml5/flowershop_desktop_teljes.png" alt=""></Image>
<Image url="/examples/Images/gallery/flowershophtml5/flowershop_home_desktop.png" thumbUrl="/examples/Images/gallery/flowershophtml5/flowershop_home_desktop.png" alt=""></Image>
<Image url="/examples/Images/gallery/flowershophtml5/flowershop_home_desktop_2.png" thumbUrl="/examples/Images/gallery/flowershophtml5/flowershop_home_desktop_2.png" alt=""></Image>
<Image url="/examples/Images/gallery/flowershophtml5/flowershop_home_mobile.png" thumbUrl="/examples/Images/gallery/flowershophtml5/flowershop_home_mobile.png" alt=""></Image>
<Image url="/examples/Images/gallery/flowershophtml5/flowershop_home_mobile_checkout.png" thumbUrl="/examples/Images/gallery/flowershophtml5/flowershop_home_mobile_checkout.png" alt=""></Image>
</GalleryImages>
</Example>-->
<!--<Example wide="true">
<Title>Knockout data binding (ENDPOINT)</Title>
<Lead><![CDATA[Demonstrating easy data binding using JayData and Knockout.js together. Properties of the requested entities will be observable through a single toArray call if ko.observableArray is passed as parameter.]]></Lead>
<Description>
<![CDATA[JayData examples: Knockout model binding & Observable results and entities. Demonstrating easy data binding using JayData and Knockout.js together. Properties of the requested entities will be observable through a single toArray call if ko.observableArray is passed as parameter.]]>
</Description>
<Meta-KeyWords>JayData, HTML5, Javascript, JayData providers, WebSQL, IndexedDB, example</Meta-KeyWords>
<Meta-Description>How to use the JayData with Kendo! See this simple listview example.</Meta-Description>
<Image>/examples/Images/indexeddb.png</Image>
<Link>Knockout/Northwind</Link>
<Tags>Knockout, Northwind</Tags>
<Level>100</Level>
<Suggested></Suggested>
<Includes>
<group name="knokout"></group>
<script src="/examples/scripts/example/knokout_northwind.js"></script>
</Includes>
<SupportedBrowsers>
<Browser title="Internet Explorer" name="ie" minVersion="9+" />
<Browser title="Google Chrome" name="chrome" minVersion="12+"/>
<Browser title="Firefox" name="firefox" minVersion="10+"/>
<Browser title="Safari" name="safari" minVersion="4+"/>
<Browser title="Windows Phone" name="wp" minVersion="7,5+"/>
<Browser title="Blackberry" name="blackberry" minVersion="7+"/>
<Browser title="iOS" name="ios" minVersion="4+"/>
<Browser title="Android" name="android" minVersion="2.2+"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/how-to-use-jaydata-with-knockoutjs" target="_blank" css="">How to use JayData with Knockout.js?</ContentLink>
<ContentLink link="http://jaydata.org/categories/knockout.js" target="_blank" css="">Blogs with Knockout tag</ContentLink>
<ContentLink link="http://jaystack.com/blog/jaystorm-services-overview" target="_blank" css="">JayStorm platform overview</ContentLink>
</RelatedContents>
</Example>-->
<!--<Example wide="true">
<Title>Knockout Dynamic Queries (ENDPOINT)</Title>
<Lead><![CDATA[With the JayData module for Knockout.js you can achieve fully dynamic queries. Where you use an observable as a query parameter the query will be automatically executed when the observable property changes.]]></Lead>
<Description>
<![CDATA[With the JayData module for Knockout.js you can achieve fully dynamic queries. Where you use an observable as a query parameter the query will be automatically executed when the observable property changes..]]>
</Description>
<Meta-KeyWords>JayData, JayData modules, HTML5, Javascript, JayData providers, Knockout.js support, example</Meta-KeyWords>
<Meta-Description>How to use the JayData with Knockout.js? See this simple listview example.</Meta-Description>
<Image>/examples/Images/indexeddb.png</Image>
<Link>Knockout/DynamicQueryNorthwind</Link>
<Tags>Knockout, list, query</Tags>
<Level>100</Level>
<Suggested></Suggested>
<Includes>
<group name="knokout"></group>
<script src="/examples/scripts/example/knokout_northwind.js"></script>
</Includes>
<SupportedBrowsers>
<Browser title="Internet Explorer" name="ie" minVersion="9+" />
<Browser title="Google Chrome" name="chrome" minVersion="12+"/>
<Browser title="Firefox" name="firefox" minVersion="10+"/>
<Browser title="Safari" name="safari" minVersion="4+"/>
<Browser title="Windows Phone" name="wp" minVersion="7,5+"/>
<Browser title="Blackberry" name="blackberry" minVersion="7+"/>
<Browser title="iOS" name="ios" minVersion="4+"/>
<Browser title="Android" name="android" minVersion="2.2+"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/how-to-use-jaydata-with-knockoutjs" target="_blank" css="">How to use JayData with Knockout.js?</ContentLink>
<ContentLink link="http://jaydata.org/categories/knockout.js" target="_blank" css="">Blogs with Knockout tag</ContentLink>
<ContentLink link="http://jaystack.com/blog/jaystorm-services-overview" target="_blank" css="">JayStorm platform overview</ContentLink>
</RelatedContents>
</Example>-->
<!--<Example wide="true">
<Title>Knockout Dynamic Queries filter (ENDPOINT)</Title>
<Lead><![CDATA[A Northwind example demonstrating filter features using the dynmaic queries of the JayData Knockout module. The application still remains only a few lines of code.]]></Lead>
<Description>
<![CDATA[A Northwind example demonstrating filter features using the dynmaic queries of the JayData Knockout module. The application still remains only a few lines of code.]]>
</Description>
<Meta-KeyWords>JayData, JayData modules, HTML5, Javascript, JayData providers, Knockout.js support, example</Meta-KeyWords>
<Meta-Description>How to use the JayData with Knockout.js? See this simple listview example.</Meta-Description>
<Image>/examples/Images/indexeddb.png</Image>
<Link>Knockout/DynamicQueryFilterNorthwind</Link>
<Tags>Knockout, filter, query</Tags>
<Level>160</Level>
<Suggested></Suggested>
<Includes>
<group name="knokout"></group>
<script src="/examples/scripts/example/knokout_northwind.js"></script>
</Includes>
<SupportedBrowsers>
<Browser title="Internet Explorer" name="ie" minVersion="9+" />
<Browser title="Google Chrome" name="chrome" minVersion="12+"/>
<Browser title="Firefox" name="firefox" minVersion="10+"/>
<Browser title="Safari" name="safari" minVersion="4+"/>
<Browser title="Windows Phone" name="wp" minVersion="7,5+"/>
<Browser title="Blackberry" name="blackberry" minVersion="7+"/>
<Browser title="iOS" name="ios" minVersion="4+"/>
<Browser title="Android" name="android" minVersion="2.2+"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/how-to-use-jaydata-with-knockoutjs" target="_blank" css="">How to use JayData with Knockout.js?</ContentLink>
<ContentLink link="http://jaydata.org/categories/knockout.js" target="_blank" css="">Blogs with Knockout tag</ContentLink>
<ContentLink link="http://jaystack.com/blog/jaystorm-services-overview" target="_blank" css="">JayStorm platform overview</ContentLink>
</RelatedContents>
</Example>-->
<!-- YQL examples -->
<!--<Example>
<Title>YQL html search with JayData</Title>
<Lead><![CDATA[ How can you use the JayData YQL provider to searching simple html pages? With the Yahoo Query Language (YQL) you can query the content of the world wide web.]]></Lead>
<Description>
<![CDATA[How to get the top news from BBC ? With the Yahoo Query Language (YQL) you can query the content of the world wide web. News and RSS feeds. Almost everything is queryable through the YQL provider.]]>
</Description>
<Image>/examples/Images/yqlnagy.png</Image>
<Link>YQL/YQLhtml</Link>
<Tags>YQL, query</Tags>
<Level>100</Level>
<Suggested></Suggested>
--><!--<JsFiddle>http://jsfiddle.net/JayData/F4Hda/</JsFiddle>--><!--
<Meta-KeyWords>JayData, HTML5, Javascript, JayData providers, YQL, YQL html search example</Meta-KeyWords>
<Meta-Description>How can you use the JayData YQL provider to searching simple html pages.</Meta-Description>
<Includes>
<group name="yql"></group>
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>
<script type="text/javascript" src="http://include.jaydata.org/jaydatamodules/deferred.js"></script>
</Includes>
<SupportedBrowsers>
<Browser title="Google Chrome" name="chrome" minVersion="12+" />
<Browser title="Firefox" name="firefox" minVersion="10+"/>
<Browser title="Safari" name="safari" minVersion="4+"/>
<Browser title="Blackberry" name="blackberry" minVersion="7+"/>
<Browser title="Windows Phone" name="wp" minVersion="7.5+"/>
<Browser title="iOS" name="ios" minVersion="4+"/>
<Browser title="Android" name="android" minVersion="2.2+"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/the-beginners-guide-to-jaydata" target="_blank" css="">The Beginners Guide to JayData</ContentLink>
<ContentLink link="http://jaydata.org/blog/how-to-create-a-synchronized-online-offline-data-application-with-javascript-and-jaydata" target="_blank" css="">How to create a synchronized Online/Offline data application with EntityFramework, JavaScript and JayData</ContentLink>
<ContentLink link="http://jaystack.com/blog/creating-your-first-javascript-data-service" target="_blank" css="">Creating your first JavaScript Data Service</ContentLink>
</RelatedContents>
</Example>-->
<!--<Example>
<Title>YQL Geo-based autocomplete</Title>
<Lead><![CDATA[YQL Geo based auto-complete example. With the Yahoo Query Language you can query Geo data too. Now, we show you how.]]></Lead>
<Description>
<![CDATA[YQL Geo based auto-complete example. With the Yahoo Query Language (YQL) you can query the content of the world wide web.]]>
</Description>
<Image>/examples/Images/yqlnagy.png</Image>
<Link>YQL/YQLGeo</Link>
<Tags>YQL, Geo, query</Tags>
<Level>170</Level>
<Suggested></Suggested>
<Meta-KeyWords>JayData, HTML5, Javascript, JayData providers, YQL, YQL geo data, example</Meta-KeyWords>
<Meta-Description>Set auto-complete source with JavaScript Language Query (JSLQ). YQL geodata autocomplete</Meta-Description>
<Includes>
<group name="yql"></group>
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<script type="text/javascript" src="http://include.jaydata.org/jaydatamodules/deferred.js"></script>
<script type="text/javascript" src="http://include.jaydata.org/jaydatamodules/template.js"></script>
<link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />
</Includes>
<SupportedBrowsers>
<Browser title="Google Chrome" name="chrome" minVersion="12+" />
<Browser title="Firefox" name="firefox" minVersion="10+"/>
<Browser title="Safari" name="safari" minVersion="4+"/>
<Browser title="Blackberry" name="blackberry" minVersion="7+"/>
<Browser title="Windows Phone" name="wp" minVersion="7.5+"/>
<Browser title="iOS" name="ios" minVersion="4"/>
<Browser title="Android" name="android" minVersion="2.2+"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/the-beginners-guide-to-jaydata" target="_blank" css="">The Beginners Guide to JayData</ContentLink>
<ContentLink link="http://jaydata.org/blog/how-to-create-a-synchronized-online-offline-data-application-with-javascript-and-jaydata" target="_blank" css="">How to create a synchronized Online/Offline data application with EntityFramework, JavaScript and JayData</ContentLink>
<ContentLink link="http://jaystack.com/blog/creating-your-first-javascript-data-service" target="_blank" css="">Creating your first JavaScript Data Service</ContentLink>
</RelatedContents>
</Example>-->
<!--<Example>
<Title>YQL simple RSS reader (???)</Title>
<Lead><![CDATA[YQL RSS reader with filter. Reading from RSS where Title contains JayData. This example show you how you can querying the RSS content with JayData.]]></Lead>
<Description>
<![CDATA[YQL RSS reader with filter. Reading from RSS where Title contains JayData. This example show you how you can querying the RSS content with JayData.]]>
</Description>
<Image>/examples/Images/yqlnagy.png</Image>
<Link>YQL/YQLRss</Link>
<Tags>YQL, filter, query, RSS</Tags>
<Level>180</Level>
<Suggested></Suggested>
--><!--<JsFiddle>http://jsfiddle.net/JayData/F4Hda/</JsFiddle>--><!--
<Meta-KeyWords>JayData, HTML5, Javascript, JayData providers, JayData YQL provider, YQL, RSS, YQL RSS, example</Meta-KeyWords>
<Meta-Description>This example show you how you can querying the RSS content with JayData.</Meta-Description>
<Includes>
<group name="yql"></group>
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<script type="text/javascript" src="http://include.jaydata.org/1.5.5/jaydatamodules/template.js"></script>
<link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />
</Includes>
<SupportedBrowsers>
<Browser title="Google Chrome" name="chrome" minVersion="12+" />
<Browser title="Firefox" name="firefox" minVersion="10+"/>
<Browser title="Safari" name="safari" minVersion="4+"/>
<Browser title="Blackberry" name="blackberry" minVersion="7+"/>
<Browser title="Windows Phone" name="wp" minVersion="7.5+"/>
<Browser title="iOS" name="ios" minVersion="4"/>
<Browser title="Android" name="android" minVersion="2.2+"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/the-beginners-guide-to-jaydata" target="_blank" css="">The Beginners Guide to JayData</ContentLink>
<ContentLink link="http://jaydata.org/blog/how-to-create-a-synchronized-online-offline-data-application-with-javascript-and-jaydata" target="_blank" css="">How to create a synchronized Online/Offline data application with EntityFramework, JavaScript and JayData</ContentLink>
<ContentLink link="http://jaystack.com/blog/creating-your-first-javascript-data-service" target="_blank" css="">Creating your first JavaScript Data Service</ContentLink>
</RelatedContents>
</Example>
<Example>
<Title>YQL advanced RSS reader (???)</Title>
<Lead><![CDATA[How to reading from RSS with Category where Title contains JayData? This example show you how you can querying the RSS content with JayData.]]></Lead>
<Description>
<![CDATA[How to reading from RSS with Category where Title contains JayData? This example show you how you can querying the RSS content with JayData.]]>
</Description>
<Image>/examples/Images/yqlnagy.png</Image>
<Link>YQL/YQLRssAdvanced</Link>
<Tags>YQL, query, filter, RSS</Tags>
<Level>200</Level>
<Suggested></Suggested>
--><!--<JsFiddle>http://jsfiddle.net/JayData/F4Hda/</JsFiddle>--><!--
<Meta-KeyWords>JayData, HTML5, Javascript, JayData providers, JayData YQL provider, YQL, RSS, example</Meta-KeyWords>
<Meta-Description>JayData Example: how to reading from RSS with Category where Title contains JayData.</Meta-Description>
<Includes>
<group name="yql"></group>
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<script type="text/javascript" src="http://include.jaydata.org/1.5.5/jaydatamodules/template.js"></script>
<link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />
</Includes>
<SupportedBrowsers>
<Browser title="Google Chrome" name="chrome" minVersion="12+" />
<Browser title="Firefox" name="firefox" minVersion="10+"/>
<Browser title="Safari" name="safari" minVersion="4+"/>
<Browser title="Blackberry" name="blackberry" minVersion="7+"/>
<Browser title="Windows Phone" name="wp" minVersion="7.5+"/>
<Browser title="iOS" name="ios" minVersion="4"/>
<Browser title="Android" name="android" minVersion="2.2+"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/the-beginners-guide-to-jaydata" target="_blank" css="">The Beginners Guide to JayData</ContentLink>
<ContentLink link="http://jaydata.org/blog/how-to-create-a-synchronized-online-offline-data-application-with-javascript-and-jaydata" target="_blank" css="">How to create a synchronized Online/Offline data application with EntityFramework, JavaScript and JayData</ContentLink>
<ContentLink link="http://jaystack.com/blog/creating-your-first-javascript-data-service" target="_blank" css="">Creating your first JavaScript Data Service</ContentLink>
</RelatedContents>
</Example>
<Example>
<Title>YQL feed reader (???)</Title>
<Lead><![CDATA[How can you use JayData to reading feed data? With the Yahoo Query Language (YQL) you can query the content of the world wide web.]]></Lead>
<Description>
<![CDATA[How can you use JayData to reading feed data? With the Yahoo Query Language (YQL) you can query the content of the world wide web. News and feeds, pure HTML content, almost everything is queryable through the YQL provider.]]>
</Description>
<Image>/examples/Images/yqlnagy.png</Image>
<Link>YQL/YQLFeed</Link>
<Tags>YQL, query, RSS</Tags>
<Level>100</Level>
<Suggested></Suggested>
--><!--<JsFiddle>http://jsfiddle.net/JayData/F4Hda/</JsFiddle>--><!--
<Meta-KeyWords>JayData, HTML5, Javascript, JayData providers, RSS, YQL, Yahoo Query Language, example</Meta-KeyWords>
<Meta-Description>How can you use JayData to reading feed data. With the Yahoo Query Language (YQL) you can query the content of the world wide web.</Meta-Description>
<Includes>
<group name="yql"></group>
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<script type="text/javascript" src="http://include.jaydata.org/1.5.5/jaydatamodules/template.js"></script>
<link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />
</Includes>
<SupportedBrowsers>
<Browser title="Google Chrome" name="chrome" minVersion="12+" />
<Browser title="Firefox" name="firefox" minVersion="10+"/>
<Browser title="Safari" name="safari" minVersion="4+"/>
<Browser title="Blackberry" name="blackberry" minVersion="7+"/>
<Browser title="Windows Phone" name="wp" minVersion="7.5+"/>
<Browser title="iOS" name="ios" minVersion="4"/>
<Browser title="Android" name="android" minVersion="2.2+"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/the-beginners-guide-to-jaydata" target="_blank" css="">The Beginners Guide to JayData</ContentLink>
<ContentLink link="http://jaydata.org/blog/how-to-create-a-synchronized-online-offline-data-application-with-javascript-and-jaydata" target="_blank" css="">How to create a synchronized Online/Offline data application with EntityFramework, JavaScript and JayData</ContentLink>
<ContentLink link="http://jaystack.com/blog/creating-your-first-javascript-data-service" target="_blank" css="">Creating your first JavaScript Data Service</ContentLink>
</RelatedContents>
</Example>-->
<!--Facebook examples-->
<!--<Example>
<Title>Facebook provider example</Title>
<Lead>
<![CDATA[This example shows you how can you get the current user's public personal data through FQL api with JayData?]]>
</Lead>
<Description>
<![CDATA[This example show you how can you get the current user's public personal data through FQL api with JayData?]]>
</Description>
<Image>/examples/Images/facebook.png</Image>
<Link>Facebook/Provider</Link>
<Tags>facebook, query</Tags>
<Level>120</Level>
<Suggested></Suggested>
<Meta-KeyWords>JayData, HTML5, Javascript, FQL, Facebook, JayData providers, facebook provider, FQL api</Meta-KeyWords>
<Meta-Description>This example shows you: How can you get the current user's public personal data through FQL api.</Meta-Description>
<Includes>
<group name="facebook"></group>
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<script type="text/javascript" src="http://include.jaydata.org/jaydatamodules/deferred.js"></script>
<script type="text/javascript" src="http://include.jaydata.org/jaydatamodules/template.js"></script>
<link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />
</Includes>
<SupportedBrowsers>
<Browser title="Google Chrome" name="chrome" minVersion="12+"/>
<Browser title="Opera" name="opera" minVersion="11"/>
<Browser title="Firefox" name="firefox" minVersion="10+"/>
<Browser title="Safari" name="safari" minVersion="4+"/>
<Browser title="Blackberry" name="blackberry" minVersion="7.0+"/>
<Browser title="Windows Phone" name="wp" minVersion="7.5+"/>
<Browser title="iOS" name="ios" minVersion="4+"/>
<Browser title="Android" name="android" minVersion="2.2+"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/the-beginners-guide-to-jaydata" target="_blank" css="">The Beginners Guide to JayData</ContentLink>
<ContentLink link="http://jaystack.com/blog/building-a-facebook-canvas-application-using-jaystorm" target="_blank" css="">Building a Facebook Canvas application using JayStorm</ContentLink>
<ContentLink link="http://jaystack.com/blog/creating-your-first-javascript-data-service" target="_blank" css="">Creating your first JavaScript Data Service</ContentLink>
</RelatedContents>
</Example>
<Example>
<Title>Facebook friend list example</Title>
<Lead>
<![CDATA[This example shows you how can you get the current user's friends list through FQL api with JayData.]]>
</Lead>
<Description>
<![CDATA[This example shows you how can you get the current user's friends list through FQL api with JayData.]]>
</Description>
<Meta-KeyWords>JayData, HTML5, Javascript, FQL, Facebook, JayData providers, FQL api, Facebook provider</Meta-KeyWords>
<Meta-Description>This example show you: How can You get the current user's friends list through FQL api.</Meta-Description>
<Image>/examples/Images/facebook.png</Image>
<Link>Facebook/Friends</Link>
<Tags>facebook, query</Tags>
<Level>120</Level>
<Includes>
<group name="facebook"></group>
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<script type="text/javascript" src="http://include.jaydata.org/jaydatamodules/deferred.js"></script>
<script type="text/javascript" src="http://include.jaydata.org/jaydatamodules/template.js"></script>
<link rel="stylesheet" type="text/css" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />
</Includes>
<SupportedBrowsers>
<Browser title="Google Chrome" name="chrome" minVersion="12+"/>
<Browser title="Opera" name="opera" minVersion="11"/>
<Browser title="Firefox" name="firefox" minVersion="10+"/>
<Browser title="Safari" name="safari" minVersion="4+"/>
<Browser title="Blackberry" name="blackberry" minVersion="7.0+"/>
<Browser title="Windows Phone" name="wp" minVersion="7.5+"/>
<Browser title="iOS" name="ios" minVersion="4+"/>
<Browser title="Android" name="android" minVersion="2.2+"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/the-beginners-guide-to-jaydata" target="_blank" css="">The Beginners Guide to JayData</ContentLink>
<ContentLink link="http://jaystack.com/blog/creating-your-first-javascript-data-service" target="_blank" css="">Creating your first JavaScript Data Service</ContentLink>
<ContentLink link="http://jaystack.com/blog/building-a-facebook-canvas-application-using-jaystorm" target="_blank" css="">Building a Facebook Canvas application using JayStorm</ContentLink>
</RelatedContents>
</Example>-->
<!--Planets, Netflix, Newsreader, Advanced rss, etc. examples-->
<Example>
<Title>Planets - HTML5 app</Title>
<Lead>
<![CDATA[Local database management through the WebSQL provider, in a fancy representative HTML5 app. It uses new features of CSS3 like keyframe-animations, transitions and transformations.]]>
</Lead>
<Description>
<![CDATA[In this sample application, the planets are just plain DIV elements, with tricky, but simple CSS3 styling on them. A circle can be easily made by using the border-radius property and some fancy looking colorized box-shadow style applied, just to be more than plain filled circles. <br/>The rotating animation of the planets is simple with the use of the native keyframe-animation CSS3 feature of modern browser engines like WebKit. <br/>Stacking the DIVs together, we can create a simple representation of complex solar systems.]]>
</Description>
<Image>/examples/Images/planetsnagy.png</Image>
<Link>General/Planets</Link>
<Tags>WebSQL, SQLite, CRUD, HTML5 localStorage, query</Tags>
<Download>/examples/Planets/planet.js</Download>
<RunApplication>/examples/Planets/index.html</RunApplication>
<Includes>
<group name="gallery"></group>
</Includes>
<GalleryImages>
<Image url="/examples/Images/gallery/planets/planets_animation.png" thumbUrl="/examples/Images/gallery/planets/planets_animation.png" alt="Planets app"></Image>
<Image url="/examples/Images/gallery/planets/planets_list.png" thumbUrl="/examples/Images/gallery/planets/planets_list.png" alt="Planets list"></Image>
<Image url="/examples/Images/gallery/planets/edit_planet_list.png" thumbUrl="/examples/Images/gallery/planets/edit_planet_list.png" alt="Planets app - create new planet"></Image>
</GalleryImages>
<Level>300</Level>
<Suggested></Suggested>
<Meta-KeyWords>JayData, JayData providers, OData, Crossplatform, HTML5, WebSQL, SQLite, Javascript, HTML5, tutorial, example</Meta-KeyWords>
<Meta-Description>How to create a HTML5 app with JayData? See this simple example.</Meta-Description>
<SupportedBrowsers>
<Browser title="Google Chrome" name="chrome"/>
<Browser title="Safari" name="safari" minVersion="5"/>
<Browser title="Blackberry" name="blackberry" minVersion="6+"/>
<Browser title="Windows Phone" name="wp" minVersion="8+"/>
<Browser title="iOS" name="ios" minVersion="4+"/>
<Browser title="Android" name="android" minVersion="2.3+"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/planets-sample-application-using-jaydata%E2%80%99s-websql-provider" target="_blank" css="">Planets: sample application using JayData’s WebSQL provider</ContentLink>
<ContentLink link="http://jaydata.org/Tags/WebSQL" target="_blank" css="">JayData blogs about WebSQL provider</ContentLink>
<ContentLink link="http://jaystack.com/blog/jaydata-SQlite-pro-provider" target="_blank" css="">JayData SQLite Pro provider</ContentLink>
<ContentLink link="http://jaydata.org/blog/database-indices" target="_blank" css="">Database indices with indexedDb and WebSQL/SQLite</ContentLink>
</RelatedContents>
</Example>
<!--<Example wide="true">
<Title>Netflix movies-Sencha Touch 2</Title>
<Lead><![CDATA[Netflix movies demo application using JayData and Sencha Touch 2 together. Query the Netflix OData service using JayData and use Sencha Touch 2 for the UI.]]></Lead>
<Description>
<![CDATA[<strong>UPDATE:</strong><i>Netflix stopped the OData endpoint.</i> Netflix movies demo application using JayData and Sencha Touch 2 together. JayData is perfect for data while Sencha is great in the UI. Query the Netflix OData service using JayData and use Sencha Touch 2 for the UI.]]>
</Description>
<Image>/examples/Images/indexeddb.png</Image>
<Link>SenchaUI/Netflix</Link>
<Tags>SenchaTouch, OData, list, query</Tags>
<Includes>
<group name="gallery"></group>
</Includes>
<GalleryImages>
<Image url="/examples/Images/gallery/sencha/sencha_examp_1_full.jpg" thumbUrl="/examples/Images/gallery/sencha/sencha_examp_1_thumb.jpg" alt="NetFlix movie list"></Image>
<Image url="/examples/Images/gallery/sencha/sencha_examp_2_full.jpg" thumbUrl="/examples/Images/gallery/sencha/sencha_examp_2_thumb.jpg" alt="NetFlix movie list - Mobile view"></Image>
<Image url="/examples/Images/gallery/sencha/sencha_examp_3_full.jpg" thumbUrl="/examples/Images/gallery/sencha/sencha_examp_3_thumb.jpg" alt="NetFlix movie detail"></Image>
</GalleryImages>
<Level>200</Level>
<Suggested></Suggested>
<Download>/examples/downloads/netflix.apk</Download>
<RunApplication>/examples/Sencha/app.html</RunApplication>
<Includes>
<group name="gallery"></group>
</Includes>
<Meta-KeyWords>JayData, OData, Sencha Touch, Crossplatform, HTML5, Netflix, Javascript, HTML5, tutorial, example</Meta-KeyWords>
<Meta-Description>How to create a movie app with JayData and Sencha Touch? See this simple example.</Meta-Description>
<SupportedBrowsers>
<Browser title="Google Chrome" name="chrome" minVersion="12+"/>
<Browser title="Safari" name="safari" minVersion="4+"/>
<Browser title="iOS" name="ios" minVersion="4+"/>
<Browser title="Android" name="android" minVersion="2.3+"/>
</SupportedBrowsers>
<RelatedContents>
<ContentLink link="http://jaydata.org/blog/netflix-sencha-touch-2-app-with-jaydata" target="_blank" css="">Netflix Sencha Touch 2 app with JayData</ContentLink>
<ContentLink link="http://jaydata.org/categories/odata" target="_blank" css="">JayData blogs about OData</ContentLink>
<ContentLink link="http://jaydata.org/blog/install-your-own-odata-server-with-nodejs-and-mongodb" target="_blank" css="">Install your own oData server with nodejs and MongoDB</ContentLink>
</RelatedContents>
</Example>-->
<!--<Example>
<Title>Newsreader CRUD (ENDPOINT)</Title>
<Lead>
<![CDATA[CRUD (Create-Read-Update-Delete) example using OData provider. Managing categories, articles, tags newsreader like way.]]>
</Lead>
<Description>
<![CDATA[CRUD (Create-Read-Update-Delete) example using OData provider. Managing categories, articles, tags newsreader like way. The UI is utilizing Twitter's Bootstrap and jQuery's template engine.]]>
</Description>
<Image>/examples/Images/newsreadernagy.png</Image>
<Link>General/NewsReader</Link>
<Tags>OData, jQuery, CRUD, filter, query</Tags>
<Level>200</Level>
<Suggested></Suggested>
<Download>http://jaydata.org/examples/NewsReader/js/NewsReaderApp.js</Download>
<Meta-KeyWords>JayData, jQuery, Crossplatform, HTML5 CRUD, OData, Javascript, HTML5, tutorial, example</Meta-KeyWords>
<Meta-Description>How to create a Newsreader with JayData? See this simple CRUD example.</Meta-Description>
<RunApplication>/examples/NewsReader/index.html</RunApplication>
<SupportedBrowsers>
<Browser title="Google Chrome" name="chrome"/>
<Browser title="Opera" name="opera" minVersion="11"/>
<Browser title="Safari" name="safari" minVersion="5"/>
<Browser title="Blackberry" name="blackberry" minVersion="7.0"/>
<Browser title="Windows Phone" name="wp" minVersion="8"/>
<Browser title="iOS" name="ios" minVersion="4"/>
<Browser title="Android" name="android" minVersion="2.2"/>
</SupportedBrowsers>
<RelatedContents>