2

我尝试创建一个 Portlet,它使用带有 Alloy UI 的 JSP 来显示信息。

我喜欢模块“模态”的效果 -链接

效果是,如果我单击一个按钮,则会打开一个框(如果您点击链接,您可以看到它)。

此示例中有两个按钮。我想用文本字段/输入字段替换它们。

我怎样才能做到这一点?

真诚的,JC。

4

1 回答 1

2

对我来说,'contentBox' 工作得很好。我添加到模态对象

contentBox: '#contentBox',

并用我的文本框定义了一个 div 容器

<div id="contentBox">
    <aui:form>
        <aui:fieldset>
            <aui:input name="productName" size="45" />
            <aui:button-row>
                <aui:button id="closeModal" value="Close" class="btn"></aui:button>
                <aui:button type="submit" onSubmit="cm();" />
            </aui:button-row>
        </aui:fieldset>
    </aui:form>
</div>

不知道有没有更好的解决方案,但是我不得不在html内容中写div容器,但我只想在点击打开的模态框中显示。所以我不得不隐藏它,它通过添加

render: '#modal', 

到模态对象。

于 2014-07-25T09:53:38.140 回答