3

I passed dynamic value for oncomplete attribute

is this correct way to do? (not working)

oncomplete="if(myBean.isValid){Confirmation.show()}"/>
4

1 回答 1

0

不,这是错误的。试试这个

oncomplete="{buyerDelegateBean.valid eq 'true'?Confirmation.show():'else logic'}"/>


我希望valid在您的代码片段中是一个布尔值

于 2013-04-18T10:14:47.977 回答