代码之家  ›  专栏  ›  技术社区  ›  ay43210

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

  •  0
  • ay43210  · 技术社区  · 8 年前

    目标: 我试图在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) 将顶部更改为多个值-->没有工具栏

    2) 试图更改z索引-->仍然没有工具栏

    3) 试图改变高度-->仍然没有工具栏

    4) 甚至尝试使用这个:

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

    这直接来自Qlik Sense本身-->仍然没有工具栏

    附言: 如您所见,我还使用Bootstrap来创建我的Mashup。

    1 回复  |  直到 8 年前
        1
  •  0
  •   ay43210    8 年前

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

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