我正在开发jenkin插件。我已经使用以下果冻脚本创建了一种表单。

<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler"  xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson"  xmlns:f="/lib/form">
<f:section title="Catalyst Login">
    <f:entry title="Catalyst Url" field="catUrl">
        <f:textbox />
    </f:entry>
    <f:entry title="Username" field="catUser">
        <f:textbox />
    </f:entry>
    <f:entry title="Password" field="catPass">
        <f:textbox />
    </f:entry>
    <f:validateButton
        title="${%Test Connection}" progress="${%Testing...}"
        method="testConnection" with="catUrl,catUser,catPass" />
</f:section>
</j:jelly>


布局中是多行一列,我的意思是一行中只显示一个输入框。
一行中可以有两个输入框吗?

最佳答案

尝试使用table可以在其中操纵行数和列数。

例:

<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:st="jelly:stapler"  xmlns:d="jelly:define" xmlns:l="/lib/layout" xmlns:t="/lib/hudson"  xmlns:f="/lib/form">
<f:section title="Catalyst Login">
    <table>
        <tr>
            <td>
                <f:entry title="Username" field="catUser">
                    <f:textbox />
                </f:entry>
            </td>
            <td>
                <f:entry title="Password" field="catPass">
                    <f:textbox />
                </f:entry>
            </td>
        </tr>
    </table>
    <f:validateButton
        title="${%Test Connection}" progress="${%Testing...}"
        method="testConnection" with="catUrl,catUser,catPass" />
</f:section>
</j:jelly>

10-04 19:21