1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > 2<!-- 3 * FCKeditor - The text editor for Internet - http://www.fckeditor.net 4 * Copyright (C) 2003-2007 Frederico Caldeira Knabben 5 * 6 * == BEGIN LICENSE == 7 * 8 * Licensed under the terms of any of the following licenses at your 9 * choice: 10 * 11 * - GNU General Public License Version 2 or later (the "GPL") 12 * http://www.gnu.org/licenses/gpl.html 13 * 14 * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") 15 * http://www.gnu.org/licenses/lgpl.html 16 * 17 * - Mozilla Public License Version 1.1 or later (the "MPL") 18 * http://www.mozilla.org/MPL/MPL-1.1.html 19 * 20 * == END LICENSE == 21 * 22 * Button dialog window. 23--> 24<html xmlns="http://www.w3.org/1999/xhtml"> 25<head> 26 <title>Button Properties</title> 27 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 28 <meta content="noindex, nofollow" name="robots" /> 29 <script src="common/fck_dialog_common.js" type="text/javascript"></script> 30 <script type="text/javascript"> 31 32var oEditor = window.parent.InnerDialogLoaded() ; 33 34// Gets the document DOM 35var oDOM = oEditor.FCK.EditorDocument ; 36 37var oActiveEl = oEditor.FCKSelection.GetSelectedElement() ; 38 39window.onload = function() 40{ 41 // First of all, translate the dialog box texts 42 oEditor.FCKLanguageManager.TranslatePage(document) ; 43 44 if ( oActiveEl && oActiveEl.tagName.toUpperCase() == "INPUT" && ( oActiveEl.type == "button" || oActiveEl.type == "submit" || oActiveEl.type == "reset" ) ) 45 { 46 GetE('txtName').value = oActiveEl.name ; 47 GetE('txtValue').value = oActiveEl.value ; 48 GetE('txtType').value = oActiveEl.type ; 49 50 GetE('txtType').disabled = true ; 51 } 52 else 53 oActiveEl = null ; 54 55 window.parent.SetOkButton( true ) ; 56} 57 58function Ok() 59{ 60 oEditor.FCKUndo.SaveUndoStep() ; 61 62 if ( !oActiveEl ) 63 { 64 oActiveEl = oEditor.FCK.EditorDocument.createElement( 'INPUT' ) ; 65 oActiveEl.type = GetE('txtType').value ; 66 oActiveEl = oEditor.FCK.InsertElement( oActiveEl ) ; 67 } 68 69 oActiveEl.name = GetE('txtName').value ; 70 SetAttribute( oActiveEl, 'value', GetE('txtValue').value ) ; 71 72 return true ; 73} 74 75 </script> 76</head> 77<body style="overflow: hidden"> 78 <table width="100%" style="height: 100%"> 79 <tr> 80 <td align="center"> 81 <table border="0" cellpadding="0" cellspacing="0" width="80%"> 82 <tr> 83 <td colspan=""> 84 <span fcklang="DlgCheckboxName">Name</span><br /> 85 <input type="text" size="20" id="txtName" style="width: 100%" /> 86 </td> 87 </tr> 88 <tr> 89 <td> 90 <span fcklang="DlgButtonText">Text (Value)</span><br /> 91 <input type="text" id="txtValue" style="width: 100%" /> 92 </td> 93 </tr> 94 <tr> 95 <td> 96 <span fcklang="DlgButtonType">Type</span><br /> 97 <select id="txtType"> 98 <option fcklang="DlgButtonTypeBtn" value="button" selected="selected">Button</option> 99 <option fcklang="DlgButtonTypeSbm" value="submit">Submit</option> 100 <option fcklang="DlgButtonTypeRst" value="reset">Reset</option> 101 </select> 102 </td> 103 </tr> 104 </table> 105 </td> 106 </tr> 107 </table> 108</body> 109</html> 110