Add color picker to Umbraco Form Settings - forms

I want to add a color picker to umbraco for setting, so when the User create a new form he/she is able to add a background color, text color from the form setting. I have checked for solutions but there is no proper solution for this. i could only find of adding css class in it. Could someone please advice me on this.

You will need to create your own custom Umbraco Forms control to do that. There's documentation at https://our.umbraco.com/documentation/Add-ons/UmbracoForms/Developer/Extending/Adding-a-Fieldtype that guides you through that task.

Related

Rich Text Dialogs for Touch UI in AEM 6.5

I want to create Rich Text dialog in AEM 6.5
I have added the RTE plugins and UI settings but still it is not working.
Please see the attached image of the structure of rich text dialog.
Do we need to write some code or class so that rich text dialogs can work.
Please help.
The best way to figure out if you have done anything wrong is to copy the richtext from /libs/core/wcm/components/text/v1/text/cq:dialog/content/items/tabs/items/properties/items/columns/items/column/items/text to your dialog and check if the RTE is appearing or not. If it is, then compare the one you previously created with this one and figure out what is going wrong.
Always the best approach is to check the OOTB fields structure and compare it with your structure to figure out what is going wrong.
Rich Text Editor in Dialog
It is always better to configure dialogs directly with XML instead of doing it in CRXDE.
To start with you can look into the 'Text Component' dialog which has RTE in its dialog.
Look into the <text>...</text> part in the content.xml of the dialog. Hopefully, you will get a better idea.

Adding custom buttons to the about dialog in eclipse RCP

I'm trying to customize the about dialog in my eclipse RCP application. I already managed to add my logo and to replace the title and the text body as described under Branding Your Application.
I would also like to add some buttons to it: send a feedback or open the wiki page etc.
Is there a way to do it or achieve a similar functionality?
Any help is much appreciated.
The About diaog (org.eclipse.ui.internal.dialogs.AboutDialog) does not support any configuration.
The 'feature image row' you have highlighted is populated from the IBundleGroupProvider array returned by Platform.getBundleGroupProviders(), I don't see any way to add to this.

I need to insert an image between text in aem6.0

I need to insert a small image between text as below..
Please click here to see the example
Can I achieve this by using text and image component? If yes, how? Or any other way to achieve this?
You could do this with image but that would require special handing in your script/jsp/htl.
In most of the cases these images are governed via CSS classes and not dragged and drop. You could use the plugins feature of richtext component to create custom styles and apply them to the text. Refer to the Adobe's document here.
It seems you need to add icon in the text configured via RTE. To achieve this you have to build custom plugin by using Coral/Granite UI. This Link will be helpful to develop same sort of functionality.

Magento - Color picker in front-end input

Anyone can help me how to add a color picker for a input field in front end. in Javascript folder the color picker script was there how we use that. otherwise help me to add a new color picker Javascript in magento.
Thank you
There are plenty, jPicker being one of them. There are more options in this blog post. All of them should be compatible with magento.

TINYMCE customize link properties

I am trying to customize the TINYMCE editor in my CMS (Umbraco).
CMS should't matter.
I need to know how to add a link property to my TinyMCE link property list.
I am trying to add the Google Tracking script to a link when a person enters a title to my textbox I have set up in the TinyMCE editor. I have the textbox showing up. But I need to set the property so it shows up when I update the link property.
I know I can add the Google Tracking script manually, but this option is not user friendly for people who do no know HTML. Trying to make this user friendly, I need to add the property when the link gets added to the content.
Any help would be greatly appreciated.
Thanks.
You may change properties (example here changes the setting paste_remove_styles)
editor.settings.paste_remove_styles = true,
Be aware that changing these settings won't work if that setting get red only when initializing tinymce (i.e. cleanup, content_css, editor_css,...)!
If this does not help you further please provide some more code, so that we can examine your problem deeper.