Can the IBM Connections rich text editor be extended with OpenSocial gadgets? - opensocial

Similar to the same way that the "Share" button can be extended with OpenSocial, can you add buttons to the rich text editor that would call gadgets?
I'm thinking that when you click on a button in the editor a dialog box appears which could be a gadget container - similar to the Share dialog.
Is this possible? Is there any documentation?
Thanks ;)

No it is not possible. Can you provide more details on your use case?

Is what you want similar to what Snapps is doing with SnappLinks?
http://www.snapps.com/snaweb.nsf
If so, seems possible. ;-)

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.

TinyMCE Editor in SugarCRM

I just want to add some buttons in TinyMCE Editor in SugarCRM. I wrote standard code for add Buttons but all buttons is not show up in "Quick email compose", I have problems with tablecontrols, advhr and preview buttons in Quick email compose for Sugar.
Any idea???
Thanks.
I know it has been a while since #Jordan sent this, but if it can help someone..
SugarCRM made this :
http://support.sugarcrm.com/04_Find_Answers/03_Developers/100Customization/Modifying_the_TinyMCE_Editor

Highlight the search button in key board in blue when typing in it in iphone sdk

How to make the search button in the key board as blue back ground when a user enter the text into the search box.In iphone for search functionality search button in the key board is becoming blue. How to implement this functionality. I think it is possible to do but i don't know... Please help me.
Thank you,
Madan mohan
Open your xib file in interface builder, then click on your attribute inspector (command-1). Then change this setting:
Now that I re-read your question maybe you were asking how to implement that search functionality programatically... Is that the case?
EDIT: Ok, if you want to do it programatically then you need to implement UITextInputTraits. Check this documentation out: http://developer.apple.com/library/ios/#documentation/uikit/reference/UITextInputTraits_Protocol/Reference/UITextInputTraits.html
I think it's going to be a straight-forward copy from the screenshot that I provided.

Zend Framework: Highlight Current Link in menu

As stated in question title, is it possible in any way to highlight current link in menu? Menu is pure HTML, created manually.
Sergio E.
I know how to do this. Using:
Zend_Controller_Front::getInstance()->getRequest()->getControllerName();
How to make this variable accessible in every controller? :)