How do I get the value of a select item from a page without submitting in Apex 5?

一个人想着一个人 提交于 2019-12-04 16:46:44

Create a Dynamic Action which fires on "Change". As a true action:

  • Action: "Set Value"
  • Set Type: "JavaScript Expression"
  • Javascript Expression: apex.item(this.triggeringElement).getValue()
  • Choose the item to set the value with under "Affected Elements"

This will get the value of the element which triggered the change event and will set it to the affected element you choose. Note though: the value of the select list will be the underlying return value (eg ID), NOT the display value.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!