fck_select.js
上传用户:ah_jiwei
上传日期:2022-07-24
资源大小:54044k
文件大小:5k
源码类别:

数据库编程

开发平台:

Visual C++

  1. /*
  2.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  * Copyright (C) 2003-2007 Frederico Caldeira Knabben
  4.  *
  5.  * == BEGIN LICENSE ==
  6.  *
  7.  * Licensed under the terms of any of the following licenses at your
  8.  * choice:
  9.  *
  10.  *  - GNU General Public License Version 2 or later (the "GPL")
  11.  *    http://www.gnu.org/licenses/gpl.html
  12.  *
  13.  *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  14.  *    http://www.gnu.org/licenses/lgpl.html
  15.  *
  16.  *  - Mozilla Public License Version 1.1 or later (the "MPL")
  17.  *    http://www.mozilla.org/MPL/MPL-1.1.html
  18.  *
  19.  * == END LICENSE ==
  20.  *
  21.  * Scripts for the fck_select.html page.
  22.  */
  23. function Select( combo )
  24. {
  25. var iIndex = combo.selectedIndex ;
  26. oListText.selectedIndex = iIndex ;
  27. oListValue.selectedIndex = iIndex ;
  28. var oTxtText = document.getElementById( "txtText" ) ;
  29. var oTxtValue = document.getElementById( "txtValue" ) ;
  30. oTxtText.value = oListText.value ;
  31. oTxtValue.value = oListValue.value ;
  32. }
  33. function Add()
  34. {
  35. var oTxtText = document.getElementById( "txtText" ) ;
  36. var oTxtValue = document.getElementById( "txtValue" ) ;
  37. AddComboOption( oListText, oTxtText.value, oTxtText.value ) ;
  38. AddComboOption( oListValue, oTxtValue.value, oTxtValue.value ) ;
  39. oListText.selectedIndex = oListText.options.length - 1 ;
  40. oListValue.selectedIndex = oListValue.options.length - 1 ;
  41. oTxtText.value = '' ;
  42. oTxtValue.value = '' ;
  43. oTxtText.focus() ;
  44. }
  45. function Modify()
  46. {
  47. var iIndex = oListText.selectedIndex ;
  48. if ( iIndex < 0 ) return ;
  49. var oTxtText = document.getElementById( "txtText" ) ;
  50. var oTxtValue = document.getElementById( "txtValue" ) ;
  51. oListText.options[ iIndex ].innerHTML = HTMLEncode( oTxtText.value ) ;
  52. oListText.options[ iIndex ].value = oTxtText.value ;
  53. oListValue.options[ iIndex ].innerHTML = HTMLEncode( oTxtValue.value ) ;
  54. oListValue.options[ iIndex ].value = oTxtValue.value ;
  55. oTxtText.value = '' ;
  56. oTxtValue.value = '' ;
  57. oTxtText.focus() ;
  58. }
  59. function Move( steps )
  60. {
  61. ChangeOptionPosition( oListText, steps ) ;
  62. ChangeOptionPosition( oListValue, steps ) ;
  63. }
  64. function Delete()
  65. {
  66. RemoveSelectedOptions( oListText ) ;
  67. RemoveSelectedOptions( oListValue ) ;
  68. }
  69. function SetSelectedValue()
  70. {
  71. var iIndex = oListValue.selectedIndex ;
  72. if ( iIndex < 0 ) return ;
  73. var oTxtValue = document.getElementById( "txtSelValue" ) ;
  74. oTxtValue.value = oListValue.options[ iIndex ].value ;
  75. }
  76. // Moves the selected option by a number of steps (also negative)
  77. function ChangeOptionPosition( combo, steps )
  78. {
  79. var iActualIndex = combo.selectedIndex ;
  80. if ( iActualIndex < 0 )
  81. return ;
  82. var iFinalIndex = iActualIndex + steps ;
  83. if ( iFinalIndex < 0 )
  84. iFinalIndex = 0 ;
  85. if ( iFinalIndex > ( combo.options.length - 1 ) )
  86. iFinalIndex = combo.options.length - 1 ;
  87. if ( iActualIndex == iFinalIndex )
  88. return ;
  89. var oOption = combo.options[ iActualIndex ] ;
  90. var sText = HTMLDecode( oOption.innerHTML ) ;
  91. var sValue = oOption.value ;
  92. combo.remove( iActualIndex ) ;
  93. oOption = AddComboOption( combo, sText, sValue, null, iFinalIndex ) ;
  94. oOption.selected = true ;
  95. }
  96. // Remove all selected options from a SELECT object
  97. function RemoveSelectedOptions(combo)
  98. {
  99. // Save the selected index
  100. var iSelectedIndex = combo.selectedIndex ;
  101. var oOptions = combo.options ;
  102. // Remove all selected options
  103. for ( var i = oOptions.length - 1 ; i >= 0 ; i-- )
  104. {
  105. if (oOptions[i].selected) combo.remove(i) ;
  106. }
  107. // Reset the selection based on the original selected index
  108. if ( combo.options.length > 0 )
  109. {
  110. if ( iSelectedIndex >= combo.options.length ) iSelectedIndex = combo.options.length - 1 ;
  111. combo.selectedIndex = iSelectedIndex ;
  112. }
  113. }
  114. // Add a new option to a SELECT object (combo or list)
  115. function AddComboOption( combo, optionText, optionValue, documentObject, index )
  116. {
  117. var oOption ;
  118. if ( documentObject )
  119. oOption = documentObject.createElement("OPTION") ;
  120. else
  121. oOption = document.createElement("OPTION") ;
  122. if ( index != null )
  123. combo.options.add( oOption, index ) ;
  124. else
  125. combo.options.add( oOption ) ;
  126. oOption.innerHTML = optionText.length > 0 ? HTMLEncode( optionText ) : '&nbsp;' ;
  127. oOption.value     = optionValue ;
  128. return oOption ;
  129. }
  130. function HTMLEncode( text )
  131. {
  132. if ( !text )
  133. return '' ;
  134. text = text.replace( /&/g, '&amp;' ) ;
  135. text = text.replace( /</g, '&lt;' ) ;
  136. text = text.replace( />/g, '&gt;' ) ;
  137. return text ;
  138. }
  139. function HTMLDecode( text )
  140. {
  141. if ( !text )
  142. return '' ;
  143. text = text.replace( /&gt;/g, '>' ) ;
  144. text = text.replace( /&lt;/g, '<' ) ;
  145. text = text.replace( /&amp;/g, '&' ) ;
  146. return text ;
  147. }