fck_select.js
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:4k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. /*
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2005 Frederico Caldeira Knabben
  4.  * 
  5.  * Licensed under the terms of the GNU Lesser General Public License:
  6.  *  http://www.opensource.org/licenses/lgpl-license.php
  7.  * 
  8.  * For further information visit:
  9.  *  http://www.fckeditor.net/
  10.  * 
  11.  * File Name: fck_select.js
  12.  *  Scripts for the fck_select.html page.
  13.  * 
  14.  * File Authors:
  15.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  16.  */
  17. function Select( combo )
  18. {
  19. var iIndex = combo.selectedIndex ;
  20. oListText.selectedIndex = iIndex ;
  21. oListValue.selectedIndex = iIndex ;
  22. var oTxtText = document.getElementById( "txtText" ) ;
  23. var oTxtValue = document.getElementById( "txtValue" ) ;
  24. oTxtText.value = oListText.value ;
  25. oTxtValue.value = oListValue.value ;
  26. }
  27. function Add()
  28. {
  29. var oTxtText = document.getElementById( "txtText" ) ;
  30. var oTxtValue = document.getElementById( "txtValue" ) ;
  31. AddComboOption( oListText, oTxtText.value, oTxtText.value ) ;
  32. AddComboOption( oListValue, oTxtValue.value, oTxtValue.value ) ;
  33. oListText.selectedIndex = oListText.options.length - 1 ;
  34. oListValue.selectedIndex = oListValue.options.length - 1 ;
  35. oTxtText.value = '' ;
  36. oTxtValue.value = '' ;
  37. oTxtText.focus() ;
  38. }
  39. function Modify()
  40. {
  41. var iIndex = oListText.selectedIndex ;
  42. if ( iIndex < 0 ) return ;
  43. var oTxtText = document.getElementById( "txtText" ) ;
  44. var oTxtValue = document.getElementById( "txtValue" ) ;
  45. oListText.options[ iIndex ].innerHTML = oTxtText.value ;
  46. oListText.options[ iIndex ].value = oTxtText.value ;
  47. oListValue.options[ iIndex ].innerHTML = oTxtValue.value ;
  48. oListValue.options[ iIndex ].value = oTxtValue.value ;
  49. oTxtText.value = '' ;
  50. oTxtValue.value = '' ;
  51. oTxtText.focus() ;
  52. }
  53. function Move( steps )
  54. {
  55. ChangeOptionPosition( oListText, steps ) ;
  56. ChangeOptionPosition( oListValue, steps ) ;
  57. }
  58. function Delete()
  59. {
  60. RemoveSelectedOptions( oListText ) ;
  61. RemoveSelectedOptions( oListValue ) ;
  62. }
  63. function SetSelectedValue()
  64. {
  65. var iIndex = oListValue.selectedIndex ;
  66. if ( iIndex < 0 ) return ;
  67. var oTxtValue = document.getElementById( "txtSelValue" ) ;
  68. oTxtValue.value = oListValue.options[ iIndex ].value ;
  69. }
  70. // Moves the selected option by a number of steps (also negative)
  71. function ChangeOptionPosition( combo, steps )
  72. {
  73. var iActualIndex = combo.selectedIndex ;
  74. if ( iActualIndex < 0 )
  75. return ;
  76. var iFinalIndex = iActualIndex + steps ;
  77. if ( iFinalIndex < 0 )
  78. iFinalIndex = 0 ;
  79. if ( iFinalIndex > ( combo.options.lenght - 1 ) )
  80. iFinalIndex = combo.options.lenght - 1 ;
  81. if ( iActualIndex == iFinalIndex )
  82. return ;
  83. var oOption = combo.options[ iActualIndex ] ;
  84. var sText = oOption.innerHTML ;
  85. var sValue = oOption.value ;
  86. combo.remove( iActualIndex ) ;
  87. oOption = AddComboOption( combo, sText, sValue, null, iFinalIndex ) ;
  88. oOption.selected = true ;
  89. }
  90. // Remove all selected options from a SELECT object
  91. function RemoveSelectedOptions(combo)
  92. {
  93. // Save the selected index
  94. var iSelectedIndex = combo.selectedIndex ;
  95. var oOptions = combo.options ;
  96. // Remove all selected options
  97. for ( var i = oOptions.length - 1 ; i >= 0 ; i-- )
  98. {
  99. if (oOptions[i].selected) combo.remove(i) ;
  100. }
  101. // Reset the selection based on the original selected index
  102. if ( combo.options.length > 0 )
  103. {
  104. if ( iSelectedIndex >= combo.options.length ) iSelectedIndex = combo.options.length - 1 ;
  105. combo.selectedIndex = iSelectedIndex ;
  106. }
  107. }
  108. // Add a new option to a SELECT object (combo or list)
  109. function AddComboOption( combo, optionText, optionValue, documentObject, index )
  110. {
  111. var oOption ;
  112. if ( documentObject )
  113. oOption = documentObject.createElement("OPTION") ;
  114. else
  115. oOption = document.createElement("OPTION") ;
  116. if ( index != null )
  117. combo.options.add( oOption, index ) ;
  118. else
  119. combo.options.add( oOption ) ;
  120. oOption.innerHTML = optionText.length > 0 ? optionText : '&nbsp;' ;
  121. oOption.value     = optionValue ;
  122. return oOption ;
  123. }