Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
Visual Format Issues 6.7.1
WGBeard
We have some custom code written into VisualFormatConfig.xml. It presents some custom buttons and a drop down list to build some custom tables. See code below:
Custom Table The 3 custom buttons for jsinsertwarninghtml, jsinsertnotehtml, and jsinsertexamplehtml work OK. But Visual Format seems to choke on the popup name="tablepopup" code. Is this an issue with visual format 6.7.1? I can provide the additional javascript code for this functionality if it is needed.Any help would be greatly appreciated. We are trying to upgrade from 6.1.0 to 6.7.1 but have been dealing with numerous issues, this being one of those. Any our target for implementation is the middle of March.
Find more posts tagged with
Comments
DougD
The structure is not quite correct. The popup tag must be outside the menu element. Additionally, there may already be a popup named 'tablepopup'. Names must be unique.
[left]
[/left]
You may validate the XML using the config.xsd schema located in the iw/ewebeditpro20/ folder. It is also available at
http://dev.ektron.com/ewebeditpro5/config.xsd
.
DougD
Example
[menu name="editbar" newrow="false" showbuttonscaptions="false" wrap="false"]
:
[button command="cmdtable" popup="tablepopup"/]
:
[/menu]
[popup name="tablepopup"]
[button command="jsinstable"/]
[button command="cmdinsertrow"/]
[button command="cmdinsertcolumn"/]
[button command="cmdinsertcell"/]
[button command="cmddeleterows"/]
[button command="cmddeletecolumns"/]
[button command="cmddeletecells"/]
[button command="cmdmergecells"/]
[button command="cmdsplitcell"/]
[button command="cmdtableproperties"/]
[button command="cmdcellproperties"/]
[button command="js508table"/]
[/popup]