How to get link settings in flux link wizard - typo3

I am using the flux link wizard in a fluidcontent element (https://fluidtypo3.org/viewhelpers/flux/master/Wizard/LinkViewHelper.html)
like this:
<flux:field.input name="link" label="Link">
<flux:wizard.link />
</flux:field.input>
But the rte settings are not invoked in the link wizard (default classes etc.).
Is it possible to add the default rte settings to the flux link wizard?
I am using
TYPO3 8.7.4 with ckeditor
Flux 8.2.1
fluidcontent 5.2.0
fluidpages 4.1.0

PageTSConfig is not available in Fluid templates, which is why it's currently not possible to fetch those settings.

Related

Add custom color to ckeditor of hippo cms

How do I add a custom colour to ckeditor in hippo cms?
I've gone through tutorials and documentation of both, Hippo CMS and CKEditor but saw that config.js file is missing in the present project.
After going through the documentation all I was able to find was:
-> ckeditor-optimized.jar file in which I'm unable to add plugins
-> plugin folder which does not contain colorbutton, even though it shows in the ckbuilder that it is present.
"color button" is packaged with the Bloomreach CKeditor instance. It is disabled by default. According to [1] you can enable it by adding
{
extraPlugins: 'colorbutton'
}
to the ckeditor configuration [2]
[1] https://documentation.bloomreach.com/library/concepts/document-types/html-fields/ckeditor-plugins.html
[2] https://documentation.bloomreach.com/library/concepts/document-types/html-fields/ckeditor-configuration-properties.html

Remove default pi flexform fields from plugin configuration - typo3

I created a typo3 extension.I have a flex form for configuring my pluggin.The form contains some default typo3 configuration like pluggin mode,storage folder and recursive.I want to hide these fields.How can it is possible?
Try the following in your ext_tables.php file
$TCA['tt_content']['types']['list']['subtypes_excludelist'][$pluginSignature] = 'recursive,select_key,pages';

Cant add tt_news plugin into folder as "use as container"

I installed tt_news 3.6.0 into typo3 6.2.15.
Extension installed successfully.
But i created folder in page tree and i want to use "Use as Container" in Behaviour tab and i dont see this plugin on list.
Any ideas what can be wrong ?

IceFaces 1.8 tags doesn't autocomplete in XHTML, only in JSP

I'm using facing with strange behaviour which I do not understand.
Eclipse : 4.4 Luna
JSF : 1.2
IceFaces : 1.8
Eclipse plugin : JBoss Tools
When I'm editing (JSP Editor) *.xhtml file there is code complete for h:, f: and ui: but not for ice: (IceFaces) available,
but when I renamed file to *.jsp (without any change in its content) code complete is available for all tags.
I was trying this but it wont help. Same thing when using 'JBoss Tools JSP Editor'.
My file content:
<ice:panelGroup xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ice="http://www.icesoft.com/icefaces/component">
<h:inputText value="example" />
</ice:panelGroup>
I really appreciate any help you can provide.
Icefaces plugin interfers with JBoss Tool Editor.
I get the autocomplete to work when i drop the IceFaces plugin.
xhtml extension must be declared in JSP with other JSP extensions.
Window > Preferences > General > Content Types > Text > JSP > Add (xhtml)
Hope this will save time.
Follow these steps:
Add icefaces plugin to eclipse.
Right click on the project and go to properties
Go to project facelets
Add icefaces facelet to project.
That's it. Now you should be getting the autocomplete.
Make sure:
You are using JBoss Tools HTML Editor
You have icefaces-comps.jar in your Eclipse project's class path
Project properties -> JBoss Tools Knowledge Base -> Support is enabled

How to disable Eclipse HTML validation via M2E

I have this project that contains some HTML templates in src/webapp. Those templates have freemarker placeholders like
<# something %>
which make Eclipse complain about unclosed tags.
Is there anything that I could configure in M2E plugin to instruct Eclipse to skip validation of those files?
Try to uncheck some html validations in eclipse using this:
Window > Preferences > Validation