-
Notifications
You must be signed in to change notification settings - Fork 53
/
change.log
974 lines (738 loc) · 28.4 KB
/
change.log
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
Wijmo-Open v2.3.4
=================
Dependencies
------------
Uses jQuery 1.8.2 and jQuery UI 1.9.1
list
------
Fixed an issue that incorrect item is selected on pressing "Enter" key after typing a key to filter the comboitems.
Calendar
------
Fixed an issue that calendar is not rendered when monthCols/monthRows is set in year view.
Fixed an issue that javascript error occur when call method 'show'(JQueryUI upgrade caused the issue.).
Tab
------
Fixed an issue that the wijdget's object can't find after visibility change from false to true.
Wijmo-Open v2.3.3
=================
Dependencies
------------
Uses jQuery 1.8.2 and jQuery UI 1.9.1
Slider
-------
Override the "widgetEventPrefix" to "wijslider"
Menu
-------
Changed the default value "[]" to "null" of "items" option.
List
------
Add "FindIndexByLabel" method.
Fixed an issue that autoSize property is broken in latest build
Wijmo-Open v2.3.2
=================
Dependencies
------------
Uses jQuery 1.8.2 and jQuery UI 1.9.1
Menu
------
Fixed an issue that 'navigateUrl' is not working properly in sub menu after navigating through keyboard when 'mode' property is set to 'sliding'
Calendar
------
Fixed an issue that first day is not selected when multiple months are shown & selectionMode is WeekDay.
Slider
------
Fixed an issue that the js error is observed when invodes the "refresh" method in wijslider.
Tabs
----
wijtabs can be correctly disabled.
Dropdown
------
Fixed an issue that dropdown is rendered with unnecessary scrollbars in IE8.
List
------
Fixed an issue that wijList- selectItems() Not finding Values that are numbers string, like "200","300".
Wijmo-Open v2.3.1
=================
Dependencies
------------
Uses jQuery 1.8.2 and jQuery UI 1.9.1
Tabs
------
Fixed an issue with widgets rendering in an inactive (not displayed) tab.
Wijmo-Open v2.3.0
=================
Dependencies
------------
Updated to support jQuery 1.8.2 and jQuery UI 1.9.1
Tooltip
-------
Fixed an animation issue with jQuey ui 1.9.
Fixed an issue that tooltip is shown after moving mouse if 'mouseTrailing' & 'showDelay' are set to true & non-default value respectively.
Fixed an issue when mouseTrailing is true and position.my is "center center".
Changed default value and behavior of "calloutFilled" option.
Fixed an issue when 'modal' is true, modal is not apply completely according to the browser after resizing the browser.
Slider
--------
Fixed an issue that javascript error is thrown on clicking thumbs handle if Range="True"
Fixed an issue that the "disabled" option takes no effect in juice
DropDown
--------
Fixed an issue that change event don't fire in second time if set the select value by code.
Fixed an issue that dropown remains selected even after focus is lost
Fixed an issue that incorrect select value is returned for selected item in Firefox
Fixed an issue that when "disabled" is true, dropdown disabled style is not added.
Fixed an issue that when not click at dropdown area, sometimes the droplist is not hide.
Menu
----
Changed private function "_destroy" to "_innerDestroy" for jquery ui 1.9.
Fixed a scroll issue in sliding mode.
Fixed a sliding issue when dblclick an item in sliding mode.
Removed a global variable of menu and menu item.
Tabs
-----
Fixed an issue of fail to destroy and recreate tabs.
Changed private function "_destroy" to "_innerDestroy" for jquery ui 1.9.
Popup
-------
Fixed an animation issue with jQuey ui 1.9.
Calendar
------
Fixed an issue that the "disabled" option takes no effect in juice
Fixed an issue that calendar¡¯s month header and body are misaligned after choosing the month using quick pick mode
Wijmo-Open v2.2.1
=================
ToolTip
----
Fix an issue when tooltip's method '_set_position' is invoked, however the content and title properties of the tooltip remain unchanged.
Fix another issue when 'position.offset' is "none none", the offset of the 'callout' element in the tooltip remain unchanged.
Wijmo-Open v2.2.0
=================
menu
----
Fixed a UI issue in sliding mode when set width.
ToolTip
----
Fixed an issue when the cssClass is added failed to the ToolTip.
Wijmo-Open v2.1.7
=================
tabs
----
Fixed an issue when title is localized.
list
----
Update for combobox item selection via keyboard when ItemsTemplate is used
menu
----
Fixed an issue that submenuitem's text is not shown correctly when templating.
Fixed an issue that the variable self.domObject is not set to null when killing element.
ToolTip
----
Fixed an issue that JavaScript error is observed if 'showCallout' property of ToolTip is set to 'false'.
Wijmo-Open v2.1.6
=================
Platform
--------
Observe visible state change for wijmo widgets. Container widgets now trigger a visible state change event when they display their contents. This allows widgets inside them to redraw when visible to eliminate layout issues.
list
-----------
Fixed an issue to support templated filter in combobox.
Fixed an issue when using multicolumn, first item is lost in dropdown list after selected an item
menu
----
Fixed an issue that submenuitem's text is not shown correctly when templating.
Wijmo-Open v2.1.5
=================
calendar
--------
Fixed an issue that custom events didn't fire after navigating to previous or next month.
list
-----------
Fixed an issue with showing all items in combobox.
Wijmo-Open v2.1.4
=================
dropdown
-----------
Updated refresh method: Was cauging a js error in eventcalendar.
menu
----
Stop event propagation when menu is shown as a context menu.
Wijmo-Open v2.1.3
=================
Form Decorator
--------------
Updated css to align better in certain scenarios
Themes
------
Updated all themes to used the improved ui-helper-clearfix pattern.
calendar
--------
Added "displayDate" to _setOption.
menu
----
Added a new option "direction", its value is "ltr" or "rtl" to support right-to-left rendering.
Fixed an issue in the deactivate method.
list
----
Fixed an issue when showing all items in combobox.
radio, checkbox
---------------
Add "checked" and "changed" option to support knockout bindings
Wijmo-Open v2.1.2
=================
checkbox
--------
disabled checkboxes could be checked.
Knockout Integration Library
-----------------------------
Added support for disabled option in form decorators.
Cleaned up unused and commented code.
Wijmo-Open v2.1.1
=================
calendar
--------
The result selection has one day off when calling selectDate method in some GMT offset.
Fixed javascript error thrown in IE8.
tabs
-------
selection is incorrect when more than one tabs widget exists on the same page.
dropdown
--------
Fixed a bug when multiple items occur with the same value in options.
Wijmo-Open v2.1.0
=================
New Knockout Integration Library
--------------------------------
Added an optional integration library for wijmo to work with knockout. Knockout is a library for
adding MVVM support in JavaScript. We have added support to each widget so that they can be
initialized from declarative syntax in markup. Each widget can also be bound to observables in
Knockout which is live two-way binding to a Model. This is a powerful new feature for building
applications with Wijmo and Knockout.
list
--------------------------------------
For juice: Added adjust option for list.
Wijmo-Open v2.0.8
=================
menu
---------
Removed “wijmo-wijmenu-link” class when templating.
Fixed a bug where the menu could not be displayed above other elements depending on the triggerElement.
Wijmo-Open v2.0.7
=================
dialog
------
Fixed a bug to disable resizing when resizable option is set to false.
DropDown
--------
Fixed a issue that double-clicking the trigger button expands the dropdown menu inline
tooltip
--------
Fixed a bug that when destroy the tooltip, the tooltip element doesn't get removed from the DOM.
list
------
Fixed a bug that will throw an exception when prevent selecting the item.
Updated addItem method to allow the user to update the list content.
video
------
Update setoption for "disabled" and "showControlsOnHover ".
Wijmo-Open v2.0.6
=================
* Fixes:
Accordion
---------
[16943] [IE8][Win7] "Invalid argument" Javascript error is
observed after clicking on any pane of the accordion in IE8
video
------
added fullScreenButtonVisible option to wijvideo.
added getWidth, setWidth, getHeight, setHeight methods.
add "showControlsOnHover " option .
radio
------
fixed a bug that disabled style doesn't not work.
menu
----
fixed an issue that select event doesn't fire when a node has children and menu's mode is sliding.
Dropdown
------
fixed an issue that the dropdown can't show items from forum.
fix refresh problem when use wijdropdown in eventCalendars.
fixed issue that can't get drop down value with keydown operation.
Video
------
add class to prevent from overriding the origin css of tooltip.
Add comment to methods.
Progressbar/Splitter
--------------------
Fix the issues with destroy method.
Slider
------
Fixed the issue that increment/decrement button can still work even though the slider is disabled.
Update destroy method.
Superpanel
-------------
add refresh method which refreshes the superpanel.
add scroll event which is called immediately after scrolling occurs.
checkbox
-------------
Fixed bug that Wijcheckbox change event get the wrong checked value.
Fixed bug that wijcheckbox can't checked when the label is front of the checkbox.
calendar
-------------
Fixed an issue that popped up calendar automatically close when there is previous selection happen.
Fixed an issue that the selected year 2011 is change to year 2001 after selecting with quick navigation in certain scenarios
Enhanced the selection behavior, allows unselect a selected date by pressing the ctrl key.
popup
____________
When you have an autocomplete (or wijmo combobox) inside a wijpopup, when you select on the dropdown list it close both wigets.
Fixed an issue when nested popup is used.
Wijmo-Open v2.0.0
=================
* New Widgets:
Video Player
------------
* Enhancements:
Superpanel
-------------
add refresh method which refreshes the superpanel.
add scroll event which is called immediately after scrolling occurs.
* Fixes:
Accordion
---------
Unable to select the desire panel after all the panels are open in certain scenarios
Fixed bug with destroy method.
Dropdown
------
fix refresh problem when use wijdropdown in eventCalendars.
Video
------
add class to prevent from overriding the origin css of tooltip.
Progressbar/Splitter
--------------------
Fix the issues with destroy method.
Slider
------
Fixed the issue that increment/decrement button can still work even though the slider is disabled.
Update destroy method.
Superpanel
-------------
add refresh method which refreshes the superpanel.
add scroll event which is called immediately after scrolling occurs.
checkbox
-------------
Fixed bug that Wijcheckbox change event get the wrong checked value.
Fixed bug that wijcheckbox can't checked when the label is front of the checkbox.
calendar
-------------
Fixed an issue that popped up calendar automatically close when there is previous selection happen.
Fixed an issue that the selected year 2011 is change to year 2001 after selecting with quick navigation in certain scenarios
Wijmo-Open v1.5.0
=================
The fifth major release of of Wijmo Open v1 contains a number of bug fixes and support for jQuery globalize (breaking change).
* Fixes
Tree
----
Changed expandAnimation.effect to expandAnimation.animated, collapseanimation.effect to collapseAnimation.animated.
Dialog
------
Fixed bug when setting the 'contentUrl' option.
Fixed bug when drag & size the dialog when dialog has external content.
Menu
----
Fixed the issue that "blur" and "focus" event fired twice.
Wijmo-Open v1.4.1
=================
* Enhancements
Accordion
---------
In addition to TAB key, added ability to navigate accordion panes using
the up/down left/right keys - when accordion header has focus,
pressing up/down left/right keys will change focus between headers,
pressing enter will activate the content of the selected header.
Unit test for the new feature is provided.
* Fixes
Tooltip
-------
- Fixed the issue that when the mouseTrailing is true, mouse mouse, the tooltip doesn't follow with mouse.
- Fixed a bug: when the value's type is float, the progress's behavior is wrong.
DropDown
---------
- Fixed the issue that setting the value to select will be not reflected in the wijdropdown.
Splitter
---------
- Fixed the issue that expander can't be shown correctly in the nested splitter.
- Fixed the issue that hover style wasn't applied to the bar when hovering over the bar.
Calendar
--------
- UI actions don't take effect when using jQuery 1.6.2.
Wijmo-Open v1.4.0
=================
The fourth major release of of Wijmo v1 contains a number of bug fixes and breaking changes.
* Breaking changes
Tabs
----
Renamed the 'disabled' option to 'disabledIndexes'
Renamed the 'enable' method to 'enableTab', renamed the 'disable' method to 'disableTab'
Accordion
---------
Parameters for "beforeSelectedIndexChanged"/"selectedIndexChanged" events was changed:
* Enhancements
Dialog
------
New event: stateChanged - Raised when the state ("minimized", "maximized", "normal") of this dialog is changed.
New event: blur - Raised when the dialog lose focus.
* Fixes
Superpanel
----------
Prevent right and middle clicking takes effect on scrollbar.
Fixed bug: Exception on option "autoRefresh" set to true.
Tabs
------
Fixed bug: Setting disabled option to true, tabs still can be selected.
Dialog
------
Fixed bug: "Open" method will reload iframe of the dialog.
Fixed bug: beforeClose has some issues on iframe mode.
Menu
--------
Fixed bug: javascript error is observe after navigating with access key and pressing any key.
Fixed bug: when focus is on a menuitem, pressing the enter key wasn't navigating the link's url.
Fixed bug: when the disabled option is set to true, the sub menu was still opening.
Fixed bug: when the template item is input element, it will throw an exception in IE 8
Fixed bug: incorrect style was applied when the trigger event was set to rtclick and you moused from an item which has submenu
Modify the aria-activedescendant to an menu item id.
Tooltip
---------
Change the ajaxCallback option's default value from false to null.
Fixed bug: setting the content option was not setting the content of the tooltip.
Splitter
--------
Fixed the issue that dragging the expander bar will throw an exception in ie7.
Added disabled option support.
Resetting panel1 option will override previous panel1 settings in firefox(because the "use strict").
slider
---------
Fixed a bug: the height of slider is error when setting it in control.
Fixed issue: if the mouse release util the mouse out on decrese or increse button, the track still take effect.
Progressbar
-----------
Fixed the issue that value option need be set to reflect the setting of labelFormatString and toolTipFormatString option.
Fixed bug: when setting maxValue option's value more than 100, the progressbar renders incorrectly.
Calendar
--------
Now accepts string type date value.
Accordion
---------
"ui-helper-clearfix" css class was added to accordion widget (16002).
Javascript error is observed after setting "ExpandDirection" option to "Top" or "Left" from widget constructor
disabled option does not work.
Multiple issue are observed when ExpandDirection property is set to "left/right" and more than one accordion is on the page
Expander
--------
"Javascript runtime error" observe while expand the content of expander when animated option set to false.
Wijmo-Open v1.3.0
=================
The third major release of of Wijmo 1.x contains a number of bug fixes, breaking changes, and a new upload widget.
* Breaking changes:
We standardized on event naming to ensure consistency within the toolkit. All events are now lower camel-case.
For example, pageindexchanging was renamed to pageIndexChanging.
* Enhancements:
The getState and reset methods were added to the dialog.
The slider now has a minRange option that keeps the thumbs at a minium distance.
The dropdown now has a refresh method.
The event pattern for accordion/expander has changed. The old pattern: $("#accordion").bind("selectedindexchanged", handler)
has been changed to: $("#accordion").bind("wijaccordionelectedIndexChanged", handler). You can also bind the handler in the
ctor: $("#accordion").wijaccordion({ selectedIndexChanged: function (e, index) {}})
Dialog
------
The "dragstop" & "resizestop" events weren't being raised.
The base css class name was changed.
superpanel
----------
Incorrect scrollValue after dragging the scrollbar.
radio
-----
Fixed a bug, change the radio group selector.
checkbox
---------
Getting the value of the checkbox in the change event wasn't working in chrome.
Wijmo-Open v1.2.0
=================
Changes for jQuery 1.6 compatability.
Totally reworked the sample explorer.
Enhancements to the AristO theme.
menu
----
The menu no longer closes and immediately reopens when navigating submenus.
superpanel
----------
Fixed issue : Setting margin in css of handle prevent scrolling to end with continuing pressing down button.
Fixed issue : The scrolled event won't be triggered when scrollTo method is invoked programmatically.
dropdown
--------
Modify the dropdown list's width to select element's width.
tabs
----
Changed the default value of tabTemplate, panelTempate, spinner to empty string ('').
Wijmo-Open v1.1.6
=================
dropdown
------------
Add the select element's attributes to the widget.
Menu
------
If menu is shown as context menu, right clicking the target element was not dislaying/hiding the menu correctly.
splitter
--------
provide the panel2.collapsed option setting.
checkbox
--------
Fixed issue: when the checkbox element is disabled, the checkbox widget can still be checked.
dialog
------
Fixed issue : reopen the dialog and iframe content need to be reloaded.
Fixed issue : override setoption method error.
calendar
---------
Decade view is not reset to month view in popup mode.
superpanel
----------
Changed the options of the scrollBarMode enumerator. "scrollbar"->"scrollBar", "buttonshover" --> "buttonsHover".
The old two options "scrollbar" and "buttonshover" are obsoleted.
Added disabled option of the animationOptions support.
tooltip
-------
Setting "showCallout" to false was causing the widget to throw an exception.
When a page has two modal tooltips, showing the second tooltip and dismissing it was still leaving the modal layer visible.
tabs
-------
Fixed a 'use strict' issue in FF4.
Pages are not inserted inside the content DIV in Left/Right alignment.
Wijmo-Open v1.1.5
===================
tabs
-----
Added 'beforeShow' event, by which user can customize the tab content.
Two new samples werw added to sample collection: ajax.html and customcontent.html
tooltip
-------
Fixed callout css issue in IE7 and IE6.
Fixed the flip collision issue in IE7 and IE6.
progressbar
-----------
Refactored the wijprogressbar.
When the filldirection is north and lableAlign is north, if the progressbar's value label is not show completely in browsers beside IE.
Modified the label css from 'lb_***' to 'wijmo-progressbar-lb-***'.
The destroy method wasn't removing filldirection css class.
When filldirection is 'north' or 'south', the value div has 'ui-corner-left' css class.
Having labelAlign to running and fillDirection to south wasn't working.
The fillDirection=north/south and labelAlign=north/south/east wasn't rendering correctly in non-ie browsers.
Removed startTask and stopTask methods.
menu
----
In flyout mode, mousing slowly between two items was hiding the curent menu.
Submenu was hiding when mousing over a checkbox menu item.
Remove the link "#" behavior.
Modify the keyboard behaviors.
Mousing over an item which contains child items, the item's css class changed from 'ui-state-hover' to 'ui-state-active'.
dialog
------
Fixed bug the position is changed after call the open method of the dialog when dialog restore from minimized.
The pin method wasn't working after the dialog was restored from a minimized state.
Splitter
--------
Fixed the issue that expander isn't centered on the bar for the new style.
Wijmo-Open v1.1.4
===================
Fixed Firefox 4 Release Candidate issues with the following widgets:
- Tooltip
- Calendar
- Superpanel
Synced with jQuery UI 1.8.11
menu
------
Add 'showDelay' and 'hideDelay' options to control showDelay and hideDelay in flyout menu mode.
tooltip, superpanel
--------------------
In setoption method, if the value is a PlainObject, the option value seted wrong.
Splitter
--------
Support setting orientation/splitterDistance/panel1/panel2/fullSplit options using jquery options setting pattern.
Fixed the issue with the unit test for splitter. Changed the expected class name from wijmo-splitter-wrapper to wijmo-wijsplitter-wrapper.
Fixed the issue that setting resizeSettings.ghost takes no effect.
Fixed the issue that resizing the parent splitter can't refresh the child splitter when the child splitter with full-split was put into the panel2 of the parent splitter in chrome and safari.
Refactored the wijsplitter widget for more readable and maintainable.
Change all icon classes to a single arrow. ui-icon-triangle-1-w, ui-icon-triangle-1-e, ui-icon-triangle-1-s, ui-icon-triangle-1-n.
Also adjust centering of the tag for new styling.
Wijmo-Open v1.1.3
===================
** The slider widget can now take an input element as its selector.
** Added listItems options to the list widget.
calendar
-------
Changed event name 'hidding' to 'hiding'.
Fixed issue with yui compressor.
popup
------
Changed event name 'hidding' to 'hiding'.
dialog
------
Fixed bug when minimize the dialog the iframe content will reload.(on FF & Webkit)
Add owner context of the specified seletor.
$(".wijmo-wijdialog-captionbutton", self.uiDialog)
dropdown
---------
Fixed bug with destroy method. remove the 'a' element.
accordion
------
Fixed bug with incorrect selectedIndex value when page contains two or more accordion widgets.
superpanel
----------
Add two events:
-hScrollerActivating
-vScrollerActivating
Fixed bug: When scroller.scrollBarVisibility is set to "true", two horizontal scrollbar painted.
Util
-----
modify the missplled word 'hidding' to 'hiding'.
Menu
------
Fixed a bug when the trigger option is "" click the document, paint the superpanel.
Wijmo-Open v1.1.2
=================
** Breaking changes
Menu - The options that govern the use of animation have been refactored. If your using custom animation be aware of the following changes.
The following options were removed:
* animated
* showAnimated
* hideAnimated
* duration
* showDuration
* hideDuration
The following options were added:
* animation
* showAnimation
* hideAnimation
* slidingAnimation
Splitter - The resizeSettings options has changed. the following options were removed:
* duration
* easing
* disabled
The following options were added to resizeSettings option:
* animationOptions
SuperPanel
----------
Add trim method to trim the items which are splitted from the scrollMode. Fix the issue that selectMode is set to
"scrollBar, buttons", the navigation buttons can't be shown on the superpanel.
Menu
-------
In sliding menu, change the 'wij-menu-breadcrumb' element's class from 'ui-widget-default' to 'ui-state-default'.
Use the default jQuery UI's effect when displaying/hiding a submenu.
Tooltip
--------
Fixed bug: Modify the misspelled word "hidding".
Added ajaxCallback option to allow the contents of the tooltip to be set dynamically.
Add animation option. if showAnimation or hideAnimation is not sepecified, use this option's value.
Added a group option. Prior versions created a unique tooltip dom element for each element in the matched set. We now create one tooltip element for each group.
Wijmo-Open v1.0.1
=============================
"use strict" has been moved into the main closure for all widgets.
Menu
-------
Fixed bug: Setting the animated and duration options wasn't effecting animation.
Calendar
-------
Fixed bug: Exception is fired when clicking a weekend day if the weekDay selection is allowed.
Splitter
--------
Fixed bug : ghost function in Splitter wasn't working correctly.
Remove increment from option.
Dropdown
--------
Fixed bug : Bind event (change,click) was not working in select .
Attach select element event to dropdown.
Splitter
--------
wijsplitter code appears a new problem. This makes the sample of wijmo-open can¡¯t work.
Dialog
------
Fixed: Fire event "resize" when maximized.
Fixed: Icon class when using "toggle" method.
Changes made to version 0.9.0
=============================
Accordion
------
wijlinechart that located inside hidden accordion pane now updated automatically when pane visibility state changed.
Fixed problem with wrong jquery.wijmo.wijutil references for the samples and unit test.
"use strict"; moved into the function scope.
Expander
------
Fixed problem with wrong jquery.wijmo.wijutil references for the samples and unit test.
"use strict"; moved into the function scope.
Changes made to version 0.8.2
=============================
** Breaking changes.**
----------------------
All widgets have been renamed (file and namespaces) to conform to jQuery UI naming patterns.
- The widget names have not changed, in most cases you only need to change the script reference.
- Name change to specific wijmo css classnames.
- The decorator widgets have been renamed.
Calendar
------
Add customizeDate to option, which allows user to customize date cells.
Splitter
------
In nested case, adjust panels width for chrome.
Fix the issue that the panel2 of splitter1 is not abound with whole splitter2.
Add the special css to the splitter.css for ie6 and ie7. Fix the issue that it's hard to grab the resizing handle in ie6/7.
Fixed the bug for ie 6.0 and 7.0 that user can take the panel2 out of the border by dragging the bar to the right edge of splitter.
Dialog
------
Improve source code with JSLint.
Change namespace,file name, css class name.
DropdownDecorator
-----------------
Removed the z-index from the outermost element and added z-index when necessary. The dropdown list can be covered by other dom elements.
Add z-index to the outermost element when browser is ie6. The dropdown list can be covered by other dom elements in IE6.
Use stop method to stop the uncomplete animation. Sometimes, opening the dropdownlist will push the below dom elements to
another position.
Add ARIA support and rename the widget namespace.
Menu
---------------------
Fixed the css bug in IE6.0 and IE7.0. Add z-index to the outer div and the panret li element and the submenu when the submenu is opened,
remove these z-index when it hides
Remove the templete item hover event and click event.
In IE 6.0, when the submenu is shown completily, set the submenu's overflow css to empty to
fixed the second menu is covered by the first submenu. This is the jQuery's animation's bug.
In IE 9.0, when the submenu is shown completily,wrap an div and unwrap the div to refresh the DOM
to fixed the second menu is covered.
Progressbar
--------------------
Remove the progressbar label's z-index to avoid cover other widget.
Changes made to version 0.8.1
=============================
Accordion
---------
Fixed javascript exception during animation under IE 9. Javascript exception
was thrown when trying to expand/collapse accordion panes.
CheckBoxDecorator
-----------------
Modified checkboxElement.click. The checkbox was not being checked/unchecked
when placed inside a dialog widget.
Fixed a bug that can't use the space bar to check/uncheck a checkbox. Added the keydown event handle th handle the space key down.
Add ARIA support and rename the widget namespace.
Menu, ToolTip
-------------
Upgrade bgiframe from 2.1.1 to 2.1.3-pre. This version fixed the issue that iframe is
still created on the win7 and ie7/8/9.
Fixed the callout not shown correctly. Changed the call out border from dotted to solid.
Add an event before show the submenu.
Add Aria support.
Fixed the keyboard enter key event not show the submenu and hide the last submenu correctly.
Rename the widget namespace.
When click the close button, the url will set a '#' at the end. Fixed this bug.
Progressbar
-----------
Fixed not shown corectly when the fillDirection set to 'north' or 'south'
and labelAlign set to 'north' or south.
Fixed the progress value is not corectly. When the indicatorIncrement is one, don't caculate the progress value.
Add ARIA support and rename the widget namespace.