Qlik Sense Mashup问题 - 选择时未显示列表框工具栏

时间:2017-01-30 14:57:37

标签: css twitter-bootstrap listbox qliksense mashup

目标: 在Qlik Sense Mashup中选择其中一个值时,我试图显示一个列表框的工具栏。

问题: 工具栏没有显示。

这是代码:

</html>
...
<body>
...
<div class="row">
    <div class="col-xs-12 col-lg-12">
        <div style="position:relative">
           <div id="QV20" style="width:100%;height:350px;top:0px;left:0px;z-index:1300;"></div>
        </div>
    </div>
</div>
...
</body>
</html>

这是我目前的结果:

Click here to show picture - Toolbar is not showing

这是我愿意实现的目标:

Click here to show picture - desired result

我已尝试过以下内容:

1)将顶部更改为多个值 - &gt;没有工具栏

2)试图改变z-index - &gt;仍然没有工具栏

3)试图改变身高 - &gt;仍然没有工具栏

4)甚至尝试使用它:

 style="width: calc(100% - 4px); height: calc(8.33333% - 4px); left: calc(0% + 2px); top: calc(0% + 2px);"

直接来自Qlik Sense本身 - &gt;仍然没有工具栏

PS:正如您所看到的,我也在使用Bootstrap创建我的Mashup。

1 个答案:

答案 0 :(得分:0)

添加此项,工具栏将显示:

.qv-filterpane
{
    overflow: visible;
}

.qv-selection-toolbar
{  
    position: absolute !important;  
}