为SAP UI5屏幕字段、按钮和其他控件指定选项卡顺序



当我们编写纯HTML代码时,我们使用:

循环遍历屏幕上的输入控件
<html>
<head>
  <title>Controlling TAB Order</title>
  </head> 
<body>
  <form>
    Field 1 (first tab selection):
    <input type="text" name="field1" tabindex=1 /><br />
    Field 2 (third tab selection):
    <input type="text" name="field2" tabindex=3 /><br /> 
    Field 3 (second tab selection):
    <input type="text" name="field3" tabindex=2 /><br />
  </form> 
</body>
</html>

我的问题是:我们如何在UI5应用程序中实现相同的功能,因为我们没有允许我们这样做的输入控件的属性

您可以在afterRendering事件中呈现表单的HTML之后使用jQuery .attr()函数修改HTML属性。看到文档

相关内容

  • 没有找到相关文章

最新更新