Form Embedding Support in formsflow.ai - formsflow.ai

I’m using the latest formsflow.ai v5.0.0. Is there any way I could embed the form created with the formsflow.ai platform to another existing application outside the formsflow.ai ?
Giving a sample screenshot of form designed in the Designer step, Could get this for a client login user in the application to Submit. Would need to get it embedded without using any Iframe.

Yes you can embed the form created with the formsflow.ai platform to another existing application outside the formsflow.ai. For that you can refer our documentation.formsflow.ai documentation
step 1 click above mentioned link and go to features.
step 2 There you can see the option for form embedding. Follow the instructions as per the documentation.
Then you can embed the forms inside your application

Related

Advanced features with Flutter Driver (or Silenium/Ghost Inspector)

Looking for a UI integration test strategy for Flutter. We'd love to use Silenium/Ghost Inspector but seems that is not practical due to lack of html id's or CSS classes in Flutter (Add id or name property or other means of identification for Flutter Web applications?). Or has anyone found a way round that?
In the meantime Flutter Driver has only very basic documentation for simple tests like finding a button and pressing the button. Anyone know if I can do other operations like navigate to a specific page (e.g. using a # url fragment), test a link which leads to an external site, check visual setup of the page against an image, and other such tests which would be standard in Silenium and the like.
Thanks!!
Well seems Flutter Driver is still very limited so I have instead found a strategy for using Selenium, posted full details here:
Strategy to use Selenium browser testing with Flutter Web apps

Integrate existing TouchUI component into RTE - AEM 6.1

I'm looking to see if it's possible to integrate an existing AEM Component that I've developed (lets say button component) into the RTE.
I've read the following blog posts
http://experience-aem.blogspot.com/2015/01/aem-6-sp1-touchui-richtext-editor-color-picker-plugin.html
http://experience-aem.blogspot.com/2015/09/aem-61-touch-ui-rich-text-editor-rte-browse-insert-image.html
I've also read the documentation (which is non existent).
I'm not looking to recreate the exact same component just for the RTE, this would need us to maintain two separate code bases, recreate the custom logic we have in the already existing component which has been tested and automation.
But most of all, go against best practices as we want everything to be agnostic.

how to put a comment while creating a version in aem 6.1?

I want to put a comment in a particular version of a page.
It gives an option to put the comment but its not specific to a particular version.
Is there a way to put the comment while creating the version in AEM6.1?
You Can always create a comment while creating a page version from your Sidekick "Versioning" tab
Good Observation. As per the Adobe Documentation AEM 6.1 working with page versions These are the steps to be followed to created the version of the page.
You can create a version of your resource from the timeline tab:
Navigate to show the page for which you want to create a version (In fact it is parent level).
Select the page in selection mode.
Open the Timeline column.
Click/tap on the arrowhead by the comment field to list the options:
Select Save as Version and confirm with Create.
The information in the timeline will be updated to indicate the new version.
And here i have noticed that the comments pushed via touch UI is not considering while Version node creation.
A little close observation at the node version properties that got created for the Classic UI vs Touch UI versions for the page. The cq:versionComment is missing (not created) for Touch UI process.
The verions 1.0 and 1.2 has created with touch UI and version 1.1 created by using Classic UI

How to put multiple forms in the same page using joomla?

I'm using CKForms to create 3 forms, so far, they are independent components, I would like to put them in the same page.
This manual could help :
http://joomlacode.org/gf/download/frsrelease/12021/48586/manual_ckforms-EN-1.3.4.pdf
In order to use multiple instances of the same component in a joomla page, you have to check if there is a module or a plugin available.
If there is an option for a module you could publish each instance in a module position.
If there is a plugin, you could create an article (or a module in some cases) and add plugin code to load plugin instance.
Checking CKForms site I could see that there are both options.
Hope this helps

Google web toolkits - multiple pages

On the google website there an example of a simple GWT appliatoin, following is a link:
http://code.google.com/webtoolkit/doc/1.6/tutorial/create.html
The above application has a host page:StockWatcher.html
and StockWatcher.java is the entry point.
If I wanted to add more html pages to this application, we keep one single host page and the entry point will add different panels depending on which link the user clicked on? In this case, how to know which link the user clicked on? If I create a navigation panel and each link has a request parameter, then after the user clicks on the link, How to get the request parameter?
Are there any tutorials available online on how to create a fully functional application? The one example google provides is too simple.
Thanks so much in advance
You have two options to have multiple page web application using gwt.
1) Use gwt history feature and listen for the history change. In this approach at the initial page load itself browser downloads all the javascripts(Including the widgets which are not useful in current link). Still this can be avoided by using gwt code splitting.
2) Create multiple modules. In this case you have to create multiple html pages and GWT entry points. For each major functionality create a gwt module and link that with [modulename].html file. In this approach browser downloads only particular feature's javascript. Not all the javascripts.
Based on your application requirement you can pick one of the option. IMHO I would suggesst second option.