...
Embedded form layout can be accessed from "http(s)://<mydomain>.emakin.com/app/embed" url. Embedded layout does not show any side bar and only shows to the main content of the form with optionally actions. Example view of the embedded layout of a form.
...
Authentication
Embedded forms needs need valid authentication, so if the user is not logged in before, browser automatically redirected redirects to the login page. Alternatively, you can specify an authentication token to login user automatically and skip login page.
...
Generated authentication tokens are limited to configured based time period and they can be expireget expired. Please always generate new tokens as long as it's needed, and do not store in any place like disk or code.
...
Code Block |
---|
<html> <body> Hello! <iframe src="http://ertan.emakin.com/app/embed?/workitem/d4c1adc7-c9d2-4af0-a2b3-b6d61d88df6d" width="100%" height="600" frameborder="0"></iframe> </body> </html> |
Default configuration is prevents the use emakin in IFrame tag because of security. If you get any error please try to remove "X-XFrame-Options" header from your web configuration file to allow to use emakin in an iframe tag.
Action Toolbar
...
Code Block |
---|
<html> <body> Hello! <iframe src="http://ertan.emakin.com/app/embed?/workitem/d4c1adc7-c9d2-4af0-a2b3-b6d61d88df6d&actions=1&returnUrl=http://localhost" width="100%" height="600" frameborder="0"></iframe> </body> </html> |
...