如何在WebOS中创建按钮?

发布于 2024-11-08 17:15:04 字数 521 浏览 2 评论 0原文

我正在尝试在 WebOS 中开始我的开发。我刚刚开始使用一个带有标签和按钮的简单应用程序。这是代码片段:

<div class="palm-body-text">

    <div id="main" class="palm-hasheader"> 

     <div class="palm-header">First Scene</div>  
     <div class="palm-text">Welcome to my World</div>  
     <div class="myButton" x-mojo-element="Button"></div>  

    </div> 
</div>

在模拟器中,它没有显示按钮。它还在按钮行上发出警告,上面写着“

unknown attribute x-mojo-element.

有建议吗?”

I am trying to start my development in WebOS. I just started with a simple application with a label and a button. Here's the code snippet:

<div class="palm-body-text">

    <div id="main" class="palm-hasheader"> 

     <div class="palm-header">First Scene</div>  
     <div class="palm-text">Welcome to my World</div>  
     <div class="myButton" x-mojo-element="Button"></div>  

    </div> 
</div>

In emulator it's not showing up the button. Also its giving a warning on button line which says

unknown attribute x-mojo-element.

Any suggestion?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傲世九天 2024-11-15 17:15:04

您必须先在场景助手中设置按钮。仅当您在场景助手的 setup 函数中调用 this.controller.setupWidget 后,才会呈现该按钮。在您这样做之前,它只是一个没有任何特殊含义的 div

You have to setup the button in the scene assistant first. The button is only rendered after you call this.controller.setupWidget in the scene assistant's setup function. Until you do that it's just a div without any special meaning.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文