Hey,
i have build a blueprint template with two pages in the wizard dialog.
Is there a way to pass data from the first page to the second page?
Soy
{template .page1Form}
<form action="#" method="post" class="aui">
<fieldset>
<div name="Definition" class="field-group">
<label for="vtopics">{getText('my.blueprint.form.label.title.vTopics')}</label>
<input id="vtopics" class="text" type="text" name="vTopics" placeholder="{getText('my.blueprint.form.label.title.vTopics.placeholder')}">
</div>
</fieldset>
</form>
{/template}
{template .page2Form}
<form action="#" method="post" id="hello-blueprint-form" class="aui">
<fieldset>
<div name="Count" class="field-group">
{loop through vTopics...}
</div>
</fieldset>
</form>
{/template}
Atlassian xml
<!-- Blueprint -->
<blueprint key="blueprint" index-key="index" content-template-key="protokoll-template" i18n-name-key="my.blueprint.name">
<dialog-wizard key="protokoll-wizard">
<dialog-page id="page1Id" template-key="Plugins.Blueprint.Protokoll.page1Form" title-key="my.blueprint.wizard.page1.title" last="false"
description-header-key="my.blueprint.wizard.page1.desc.header" description-content-key="my.blueprint.wizard.page1.desc.content" />
<dialog-page id="page2Id" template-key="Plugins.Blueprint.Protokoll.page2Form" title-key="my.blueprint.wizard.page2.title" last="true" />
</dialog-wizard>
</blueprint>
So there are these two pages in the dialog and i want to process a loop through a value typed in in the first page.
Thank you :)
EDIT:
Got it working with "soyRenderContext"
Hi Sven,
Could you elaborate further? Maybe attach some screenshot of what you are trying to achieve? :)
If you are able to use javascript within your code you should be able to.
I'm not familiar with wizard blueprints, sorry :(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.