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

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: fckspecialcombo.js
  12.  *  FCKSpecialCombo Class: represents a special combo.
  13.  * 
  14.  * File Authors:
  15.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  16.  */
  17. var FCKSpecialCombo = function( caption )
  18. {
  19. // Default properties values.
  20. this.FieldWidth = 80 ;
  21. this.PanelWidth = 130 ;
  22. this.PanelMaxHeight = 150 ;
  23. this.Label = ' ' ;
  24. this.Caption = caption ;
  25. this.Enabled = true ;
  26. this.Items = new Object() ;
  27. this._Panel = new FCKPanel() ;
  28. this._Panel.StyleSheet = FCKConfig.SkinPath + 'fck_contextmenu.css' ;
  29. this._Panel.Create() ;
  30. this._Panel.PanelDiv.className += ' SC_Panel' ;
  31. this._Panel.PanelDiv.innerHTML = '<table cellpadding="0" cellspacing="0" width="100%" style="TABLE-LAYOUT: fixed"><tr><td nowrap></td></tr></table>' ;
  32. this._ItemsHolderEl = this._Panel.PanelDiv.getElementsByTagName('TD')[0] ;
  33. }
  34. function FCKSpecialCombo_ItemOnMouseOver()
  35. {
  36. this.className += ' SC_ItemOver' ;
  37. }
  38. function FCKSpecialCombo_ItemOnMouseOut()
  39. {
  40. this.className = this.originalClass ;
  41. }
  42. function FCKSpecialCombo_ItemOnClick()
  43. {
  44. this.FCKSpecialCombo._Panel.Hide() ;
  45. this.FCKSpecialCombo.SetLabel( this.FCKItemLabel ) ;
  46. if ( typeof( this.FCKSpecialCombo.OnSelect ) == 'function' )
  47. this.FCKSpecialCombo.OnSelect( this.FCKItemID, this ) ;
  48. }
  49. FCKSpecialCombo.prototype.AddItem = function( id, html, label )
  50. {
  51. // <div class="SC_Item" onmouseover="this.className='SC_Item SC_ItemOver';" onmouseout="this.className='SC_Item';"><b>Bold 1</b></div>
  52. var oDiv = this._ItemsHolderEl.appendChild( this._Panel.Document.createElement( 'DIV' ) ) ;
  53. oDiv.className = oDiv.originalClass = 'SC_Item' ;
  54. oDiv.innerHTML = html ;
  55. oDiv.FCKItemID = id ;
  56. oDiv.FCKItemLabel = label ? label : id ;
  57. oDiv.FCKSpecialCombo = this ;
  58. oDiv.Selected = false ;
  59. oDiv.onmouseover = FCKSpecialCombo_ItemOnMouseOver ;
  60. oDiv.onmouseout = FCKSpecialCombo_ItemOnMouseOut ;
  61. oDiv.onclick = FCKSpecialCombo_ItemOnClick ;
  62. this.Items[ id.toString().toLowerCase() ] = oDiv ;
  63. return oDiv ;
  64. }
  65. FCKSpecialCombo.prototype.SelectItem = function( itemId )
  66. {
  67. itemId = itemId ? itemId.toString().toLowerCase() : '' ;
  68. var oDiv = this.Items[ itemId ] ;
  69. if ( oDiv )
  70. {
  71. oDiv.className = oDiv.originalClass = 'SC_ItemSelected' ;
  72. oDiv.Selected = true ;
  73. }
  74. }
  75. FCKSpecialCombo.prototype.DeselectAll = function()
  76. {
  77. for ( var i in this.Items )
  78. {
  79. this.Items[i].className = this.Items[i].originalClass = 'SC_Item' ;
  80. this.Items[i].Selected = false ;
  81. }
  82. }
  83. FCKSpecialCombo.prototype.SetLabelById = function( id )
  84. {
  85. id = id ? id.toString().toLowerCase() : '' ;
  86. var oDiv = this.Items[ id ] ;
  87. this.SetLabel( oDiv ? oDiv.FCKItemLabel : '' ) ;
  88. }
  89. FCKSpecialCombo.prototype.SetLabel = function( text )
  90. {
  91. this.Label = text.length == 0 ? '&nbsp;' : text ;
  92. if ( this._LabelEl )
  93. this._LabelEl.innerHTML = this.Label ;
  94. }
  95. FCKSpecialCombo.prototype.SetEnabled = function( isEnabled )
  96. {
  97. this.Enabled = isEnabled ;
  98. this._OuterTable.className = isEnabled ? '' : 'SC_FieldDisabled' ;
  99. }
  100. FCKSpecialCombo.prototype.Create = function( targetElement )
  101. {
  102. this._OuterTable = targetElement.appendChild( document.createElement( 'TABLE' ) ) ;
  103. this._OuterTable.cellPadding = 0 ;
  104. this._OuterTable.cellSpacing = 0 ;
  105. this._OuterTable.insertRow(-1) ;
  106. if ( this.Caption && this.Caption.length > 0 )
  107. {
  108. var oCaptionCell = this._OuterTable.rows[0].insertCell(-1) ;
  109. oCaptionCell.unselectable = 'on' ;
  110. oCaptionCell.innerHTML = this.Caption ;
  111. oCaptionCell.className = 'SC_FieldCaption' ;
  112. }
  113. // Create the main DIV element.
  114. var oField = this._OuterTable.rows[0].insertCell(-1).appendChild( document.createElement( 'DIV' ) ) ;
  115. oField.className = 'SC_Field' ;
  116. oField.style.width = this.FieldWidth + 'px' ;
  117. oField.innerHTML = '<table width="100%" cellpadding="0" cellspacing="0" style="TABLE-LAYOUT: fixed;" unselectable="on"><tbody><tr><td class="SC_FieldLabel" unselectable="on"><label unselectable="on">&nbsp;</label></td><td class="SC_FieldButton" unselectable="on">&nbsp;</td></tr></tbody></table>' ;
  118. this._LabelEl = oField.getElementsByTagName('label')[0] ;
  119. this._LabelEl.innerHTML = this.Label ;
  120. /* Events Handlers */
  121. oField.SpecialCombo = this ;
  122. oField.onmouseover = FCKSpecialCombo_OnMouseOver ;
  123. oField.onmouseout = FCKSpecialCombo_OnMouseOut ;
  124. oField.onclick = FCKSpecialCombo_OnClick ;
  125. }
  126. function FCKSpecialCombo_OnMouseOver()
  127. {
  128. if ( this.SpecialCombo.Enabled )
  129. this.className = 'SC_Field SC_FieldOver' ;
  130. }
  131. function FCKSpecialCombo_OnMouseOut()
  132. {
  133. this.className='SC_Field' ;
  134. }
  135. function FCKSpecialCombo_OnClick( e )
  136. {
  137. // For Mozilla we must stop the event propagation to avoid it hiding 
  138. // the panel because of a click outside of it.
  139. if ( e )
  140. {
  141. e.stopPropagation() ;
  142. FCKPanelEventHandlers.OnDocumentClick( e ) ;
  143. }
  144. if ( this.SpecialCombo.Enabled )
  145. {
  146. if ( typeof( this.SpecialCombo.OnBeforeClick ) == 'function' )
  147. this.SpecialCombo.OnBeforeClick( this.SpecialCombo ) ;
  148. if ( this.SpecialCombo._ItemsHolderEl.offsetHeight > this.SpecialCombo.PanelMaxHeight )
  149. this.SpecialCombo._Panel.PanelDiv.style.height = this.SpecialCombo.PanelMaxHeight + 'px' ;
  150. else
  151. this.SpecialCombo._Panel.PanelDiv.style.height = this.SpecialCombo._ItemsHolderEl.offsetHeight + 'px' ;
  152. this.SpecialCombo._Panel.PanelDiv.style.width = this.SpecialCombo.PanelWidth + 'px' ;
  153. if ( FCKBrowserInfo.IsGecko )
  154. this.SpecialCombo._Panel.PanelDiv.style.overflow = '-moz-scrollbars-vertical' ;
  155. this.SpecialCombo._Panel.Show( 0, this.offsetHeight, this, null, this.SpecialCombo.PanelMaxHeight, true ) ;
  156. }
  157. return false ;
  158. }
  159. /* 
  160. Sample Combo Field HTML output:
  161. <div class="SC_Field" style="width: 80px;">
  162. <table width="100%" cellpadding="0" cellspacing="0" style="table-layout: fixed;">
  163. <tbody>
  164. <tr>
  165. <td class="SC_FieldLabel"><label>&nbsp;</label></td>
  166. <td class="SC_FieldButton">&nbsp;</td>
  167. </tr>
  168. </tbody>
  169. </table>
  170. </div>
  171. */