I saw in the JSF WorkflowUI that this tag is used :

< ic:ch.ivyteam.wf.login.Login id="loginPageComponent" />

In the interface of the login html dialog, the start method is

start():void

with no parameter or return. Is it possible to use this tag while passing parameters and retrieving a result by calling this start method ?

start(String):String

asked 23.04.2015 at 22:37

dbalasse's gravatar image

dbalasse
(suspended)
accept rate: 25%


Yes this is possible. See the Component Demos of the Html Dialog Demo Project. You can find the Html Dialog Demo project under "Ivy Designer Installation"/applications/samples. The usage in the jsf xhtml could the look like this:

<ic:ch.ivyteam.htmldialog.demo.component.PersonComponent
  person="#{data.person}">
</ic:ch.ivyteam.htmldialog.demo.component.PersonComponent>

The start method of the PersonComponent would then be:

start(Person person):void
link

answered 24.04.2015 at 08:19

Christian%20Strebel's gravatar image

Christian St... ♦
3.2k31338
accept rate: 88%

edited 24.04.2015 at 08:20

Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "Title")
  • image?![alt text](/path/img.jpg "Title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Tags:

×79
×4
×4

Asked: 23.04.2015 at 22:37

Seen: 5,953 times

Last updated: 24.04.2015 at 08:20