我怎么才能用
myfaces.oam.submitForm() 因为提交单选按钮?我试过了
myfaces.oam.submitForm('formName', 'formName:radioButtonsName') 但这似乎行不通。在哪里可以找到此功能的规范?
发布于 2014-11-07 08:55:52
来自google源代码(myfaces-js):OamSubmit.js?r=ad5b5c39ac9e7ecba5f7b20f7cbe3d9ae73a11f3
/**
* does special form submit remapping
* remaps the issuing command link into something
* the decode of the command link on the server can understand
*
* @param formName
* @param linkId
* @param target
* @param params
*/
this.submitForm = function(formName, linkId, target, params) {
// ...
}https://stackoverflow.com/questions/26794693
复制相似问题