0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【IBM Business Automation Workflow】Coachのオブジェクトを非表示にする

Posted at

Coachのオブジェクトの表示・非表示を動的に切り替えようとして、ドキュメントを探すのに苦労したので、メモしておきます。

方法

表示領域を確保したまま、表示・非表示を切り替える

visibility:hiddenですね。

// 表示する
${対象のコントロールID}.setVisible(true);

// 非表示にする
${対象のコントロールID}.setVisible(false);

${My_Control}.setVisible(true);
${My_Control}.setVisible(false);

表示領域を残さずに、表示・非表示を切り替える

display:noneですな。

// 表示する
${対象のコントロールID}.context.setDisplay(true);

// 非表示にする
${対象のコントロールID}.context.setDisplay(false);

${My_Control}.context.setDisplay(true);
${My_Control}.context.setDisplay(false);

詳細

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?