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

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: fckcontextmenuseparator.js
  12.  *  FCKContextMenuSeparator Class: represents a separator in the toolbar.
  13.  * 
  14.  * File Authors:
  15.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  16.  */
  17. var FCKContextMenuSeparator = function()
  18. {
  19. }
  20. FCKContextMenuSeparator.prototype.CreateTableRow = function( targetTable )
  21. {
  22. // Creates the <TR> element.
  23. this._Row = targetTable.insertRow(-1) ;
  24. this._Row.className = 'CM_Separator' ;
  25. var oCell = this._Row.insertCell(-1) ;
  26. oCell.className = 'CM_Icon' ;
  27. oCell = this._Row.insertCell(-1) ;
  28. oCell.className = 'CM_Label' ;
  29. oCell.innerHTML = '<div></div>' ;
  30. }
  31. FCKContextMenuSeparator.prototype.SetVisible = function( isVisible )
  32. {
  33. this._Row.style.display = isVisible ? '' : 'none' ;
  34. }
  35. FCKContextMenuSeparator.prototype.RefreshState = function()
  36. {
  37. // Do nothing... its state doesn't change.
  38. /*
  39. Sample output.
  40. -----------------------------------------
  41. <tr class="CM_Separator">
  42. <td class="CM_Icon"></td>
  43. <td class="CM_Label"><div></div></td>
  44. </tr>
  45. */