forked from ariatemplates/documentation-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
992 lines (992 loc) · 34.7 KB
/
manifest.json
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
[
{
"path": "samples.features.autoselect.AutoSelect",
"title": "AutoSelect Feature",
"categories": "Features/Autoselect",
"desc": "This sample shows how the autoselect works for a specific input widget (TextField, NumberField)."
},
{
"path": "samples.features.prefill.basic.PrefillSample",
"title": "Basic Prefill Feature",
"categories": "Features/Prefill",
"desc": "It shows the basic prefill feature applied to TextInput-based widgets."
},
{
"path": "samples.features.prefill.usecase.PrefillSample",
"title": "Reservation flow example with prefill",
"categories": "Features/Prefill",
"desc": "It shows the basic prefill feature used in a specific use case like the reservation of a multiple segment trip."
},
{
"path": "samples.features.refresh.TemplateRefresh",
"title": "Refresh Feature",
"categories": "Features/Refresh",
"desc": "It demonstrate refreshing a whole template or individual parts of it"
},
{
"path": "samples.html.custom.gallery.Images",
"title": "Image Gallery",
"categories": "Widgets/Custom",
"desc": "It shows an example of an image gallery."
},
{
"path": "samples.intro.SgtGreeters",
"title": "Hello world example",
"categories": "Templates",
"desc": "It shows a very basic sample to display stuff with aria templates."
},
{
"path": "samples.modules.standard.MyView",
"title": "Controller Case Study",
"categories": "Modules",
"desc": "It shows how to use a controller with a template."
},
{
"path": "samples.pageEngine.PageEngineRedirect",
"title": "Page Engine",
"categories": "Page engine",
"desc": "It shows a very basic sample to demonstrate the page engine."
},
{
"path": "samples.templates.cdata.CDATATemplate",
"title": "Code sample display with CDATA - Sample",
"categories": "Templates",
"desc": "This is to demonstrate how to display code sample using CDATA"
},
{
"path": "samples.templates.cssTemplates.MainTemplate",
"title": "CSS templates",
"categories": "Templates/CssTemplates",
"desc": "This sample shows how the CSS Templates work, giving some different styles to elements."
},
{
"path": "samples.templates.domInteractions.focushandling.MainTemplate",
"title": "Focus handling",
"categories": "Templates/Dom",
"desc": "It shows how the focus handling works, using two different subtemplates."
},
{
"path": "samples.templates.domInteractions.focushandling.templateAPI.APIMainTemplate",
"title": "Focus handling for a template",
"categories": "Templates/Dom",
"desc": "It shows how the focus can be returned to the same element in a template after that template has been refreshed."
},
{
"path": "samples.templates.domInteractions.processingIndicator.Sample",
"title": "Processing indicators",
"categories": "Templates/Dom",
"desc": "It shows how the processing indicator works, using it with different sections and with the whole page."
},
{
"path": "samples.templates.htmltemplate.SimpleTemplate",
"title": "Basic HTML Template",
"categories": "Templates/Htmltemplate",
"desc": "This is demonstrate a basic HTML template"
},
{
"path": "samples.templates.i18n.LocalizedTemplate",
"title": "Localization and internazionalization (18n)",
"categories": "Templates/I18n",
"desc": "It shows how the Localization works in aria templates."
},
{
"path": "samples.templates.keyboardnavigation.applicationLevelKeyMap.KeyMap",
"title": "Keymaps assigned at application level",
"categories": "Templates/Keyboard navigation",
"desc": "It shows how a Key Map defined at global level works, using different sections."
},
{
"path": "samples.templates.keyboardnavigation.bubbleKeyMap.KeyMap",
"title": "Keyboard event bubble sample",
"categories": "Templates/Keyboard navigation",
"desc": "It shows how to propagate a Key Map between sections."
},
{
"path": "samples.templates.keyboardnavigation.sectionkeyMap.KeyMap",
"title": "Keymaps at section level",
"categories": "Templates/Keyboard navigation",
"desc": "It shows the KeyMap functionality with a section, mapping the F3 key."
},
{
"path": "samples.templates.keyboardnavigation.subTemplate.MainTemplate",
"title": "Tab Navigation demo in mutliple Template",
"categories": "Templates/Keyboard navigation",
"desc": "It shows how Tab Navigation works in a template with subtemplates."
},
{
"path": "samples.templates.keyboardnavigation.tableNavigation.TableNavigation",
"title": "Table Navigation",
"categories": "Templates/Keyboard navigation",
"desc": "It shows a Table Navigation using a table and some widgets."
},
{
"path": "samples.templates.keyboardnavigation.tableNavigationFocus.TableNavigationMultiFocusableItem",
"title": "Table Navigation with multiple focusable item",
"categories": "Templates/Keyboard navigation",
"desc": "It shows a Table Navigation using a table with multiple focusable items."
},
{
"path": "samples.templates.keyboardnavigation.tableNavigationInherit.TableNavInherit",
"title": "Subsections inherit the behavior of their parent section",
"categories": "Templates/Keyboard navigation",
"desc": "It shows a Table Navigation with focusable items and a subsection that inherits the tab navigation."
},
{
"path": "samples.templates.keyboardnavigation.tabnavigation.TabNavigation",
"title": "Tab Navigation",
"categories": "Templates/Keyboard navigation",
"desc": "It shows how the Tab Navigation works in aria templates."
},
{
"path": "samples.templates.keyboardnavigation.wildcardKeyMap.KeyMap",
"title": "Wildcard character in a keymap",
"categories": "Templates/Keyboard navigation",
"desc": "It shows how to use the wildcard character in a Key Map with different sections."
},
{
"path": "samples.templates.macros.simpleMacro.MyTemplate",
"title": "Simple Macro Usage",
"categories": "Templates/Macros",
"desc": "It shows how to use Macro Libraries in aria templates."
},
{
"path": "samples.templates.modifiers.ModifiersTemplate",
"title": "Modifiers template example",
"categories": "Templates/Modifiers",
"desc": "This is to demonstrate how to modify data to display in a template"
},
{
"path": "samples.templates.refresh.automatic.AutomaticRefresh",
"title": "Automatic Refresh",
"categories": "Templates/Refresh",
"desc": "It shows how the Automatic Refresh works in aria templates."
},
{
"path": "samples.templates.refresh.full.FullRefresh",
"title": "Full Refresh",
"categories": "Templates/Refresh",
"desc": "It shows the manual full template refresh in aria templates."
},
{
"path": "samples.templates.refresh.partial.PartialRefresh",
"title": "Partial Refresh",
"categories": "Templates/Refresh",
"desc": "It shows the manual partial template refresh in aria templates"
},
{
"path": "samples.templates.refresh.repeater.Repeater",
"title": "Repeater",
"categories": "Templates/Refresh",
"desc": "It shows how the Repeater statement works, creating refreshable sections."
},
{
"path": "samples.templates.refresh.stopresume.StopResume",
"title": "Stop/Resume refreshes",
"categories": "Templates/Refresh",
"desc": "It shows how the stop and resume refresh works in aria templates."
},
{
"path": "samples.templates.repeater.RepeaterStepOne",
"title": "Repeater Sample",
"categories": "Templates/Repeater",
"desc": "It shows how to use the repeater statement with an array."
},
{
"path": "samples.templates.templateScripts.clickhandler.ClickSample",
"title": "Click handler",
"categories": "Templates/Template scripts",
"desc": "It shows how the Click handler works."
},
{
"path": "samples.templates.tplinheritance.step1.ChildTemplate",
"title": "Macro inheritance",
"categories": "Templates/Inheritance",
"desc": "This sample shows the inheritance between macros."
},
{
"path": "samples.templates.tplinheritance.step2.ChildTemplate",
"title": "Script methods inheritance",
"categories": "Templates/Inheritance",
"desc": "This sample shows the inheritance between script methods."
},
{
"path": "samples.templates.tplinheritance.step3.ChildTemplate",
"title": "Macro libraries inheritance",
"categories": "Templates/Inheritance",
"desc": "This sample shows the inheritance between macro libraries."
},
{
"path": "samples.templates.tplinheritance.step4.SecondChildTemplate",
"title": "CSS inheritance",
"categories": "Templates/Inheritance",
"desc": "This sample shows the CSS inheritance."
},
{
"path": "samples.templates.tplinheritance.step5.FirstChildTemplate",
"title": "Overriding CSS",
"categories": "Templates/Inheritance",
"desc": "This sample shows how to override the CSS in a child template."
},
{
"path": "samples.templates.views.filtering.FilterTemplate",
"title": "Filtering data with views",
"categories": "Templates/Views",
"desc": "It shows how the View class handle the filtering operation."
},
{
"path": "samples.templates.views.pagination.PagingTemplate",
"title": "Paginating data with views",
"categories": "Templates/Views",
"desc": "It shows how the View class handle the paginating operation."
},
{
"path": "samples.templates.views.ViewTemplate",
"title": "Sorting, filtering & paginating data with views",
"categories": "Templates/Views",
"desc": "It shows all the different operations (filtering, sorting and paginating) applied to the View class."
},
{
"path": "samples.templates.views.sorting.SortingTemplate",
"title": "Sorting data with views",
"categories": "Templates/Views",
"desc": "It shows how the View class handle the sorting operation."
},
{
"path": "samples.utils.autoresize.AutoresizeTemplate",
"title": "Auto resize",
"categories": "Utils/Autoresize",
"desc": "It shows how content can be automatically resized when the browser is resized."
},
{
"path": "samples.utils.css.animations.callbacks.Animations",
"title": "Callbacks",
"categories": "Utils/Animations",
"desc": "It shows how to use an animation with a callback"
},
{
"path": "samples.utils.css.animations.complex.Animations",
"title": "Complex scenarios",
"categories": "Utils/Animations",
"desc": "This is a complex example of animations"
},
{
"path": "samples.utils.css.animations.easing1.Animations",
"title": "Easing functions: ease-in-out",
"categories": "Utils/Animations",
"desc": "Example of the \"ease-in-out\" built-in."
},
{
"path": "samples.utils.css.animations.easing2.Animations",
"title": "Custom easing function: Math.pow(x, 4)",
"categories": "Utils/Animations",
"desc": "It shows how to set up a custom easing fucntion."
},
{
"path": "samples.utils.css.animations.multiple.Animations",
"title": "Multiple concurrent animations",
"categories": "Utils/Animations",
"desc": "It shows how to animate several properties with one single instruction."
},
{
"path": "samples.utils.css.animations.queue1.Animations",
"title": "Global queue",
"categories": "Utils/Animations",
"desc": "It shows how to queue animations."
},
{
"path": "samples.utils.css.animations.Animations",
"title": "Animations",
"categories": "Utils/Animations",
"desc": "Animation utility allows to animate a lot of CSS properties."
},
{
"path": "samples.utils.css.animations.units.Animations",
"title": "Units translation",
"categories": "Utils/Animations",
"desc": "This is an example of animation using non pixel units."
},
{
"path": "samples.utils.domevents.eventsingleton.UtilsEvents",
"title": "Event singleton",
"categories": "Utils/Dom events",
"desc": "It demonstrate event singleton to help not to refresh entire template."
},
{
"path": "samples.utils.domevents.keyboardevents.step1.KeyboardEvents",
"title": "Keyboard Events Step 1",
"categories": "Utils/Dom events",
"desc": "Demonstration of keyboard events Step 1 using box selection."
},
{
"path": "samples.utils.domevents.keyboardevents.step2.KeyboardEvents",
"title": "Keyboard Events",
"categories": "Utils/Dom events",
"desc": "Demonstration of keyboard events using box selection."
},
{
"path": "samples.utils.domevents.keyboardevents.step3.KeyboardEvents",
"title": "Keyboard Events",
"categories": "Utils/Dom events",
"desc": "Demonstration of keyboard events using box selection."
},
{
"path": "samples.utils.domevents.keyboardevents.step4.KeyboardEvents",
"title": "Keyboard Events",
"categories": "Utils/Dom events",
"desc": "Demonstration of keyboard events using box selection."
},
{
"path": "samples.utils.domevents.keyboardevents.step5.KeyboardEvents",
"title": "Keyboard Events",
"categories": "Utils/Dom events",
"desc": "Demonstration of keyboard events using box selection."
},
{
"path": "samples.utils.domevents.mouseevents.MouseEvents",
"title": "Mouse Events",
"categories": "Utils/Dom events",
"desc": "Demonstration of Mouse Events using a box example"
},
{
"path": "samples.utils.domevents.mouseeventsimple.DomEventsTemplate",
"title": "Mouse Events Simple Syntax",
"categories": "Utils/Dom events",
"desc": "Mouse event examples using simple syntax"
},
{
"path": "samples.utils.domevents.mousewheel.MouseWheel",
"title": "Mouse Wheel Example",
"categories": "Utils/Dom events",
"desc": "Demonstration of Callback using onmousewheel event"
},
{
"path": "samples.utils.dragdrop.DragDrop",
"title": "Dragdrop",
"categories": "Utils/Dragdrop",
"desc": "It shows how an element could be dragged in different modes in aria templates."
},
{
"path": "samples.utils.fileupload.FileUpload",
"title": "File Upload Request Sample",
"categories": "Utils/Fileupload",
"desc": "Sample to demonstrate a file upload request."
},
{
"path": "samples.utils.jsonp.JsonP",
"title": "JSON-P Request Sample",
"categories": "Utils/Jsonp",
"desc": "Sample to demonstrate JSON-P request by simulating a scenario."
},
{
"path": "samples.utils.keynav.KeyboardNavigation",
"title": "Table Navigation using keyboard Example",
"categories": "Utils/Keyboard navigation",
"desc": "Table navigation provides advanced keyboard navigation in the HTML table."
},
{
"path": "samples.utils.scrollcontrol.ScrollControlTwo",
"title": "Scroll Control",
"categories": "Utils/Scroll control",
"desc": "It shows how scroll control works."
},
{
"path": "samples.utils.storage.Persist",
"title": "Persistence Storage",
"categories": "Utils/Storage",
"desc": "Allows to store data in local storage."
},
{
"path": "samples.utils.touch.gestures.Gestures",
"title": "Gesture Events",
"categories": "Utils/Touch",
"desc": "An example of gesture events."
},
{
"path": "samples.utils.touch.swipe.Swipe",
"title": "Swipe Event",
"categories": "Utils/Touch",
"desc": "It shows swipe event example."
},
{
"path": "samples.utils.touch.tap.Tap",
"title": "Tap Event",
"categories": "Utils/Touch",
"desc": "It shows tap event example."
},
{
"path": "samples.utils.touch.touchend.TouchEnd",
"title": "TouchEnd Event",
"categories": "Utils/Touch",
"desc": "It shows touchend event example."
},
{
"path": "samples.utils.touch.touchmove.TouchMove",
"title": "TouchMove Event",
"categories": "Utils/Touch",
"desc": "It shows touchmove event example."
},
{
"path": "samples.utils.touch.touchstart.TouchStart",
"title": "TouchStart Event",
"categories": "Utils/Touch",
"desc": "It shows touchstart event example."
},
{
"path": "samples.utils.validators.basic.Basic",
"title": "Validators",
"categories": "Utils/Validators",
"desc": "It shows the default aria templates Validator."
},
{
"path": "samples.utils.validators.event.Events",
"title": "Validators Event",
"categories": "Utils/Validators",
"desc": "It shows the Validator used with the events."
},
{
"path": "samples.utils.validators.group.Groups",
"title": "Validators Groups",
"categories": "Utils/Validators",
"desc": "It shows how to group the Validators."
},
{
"path": "samples.utils.visualfocus.VisualFocus",
"title": "Visual Focus",
"categories": "Utils/Focus",
"desc": "This utility allows to highlight the element currently on focus."
},
{
"path": "samples.widgets.autocomplete.basic.Basic",
"title": "AutoComplete Widget - Basic Label-Code Resource Handler",
"categories": "Widgets/Autocomplete",
"desc": "It shows the basic functionality of the autocomplete widget, using different thresholds."
},
{
"path": "samples.widgets.autocomplete.onchange.OnChange",
"title": "AutoComplete Widget - OnChange Action",
"categories": "Widgets/Autocomplete",
"desc": "It shows how the onchange callback works inside the autocomplete widget."
},
{
"path": "samples.widgets.autocomplete.spellcheck.Main",
"title": "AutoComplete Widget - Spell Check",
"categories": "Widgets/Autocomplete",
"desc": "It shows how the spellcheck works with the autocomplete. It gives suggestions if the user makes errors, like doubling a letter in a word."
},
{
"path": "samples.widgets.bindings.Default",
"title": "Widget Bindings",
"categories": "Widgets/Bindings",
"desc": "It shows how binding is done in a widget."
},
{
"path": "samples.widgets.bindings.transform.Transform",
"title": "Widget Bindings with Transform",
"categories": "Widgets/Bindings",
"desc": "It shows how to bind a widget with a text ransformation"
},
{
"path": "samples.widgets.button.action.Action",
"title": "Button Widget - User Action",
"categories": "Widgets/Button",
"desc": "It shows how the actions work with the Button Widget, managing specific callbacks."
},
{
"path": "samples.widgets.button.binding.Binding",
"title": "Button Widget - Binding",
"categories": "Widgets/Button",
"desc": "It shows a Button Widget bound to other widgets."
},
{
"path": "samples.widgets.button.style.Simple",
"title": "Button Widget - Style",
"categories": "Widgets/Button",
"desc": "It shows how Buttons with style look like."
},
{
"path": "samples.widgets.calendar.binding.Binding",
"title": "Calendar Widget - Binding",
"categories": "Widgets/Calendar",
"desc": "It shows two calendars bound to each other, so navigating inside one calendar changes the other."
},
{
"path": "samples.widgets.calendar.Samples",
"title": "Calendar Widget - Samples",
"categories": "Widgets/Calendar",
"desc": "It shows how the Calendar Widget looks like with different label format."
},
{
"path": "samples.widgets.checkbox.binding.BindableCheckbox",
"title": "Checkbox Widget - Bindings",
"categories": "Widgets/Checkbox",
"desc": "It shows different modes to bing a Checkbox Widget, using the data model for example."
},
{
"path": "samples.widgets.checkbox.SimpleCheckbox",
"title": "Checkbox Widget",
"categories": "Widgets/Checkbox",
"desc": "It shows a simple Checkbox Widget with the onchange event attached to it."
},
{
"path": "samples.widgets.checkbox.styling.CheckboxStyling",
"title": "Checkbox Widget - Styling",
"categories": "Widgets/Checkbox",
"desc": "It shows different possible styles that can be applied to the Checkbox Widget."
},
{
"path": "samples.widgets.customMap.CustomMap",
"title": "Custom Map Example",
"categories": "Widgets/CustomMap",
"desc": "This is to demonstrate Custom Map widget"
},
{
"path": "samples.widgets.customSlider.DemoTemplate",
"title": "Custom Slider Widget Library",
"categories": "Widgets/CustomSlider",
"desc": "This is to demonstrate a Custom Slider Widget Library"
},
{
"path": "samples.widgets.datefield.binding.DateFieldBindable",
"title": "DateField Widget with reference date - Sample",
"categories": "Widgets/Datefield",
"desc": "It shows two Datefield Widgets bound to the data model."
},
{
"path": "samples.widgets.datefield.TemplateDateField",
"title": "Datefield Widget",
"categories": "Widgets/Datefield",
"desc": "It shows the Datefield Widget."
},
{
"path": "samples.widgets.datepicker.customized.CustomizedDatePicker",
"title": "DatePicker Widget customized template - Sample",
"categories": "Widgets/Datepicker",
"desc": "It shows a DatePicker Widget with a customized layout."
},
{
"path": "samples.widgets.datepicker.reference.ReferenceDatePicker",
"title": "DatePicker Widget with date reference - Sample",
"categories": "Widgets/Datepicker",
"desc": "It shows a DatePicker Widget with date reference."
},
{
"path": "samples.widgets.datepicker.TemplateDatePicker",
"title": "DatePicker Widget binding - Sample",
"categories": "Widgets/Datepicker",
"desc": "It shows the default DatePicker Widget."
},
{
"path": "samples.widgets.dialog.action.DialogActionSample",
"title": "Dialog sample usage",
"categories": "Widgets/Dialog",
"desc": "It shows how the actions work with the Dialog."
},
{
"path": "samples.widgets.dialog.binding.DialogBindingSample",
"title": "Dialog sample usage",
"categories": "Widgets/Dialog",
"desc": "It shows which properties are bindable and how they work for the Dialog."
},
{
"path": "samples.widgets.dialog.movable.TemplateMovableDialog",
"title": "Movable dialog",
"categories": "Widgets/Dialog",
"desc": "It shows a Movable Dialog."
},
{
"path": "samples.widgets.dialog.resizable.TemplateResizableDialog",
"title": "Resizable dialog",
"categories": "Widgets/Dialog",
"desc": "It shows a Resizable Dialog."
},
{
"path": "samples.widgets.dialog.TemplateDialog",
"title": "Dialog sample usage",
"categories": "Widgets/Dialog",
"desc": "It shows the default Dialog popping out after a mouse click."
},
{
"path": "samples.widgets.div.binding.DivWgtBinding",
"title": "Div Widget - Binding usage",
"categories": "Widgets/Div",
"desc": "It shows how the tooltip property works when is bound to another element."
},
{
"path": "samples.widgets.div.DivWgtSample",
"title": "Div Widget - Sample usage",
"categories": "Widgets/Div",
"desc": "It shows how a Div Widget look like."
},
{
"path": "samples.widgets.div.styling.DivWidgetStyling",
"title": "Div Widget - Styling usage",
"categories": "Widgets/Div",
"desc": "It shows different uses of the 'sclass' property with the Div Widget."
},
{
"path": "samples.widgets.embed.Embed",
"title": "Embed Example",
"categories": "Widgets/Embed",
"desc": "This is to demonstrate the Embed Element"
},
{
"path": "samples.widgets.errorlist.binding.ErrorListBinding",
"title": "ErrorList Widget - Binding usage",
"categories": "Widgets/Errorlist",
"desc": "It shows how the ErrorList Widget works when is bound to something."
},
{
"path": "samples.widgets.errorlist.custom.ErrorListCustomizedTemplate",
"title": "ErrorList Widget - Customized template usage",
"categories": "Widgets/Errorlist",
"desc": "It shows a customized ErrorList Widget."
},
{
"path": "samples.widgets.errorlist.filtering.ErrorListFilterTemplate",
"title": "ErrorList Widget - Using filters",
"categories": "Widgets/Errorlist",
"desc": "It shows the different message layouts for the ErrorList Widget (Information, Success, Error, Warning) using the filter property."
},
{
"path": "samples.widgets.errorlist.standard.ErrorListTemplate",
"title": "ErrorList Widget - Standard usage",
"categories": "Widgets/Errorlist",
"desc": "It shows how the ErrorList Widget looks like, showing the information layout."
},
{
"path": "samples.widgets.fieldset.action.FieldsetAction",
"title": "Fieldset Widget Event bubble - Sample usage",
"categories": "Widgets/Fieldset",
"desc": "It shows Fieldset Widgets executing callback actions."
},
{
"path": "samples.widgets.fieldset.binding.FieldsetBinding",
"title": "Fieldset Widget Binding - Sample usage",
"categories": "Widgets/Fieldset",
"desc": "It shows a Fieldset Widget with the property tooltip bound to the data model."
},
{
"path": "samples.widgets.fieldset.nested.FieldsetNested",
"title": "Nested Fieldset Widget - Sample usage",
"categories": "Widgets/Fieldset",
"desc": "It shows a nested Fieldset Widget with the default configuration."
},
{
"path": "samples.widgets.fieldset.FieldsetSimple",
"title": "Fieldset Widget - Sample usage",
"categories": "Widgets/Fieldset",
"desc": "It shows two Fieldset Widgets with the default configuration."
},
{
"path": "samples.widgets.gauge.SampleUsage",
"title": "Gauge Widget - Sample usage",
"categories": "Widgets/Gauge",
"desc": "It shows the Gauge Widget working with a specific value or in searching mode."
},
{
"path": "samples.widgets.icon.library.SampleLibraryUsage",
"title": "Icons: Icon Widget Library",
"categories": "Widgets/Icon",
"desc": "It shows some different icons for many uses, like info, error, undo, redo, help, arrows, etc."
},
{
"path": "samples.widgets.icon.SampleUsage",
"title": "Icon Widget: Sample usage",
"categories": "Widgets/Icon",
"desc": "It shows different layouts for the Icon Widget, with Inline style, tooltip and margin."
},
{
"path": "samples.widgets.iconbutton.binding.IconButtonBinding",
"title": "IconButton Widget Binding - Sample usage",
"categories": "Widgets/Iconbutton",
"desc": "It shows an IconButton Widget bound to a checkbox that manage the icon button enabled state."
},
{
"path": "samples.widgets.iconbutton.Simple",
"title": "IconButton Widget - Sample usage",
"categories": "Widgets/Iconbutton",
"desc": "It shows an IconButton Widget in normal mode and disabled."
},
{
"path": "samples.widgets.iconbutton.styling.IconButtonStyle",
"title": "IconButton Widget Styling - Sample usage",
"categories": "Widgets/Iconbutton",
"desc": "It shows some IconButton Widgets with different styles."
},
{
"path": "samples.widgets.link.LinkWgtSample",
"title": "Link sample",
"categories": "Widgets/Link",
"desc": "It shows how the Link Widget works, calling a user defined callback after a click."
},
{
"path": "samples.widgets.list.action.ListAction",
"title": "List Widget - Action sample",
"categories": "Widgets/List",
"desc": "It shows a List Widget with different action linked, like onMouseOver, onClick, onKeyevent and onChange."
},
{
"path": "samples.widgets.list.binding.ListBinding",
"title": "List Widget - Binding sample",
"categories": "Widgets/List",
"desc": "It shows a List Widget bound to another list and to a checkbox."
},
{
"path": "samples.widgets.list.Simple",
"title": "List Widget - Sample",
"categories": "Widgets/List",
"desc": "It shows a List Widget in normal mode and disabled."
},
{
"path": "samples.widgets.list.styling.ListStyle",
"title": "List Widget - Styling sample",
"categories": "Widgets/List",
"desc": "It shows a List Widget with different styles applied."
},
{
"path": "samples.widgets.map.MapSample",
"title": "Simple Map",
"categories": "Widgets/Map",
"desc": "It shows how to create a simple map."
},
{
"path": "samples.widgets.multiselect.binding.TemplateMultiSelect",
"title": "MultiSelect Widget Binding",
"categories": "Widgets/Multiselect",
"desc": "It shows the MultiSelect Widget with instant binding option"
},
{
"path": "samples.widgets.multiselect.SampleUsage",
"title": "MultiSelect Widget - Sample usage",
"categories": "Widgets/Multiselect",
"desc": "It shows the MultiSelect Widget with different layouts, like columns, table, etc."
},
{
"path": "samples.widgets.numberfield.SampleUsage",
"title": "NumberField Sample Usage",
"categories": "Widgets/Numberfield",
"desc": "It shows how the NumberField Widget works in aria templates."
},
{
"path": "samples.widgets.passwordfield.Password",
"title": "PasswordField Sample Usage",
"categories": "Widgets/Passwordfield",
"desc": "It shows how the PasswordField Widget works in aria templates."
},
{
"path": "samples.widgets.placeholder.PlaceholderSample",
"title": "Placeholder sample usage",
"categories": "Widgets/Placeholder",
"desc": "It shows how the place holder works in Aria Template."
},
{
"path": "samples.widgets.radiobutton.binding.RadioButtonBinding",
"title": "RadioButton Widget - Binding usage",
"categories": "Widgets/Radiobutton",
"desc": "It shows RadioButton Widgets bound to the data model."
},
{
"path": "samples.widgets.radiobutton.SimpleRadioButton",
"title": "RadioButton Widget - Sample usage",
"categories": "Widgets/Radiobutton",
"desc": "It shows the default RadioButton widget."
},
{
"path": "samples.widgets.radiobutton.styling.StyledRadioButton",
"title": "RadioButton Widget - Styling usage",
"categories": "Widgets/Radiobutton",
"desc": "It shows the RadioButton Widget with different styles applied."
},
{
"path": "samples.widgets.select.bindoptions.BindOptions",
"title": "Select Field Widget - Bindable Options",
"categories": "Widgets/Select",
"desc": "Bindable options to dynamically change Select widget options"
},
{
"path": "samples.widgets.select.SampleUsage",
"title": "Select Field Widget - Sample usage",
"categories": "Widgets/Select",
"desc": "It shows the Select Widget in different configuration (default, read-only, disabled)."
},
{
"path": "samples.widgets.selectbox.bindoptions.BindOptions",
"title": "SelectBox Widget - Bindable Options",
"categories": "Widgets/Selectbox",
"desc": "Bindable options to dynamically change SelectBox widget options"
},
{
"path": "samples.widgets.selectbox.SampleUsage",
"title": "SelectBox Field Widget - Sample usage",
"categories": "Widgets/Selectbox",
"desc": "It shows the SelectBox Widget in different configuration (default, read-only, disabled)."
},
{
"path": "samples.widgets.sortindicator.binding.SortingTemplateBinding",
"title": "SortIndicator Widget - Binding Sample",
"categories": "Widgets/Sortindicator",
"desc": "It shows how the SortIndicator with the tooltip property bound to the data model works."
},
{
"path": "samples.widgets.sortindicator.SortingTemplate",
"title": "SortIndicator Widget - Sample",
"categories": "Widgets/Sortindicator",
"desc": "It shows how the SortIndicator Widget works in aria templates."
},
{
"path": "samples.widgets.splitter.TemplateSplitter",
"title": "Splitter sample usage",
"categories": "Widgets/Splitter",
"desc": "Example of Splitter."
},
{
"path": "samples.widgets.tab.binding.TabWgtBinding",
"title": "Tab Widget - Binding Sample",
"categories": "Widgets/Tab",
"desc": "It shows the Tab Widget with the selectedTab property bound to the data model."
},
{
"path": "samples.widgets.tab.TabWgtSample",
"title": "Tab Widget - Sample",
"categories": "Widgets/Tab",
"desc": "It shows the Tab Widget."
},
{
"path": "samples.widgets.tab.styling.TabWgtStyle",
"title": "Tab Widget - Styling Sample",
"categories": "Widgets/Tab",
"desc": "It shows the Tab Widget with style applied."
},
{
"path": "samples.widgets.tab.tabpanel.TabPanelWgtMacro",
"title": "TabPanel Widget - Sample",
"categories": "Widgets/Tab",
"desc": "It shows the TabPanel Widget."
},
{
"path": "samples.widgets.template.TemplateSample",
"title": "Template Widget - Sample",
"categories": "Widgets/Template",
"desc": "It shows the Template Widget."
},
{
"path": "samples.widgets.text.binding.TextWgtBinding",
"title": "Text Widget - Binding Sample",
"categories": "Widgets/Text",
"desc": "It shows the Text Widget with properties bound to another element."
},
{
"path": "samples.widgets.text.TextWgtSample",
"title": "Text Widget - Sample",
"categories": "Widgets/Text",
"desc": "It shows the Text Widget with different properties set."
},
{
"path": "samples.widgets.textarea.binding.TemplateTextareaBinding",
"title": "Textarea sample usage",
"categories": "Widgets/Textarea",
"desc": "Example of Textarea value bound to datamodel."
},
{
"path": "samples.widgets.textarea.bindingTransform.TemplateTextareaBindingTransofrm",
"title": "Textarea sample usage",
"categories": "Widgets/Textarea",
"desc": "Example of modification/transofrmation of a Textarea value which is bound to a datamodel."
},
{
"path": "samples.widgets.textarea.prefill.TemplateTextareaPrefill",
"title": "Textarea sample usage",
"categories": "Widgets/Textarea",
"desc": "Example of Textarea with prefilled value."
},
{
"path": "samples.widgets.textarea.TemplateTextarea",
"title": "Textarea sample usage",
"categories": "Widgets/Textarea",
"desc": "Example of simple Textarea."
},
{
"path": "samples.widgets.textfield.binding.Bindings",
"title": "TextField Bindings",
"categories": "Widgets/Textfield",
"desc": "It shows some TextField Widgets bound to the data model."
},
{
"path": "samples.widgets.textfield.transform.Transforms",
"title": "TextField Transform Bindings",
"categories": "Widgets/Textfield",
"desc": "It shows the Trasform feature of the TextField Widget."
},
{
"path": "samples.widgets.timefield.SampleUsage",
"title": "TimeField Sample Usage",
"categories": "Widgets/Timefield",
"desc": "It shows the TimeField Widget usage."
},
{
"path": "samples.widgets.tooltip.TemplateTooltip",
"title": "Tooltip Widget - Sample",
"categories": "Widgets/Tooltip",
"desc": "It shows the Tooltip Widget used in different contexts."
},
{
"path": "samples.widgets.touch.dialog.DialogTpl",
"title": "Touch Dialog Widget - Sample",
"categories": "Widgets/Touch",
"desc": "This is to demonstrate animations for touch dialog."
},
{
"path": "samples.widgets.touch.doubleslider.DoubleSliderTpl",
"title": "Touch Double Slider Widget - Sample",
"categories": "Widgets/Touch",
"desc": "This is to demonstrate touch enabled doubled slider"
},
{
"path": "samples.widgets.touch.slider.Slider",
"title": "Touch Slider Widget - Sample",
"categories": "Widgets/Touch",
"desc": "This is to demonstrate touch enabled slider widget"
},
{
"path": "samples.widgets.widgetlibs.html.autocomplete.markup.PlainInput",
"title": "Simple input widget",
"categories": "Widgets/Libs",
"desc": "In this sample the text input is created with a simple input tag."
},
{
"path": "samples.widgets.widgetlibs.html.autocomplete.widget.InputWidget",
"title": "TextInput Widget - Sample usage",
"categories": "Widgets/Libs",
"desc": "This sample shows how to create an AutoComplete widget reusing the TextInput widget and the Suggestions controller."
},
{
"path": "samples.widgets.widgetlibs.html.checkbox.BaseCheckBoxTag",
"title": "HTML Checkbox, Sample usage",
"categories": "Widgets/Libs",
"desc": "This is a sample to demonstrate the HTML Checkbox widget."
},
{
"path": "samples.widgets.widgetlibs.html.radiobutton.BaseRadioButtonTag",
"title": "HTML RadioButton, Sample usage",
"categories": "Widgets/Libs",
"desc": "This is a sample to demonstrate the HTML RadioButton widget."
},
{
"path": "samples.widgets.widgetlibs.html.select.BaseSelectTag",
"title": "HTML Select, Sample usage",
"categories": "Widgets/Libs",
"desc": "This is a sample to demonstrate the HTML Select widget."
},
{
"path": "samples.widgets.widgetlibs.html.template.SimpleTemplate",
"title": "Template Include Widget, Sample usage",
"categories": "Widgets/Libs",
"desc": "This is a sample example to demonstrate Template Include widget usage."
},
{
"path": "samples.widgets.widgetlibs.html.textinput.BaseTextInputTag",
"title": "TextInput Widget - Sample usage",
"categories": "Widgets/Libs",
"desc": "This is to demonstrate html textinput widget"
}
]