Modificare il file:
\FckEditor\plugins\groupbox\fckplugin.js
var FCKgroupboxCommand = function() { this.Name = 'groupbox'; } FCKgroupboxCommand.prototype.Execute = function() { //var oEditor = window.parent.InnerDialogLoaded() ; groupHtml = "<fieldset>" ; groupHtml += "<legend>Title</legend>Type text here..." ; groupHtml += "</fieldset>" ; FCK.InsertHtml( groupHtml ) ; } FCKgroupboxCommand.prototype.GetState = function() { return FCK_TRISTATE_OFF; } FCKCommands.RegisterCommand( 'groupbox', new FCKgroupboxCommand()); var ogroupboxItem = new FCKToolbarButton( 'groupbox', "" ) ; ogroupboxItem.IconPath = FCKConfig.PluginsPath + 'groupbox/groupbox.gif' ; ogroupboxItem.Tooltip = FCKLang.groupboxTooltip FCKToolbarItems.RegisterItem( 'groupbox', ogroupboxItem ) ;
[
Íàçàä
]