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

拜拜、爱过 提交于 2019-12-06 10:11:57

问题


I wish to have the user make a choice in a select box and then in a Dymamic Action which waits for the select box to be changed it reads the select box value that was chosen


回答1:


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.



来源:https://stackoverflow.com/questions/39017066/how-do-i-get-the-value-of-a-select-item-from-a-page-without-submitting-in-apex-5

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