我有一个按钮问题。它出现在 IE 和 Firefox 中,但没有出现在 Chrome 中。
该按钮的代码使用 Rally API,它是在加载页面时生成的。
我试过谷歌搜索答案,但我找不到任何东西。
这是我的代码:
function onClick(b, args) {
if(OneButtonClickFlag == true) {
OneButtonClickFlag = false;
var buttonValue = args.value;
var userName = "__USER_NAME__";
TimeSheetReport(); // calling the “timesheet report “
}
}
function onLoad() {
var config = {
text: "Generate",
value: "myValue"
};
var button = new rally.sdk.ui.basic.Button(config);
button.display("buttonDiv", onClick); // call the “onclick” function
}
rally.addOnLoad(onLoad);