SAPUI5中两个按钮的重叠

时间:2018-07-30 09:16:04

标签: sapui5

我想使用SAPUI5创建内容表,但是当我尝试添加多个按钮时,它们就会重叠。

代码:

var page2 = new sap.m.Page("page2",{
  title : "Contents",
  showNavButton : true,
  navButtonPress : function() {        
    app.back();//go back to previous page
  },
  content : new sap.m.Button({
    text : "Introduction",
    press : function() {          
      app.to("page3");//navigate to Home
    },
    //enabled : false
    type : sap.m.ButtonType.Transparent
  }),
  content : new sap.m.Button({
    text : "Iview",
    press : function() {          
      app.to("page3");//navigate to Home
    },
    //enabled : false
    type : sap.m.ButtonType.Transparent
  })
});

1 个答案:

答案 0 :(得分:0)

status