单选按钮组水平显示XPages中的多行

时间:2016-05-28 17:00:02

标签: twitter-bootstrap xpages radio-group

以下是水平单选按钮的代码:

<xp:radioGroup id="appType"
                                value="#{ruleDoc.AppType}" layout="lineDirection">
                                <xp:selectItem
                                    itemLabel="Applications">
                                </xp:selectItem>
                                <xp:selectItem
                                    itemLabel="Lotus Notes DB">
                                </xp:selectItem>
                                <xp:selectItem
                                    itemLabel="Lotus Notes Groups">
                                </xp:selectItem>
                                <xp:selectItem itemLabel="Folders"></xp:selectItem>
                                <xp:selectItem itemLabel="Hardware"></xp:selectItem>
                                <xp:selectItem itemLabel="Other"></xp:selectItem>
                                <xp:selectItem itemLabel="Server"></xp:selectItem>
                            </xp:radioGroup>

但显示器很难看:

enter image description here

我想在每行显示两行3个值。在Native Notes中很容易做到,但我无法想出在XPage中做到这一点的方法。 有任何想法吗?我做了一些搜索,但解决方案似乎很复杂。

1 个答案:

答案 0 :(得分:2)

这有效100%http://www.wissel.net/blog/d6plinks/SHWL-87B5ZJ Stephan Wissel在他的博客上有一些非常棒的东西。我的搜索没有显示出来,但随后.... 我发现单选按钮和文本会在一起运行,所以我修改了标签,在文本右侧添加了一些填充,这很有效。