Cognos 10中的单选按钮组选择

时间:2015-05-28 15:25:10

标签: radio-button unchecked cognos-10 cognos-bi

在我的认知报告中,我试图有两种选择。一旦"选择NDC11"单选按钮被选中我应该能够从列表框中选择值,并在"选择NDC11文本框"单选按钮被选中,我应取消选中上面的单选按钮选择,并能够在下面的文本框中输入值。

如果选择了另一个,我无法取消选中单选按钮组的功能。

1 个答案:

答案 0 :(得分:0)

假设您使用的是Cognos BI 10.2或更高版本,则可以使用Cognos JavaScript API执行您想要的操作。

为了使用JavaScript API操作提示,您必须为每个提示提供唯一的名称。对于此示例,它们将命名为test1和test2。 test1提示符将是您在选择test2时取消选择的提示。

在提示页面底部添加HTML项目并插入以下代码:

<script>
var report = cognos.Report.getReport('_THIS_'); //Assign a variable to the report object
var test1 = report.prompt.getControlByName('test1'); //Assign a variable which points to the first prompt object
var test2 = report.prompt.getControlByName('test2'); //Assign a variable which points to the second prompt object

test2.setValidator(validateTest2); //Call the API's setValidator function to assign a function to fire on prompt change

function validateTest2(values) {
    if (values && values.length > 0) { //Check if test2 has a value selected
        test1.clearValues(); //Call the API's clearValues() function on test1 which deselects all values
    }
    return true; //Successfully validate prompt
}
</script>

由于我们提供自定义验证功能,您可能需要调整返回值,具体取决于您是否将提示设置为必需等等。

使用此脚本,只要在test2提示符中选择了值,test1提示符就会清除。