Update of /cvsroot/thyapi/thyapi/ext
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13437/ext
Modified Files:
packages.js
Log Message:
Commiting file additions and modification from SVN revision 2727 to 2728...
Changes made by vinicius on 2006-01-28 15:45:02 +0100 (Sat, 28 Jan 2006) corresponding to SVN revision 2728 with message:
Listbox with select multiple for IE
Index: packages.js
===================================================================
RCS file: /cvsroot/thyapi/thyapi/ext/packages.js,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** packages.js 27 Jan 2006 10:29:35 -0000 1.15
--- packages.js 28 Jan 2006 13:38:10 -0000 1.16
***************
*** 130,133 ****
--- 130,135 ----
l.add('thyapi.thywidgets.thyGridContents', 'thygridcontents_ie.js', ['thyPanel']);
l.add('thyapi.thywidgets.thyGrid', 'thygrid_ie.js', ['thyGridContents','thyLabelPanel','thyGridCell','thyGridRow','thyVisualCollection']);
+ l.add('thyapi.thywidgets.thyListBox', 'thylistbox_ie.js', ['thyLabelPanel']);
+ l.add('thyapi.thywidgets.thyDropDownBox', 'thydropdownbox_ie.js', ['thyLabelPanel']);
}
else
***************
*** 137,151 ****
l.add('thyapi.thywidgets.thyGridContents', 'thygridcontents.js', ['thyPanel']);
l.add('thyapi.thywidgets.thyGrid', 'thygrid.js', ['thyGridContents','thyLabelPanel','thyGridCell','thyGridRow','thyVisualCollection']);
! }
!
! l.add('thyapi.thywidgets.thyListBox', 'thylistbox.js', ['thyGrid']);
! if (dynapi.ua.ie)
! {
! l.add('thyapi.thywidgets.thyDropDownBox', 'thydropdownbox_ie.js', ['thyLabelPanel']);
! }
! else
! {
l.add('thyapi.thywidgets.thyDropDownBox', 'thydropdownbox.js', ['thyListBox','thyEditBox','thyButton']);
}
l.add('thyapi.thywidgets.thyAbout', 'thyabout.js', ['thyWindow','thyPanel']);
--- 139,146 ----
l.add('thyapi.thywidgets.thyGridContents', 'thygridcontents.js', ['thyPanel']);
l.add('thyapi.thywidgets.thyGrid', 'thygrid.js', ['thyGridContents','thyLabelPanel','thyGridCell','thyGridRow','thyVisualCollection']);
! l.add('thyapi.thywidgets.thyListBox', 'thylistbox.js', ['thyGrid']);
l.add('thyapi.thywidgets.thyDropDownBox', 'thydropdownbox.js', ['thyListBox','thyEditBox','thyButton']);
}
+
l.add('thyapi.thywidgets.thyAbout', 'thyabout.js', ['thyWindow','thyPanel']);
|