fckdialog.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: fckdialog.js
  12.  *  Dialog windows operations.
  13.  * 
  14.  * File Authors:
  15.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  16.  */
  17. var FCKDialog = new Object() ;
  18. // This method opens a dialog window using the standard dialog template.
  19. FCKDialog.OpenDialog = function( dialogName, dialogTitle, dialogPage, width, height, customValue, parentWindow, resizable )
  20. {
  21. // Setup the dialog info.
  22. var oDialogInfo = new Object() ;
  23. oDialogInfo.Title = dialogTitle ;
  24. oDialogInfo.Page = dialogPage ;
  25. oDialogInfo.Editor = window ;
  26. oDialogInfo.CustomValue = customValue ; // Optional
  27. var sUrl = FCKConfig.BasePath + 'fckdialog.html' ;
  28. this.Show( oDialogInfo, dialogName, sUrl, width, height, parentWindow, resizable ) ;
  29. }