Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のように、ポップアップ プロンプトから CDI マネージド Bean に値を渡すことは可能ですか。
h:commandButton image="/resources/images/editButton.png" onclick='mytext = prompt("Enter text: ")' action='#{myBean.foo(mytext)}'
プロンプトが開き、foo メソッドが呼び出されますが、mytext 値を渡すにはどうすればよいですか?
非表示の入力を作成し、JS を変更してその入力の値を非表示フィールドに設定し、それをサーバーに送信する必要があります。