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
|
$( document ).bind("pagecreate", function () {
/* Color widget demo */
$("input[type='checkbox'][data-widget-type-list]").bind("change", function() {
var ls = $( this ).attr("data-widget-type-list").split(","),
page = $( this ).closest(":jqmData(role='page')"),
disabled = $( this ).is(":checked");
$.each(ls, function( idx, widgetType ) {
var ar = widgetType.split("-");
if ( ar.length === 2 ) {
page.find(":" + widgetType)[ar[1]]( "option", "disabled", disabled );
}
});
});
$("#checkHideInput").bind("change", function (e) {
$("#colorpickerbutton").colorpickerbutton("option", "hideInput", $("#checkHideInput").is(":checked"));
});
$('#scroller-demo').bind('pageshow', function ( e ) {
$page = $( e.target );
/*
* many options cannot be set without subclassing since they're
* used in the _create method - it seems as if these are for
* internal use only and scrollDuration is only changable by
* chance.
*/
var $scroller2List = $('#scroller2').find('ul');
$scroller2List.scrollview( 'option','scrollDuration','10000' );
// only works by manipulating css
// the only other way is to use attribute 'scroll-method="scroll"' in html
$('#scroller2 .ui-scrollbar').css( 'visibility','hidden' );
/*
* make toggle button switch scroll bars on and off
*/
var scrollBarVisible = $('#scroller2').find('.ui-scrollbar').css('visibility') === "visible";
var $toggleScrollBars = $('#toggleScrollBars');
$toggleScrollBars.attr( "checked", scrollBarVisible ).checkboxradio("refresh");
/* the 'label' is the thing that is clicked, not the input element */
var $label = $toggleScrollBars.siblings('label').attr( 'for', '#toggleScrollBars' );
$label.bind("click", function () {
var $scrollBar = $('#scroller2').find('.ui-scrollbar');
var scrollBarVisible = $scrollBar.css('visibility') === "visible";
var newVisibility = scrollBarVisible ? "hidden" : "visible";
$scrollBar.css( 'visibility', scrollBarVisible ? "hidden" : "visible" );
});
});
$("#demo-date").bind("date-changed", function ( e, newDate ) {
$("#selected-date1").text( newDate.toString() );
});
$("#demo-date2").bind("date-changed", function ( e, newDate ) {
$("#selected-date2").text( newDate.toString() );
});
$("#demo-date3").bind("date-changed", function ( e, newDate ) {
$("#selected-date3").text( newDate.toString() );
});
$("#demo-date4").bind("date-changed", function ( e, newDate ) {
$("#selected-date4").text( newDate.toString() );
});
$('#noti-demo').bind('vmouseup', function ( e ) {
$('#notification').notification('open');
});
$('#noti-icon1').bind('vclick', function ( e ) {
$('#notification').notification('icon', './test/icon02.png');
});
$('#noti-icon2').bind('vclick', function ( e ) {
$('#notification').notification('icon', './test/icon01.png');
});
$('#imageslider-add').bind('vmouseup', function ( e ) {
$('#imageslider').imageslider('add', './test/10.jpg');
$('#imageslider').imageslider('add', './test/11.jpg');
$('#imageslider').imageslider('refresh');
});
$('#imageslider-del').bind('vmouseup', function ( e ) {
$('#imageslider').imageslider('delete');
});
$('#selectioninfo-demo').bind('vmouseup', function ( e ) {
$('#smallpopup_selectioninfo').notification( "text",
$("#dayselector1").find(".ui-checkbox-on").length + " items are selected" );
$('#smallpopup_selectioninfo').notification('open');
});
$('#groupindex-demo').bind('pageshow', function () {
$('#groupindex').scrolllistview();
});
$("#showVolumeButton").bind("vclick", function ( e ) {
$("#myVolumeControl").volumecontrol("open");
});
$("#volumecontrol_setBasicTone").bind("change", function ( e ) {
var basicTone = !($("#volumecontrol_setBasicTone").next('label')
.find(".ui-icon").hasClass("ui-icon-checkbox-on"));
if ( basicTone ) {
$("#myVolumeControl").volumecontrol( "option", "basicTone", true );
$("#myVolumeControl").volumecontrol( "option", "title", "Basic Tone" );
} else {
$("#myVolumeControl").volumecontrol( "option", "basicTone", false );
$("#myVolumeControl").volumecontrol( "option", "title", "Volume" );
}
});
$("#myoptionheader").bind('collapse', function () {
console.log('option header was collapsed');
});
$("#myoptionheader").bind('expand', function () {
console.log('option header was expanded');
});
//day-selector codes...
$("#day-selector-check-all").live('vclick', function () {
$("#dayselector1").dayselector('selectAll');
});
$("#day-selector-get-days").live('vclick', function () {
var valuesStr = $("#dayselector1").dayselector('value').join(', ');
$(".selectedDay").text( valuesStr );
});
/* Gen list : Dummy DB load */
$(".virtuallist_demo_page").live("pagecreate", function () {
/* ?_=ts code for no cache mechanism */
$.getScript( "./virtuallist-db-demo.js", function ( data, textStatus ) {
$("ul").filter( function () {
return $( this ).data("role") == "virtuallistview";
}).addClass("vlLoadSuccess");
$(".virtuallist_demo_page").die();
$("ul.ui-virtual-list-container").virtuallistview("create");
});
});
/*Expandable list : Dummy DB load*/
$("#genlist_extendable_page").live("pagecreate", function () {
/*?_=ts code for no cache mechanism*/
$.getScript( "./virtuallist-db-demo.js", function ( data, textStatus ) {
$("ul").filter( function () {
return $( this ).data("role") == "extendablelist";
}).addClass("elLoadSuccess");
$("#genlist-extendable-page").die();
$("ul.ui-extendable-list-container").extendablelist("create");
});
});
/* Color widget demo */
var clrWidgetsAreInit = false;
$("#colorwidgets-demo").bind("pageshow", function () {
if ( clrWidgetsAreInit ) {
return;
}
$("#colorpicker").bind("colorchanged", function ( e, clr ) {
$("#colorpickerbutton").colorpickerbutton( "option", "color", clr );
$("#colorpickerbutton-noform").colorpickerbutton( "option", "color", clr );
$("#hsvpicker").hsvpicker( "option", "color", clr );
$("#colortitle").colortitle( "option", "color", clr );
$("#colorpalette").colorpalette( "option", "color", clr );
});
$("#colorpickerbutton").bind("colorchanged", function ( e, clr ) {
$("#colorpicker").colorpicker( "option", "color", clr );
$("#colorpickerbutton-noform").colorpickerbutton( "option", "color", clr );
$("#hsvpicker").hsvpicker( "option", "color", clr );
$("#colortitle").colortitle( "option", "color", clr );
$("#colorpalette").colorpalette( "option", "color", clr );
});
$("#colorpickerbutton-noform").bind("colorchanged", function ( e, clr ) {
$("#colorpicker").colorpicker( "option", "color", clr );
$("#colorpickerbutton").colorpickerbutton( "option", "color", clr );
$("#hsvpicker").hsvpicker( "option", "color", clr );
$("#colortitle").colortitle( "option", "color", clr );
$("#colorpalette").colorpalette( "option", "color", clr );
});
$("#hsvpicker").bind("colorchanged", function ( e, clr ) {
$("#colorpicker").colorpicker( "option", "color", clr );
$("#colorpickerbutton").colorpickerbutton( "option", "color", clr );
$("#colorpickerbutton-noform").colorpickerbutton( "option", "color", clr );
$("#colortitle").colortitle( "option", "color", clr );
$("#colorpalette").colorpalette( "option", "color", clr );
});
$("#colortitle").bind("colorchanged", function ( e, clr ) {
$("#colorpicker").colorpicker( "option", "color", clr );
$("#colorpickerbutton").colorpickerbutton( "option", "color", clr );
$("#colorpickerbutton-noform").colorpickerbutton( "option", "color", clr );
$("#hsvpicker").hsvpicker( "option", "color", clr );
$("#colorpalette").colorpalette( "option", "color", clr );
});
$("#colorpalette").bind("colorchanged", function ( e, clr ) {
$("#colorpicker").colorpicker( "option", "color", clr );
$("#colorpickerbutton").colorpickerbutton( "option", "color", clr );
$("#colorpickerbutton-noform").colorpickerbutton( "option", "color", clr );
$("#hsvpicker").hsvpicker( "option", "color", clr );
$("#colortitle").colortitle( "option", "color", clr );
});
$("#colorpalette").colorpalette("option", "color", "#45cc98");
clrWidgetsAreInit = true;
});
});
$(document).ready( function () {
// add current datetime with browser language format
// NOTE: Globalize.* functions must be run after docoument ready.
$('#current_date').html(Globalize.culture().name + " -- " +
Globalize.format( new Date(), "F" ));
$('#html_font_size').html('html font size:' + $('html').css('font-size'));
});
|