Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

More button in properties page

Hi, I am trying to develop an extension in QlikView. In my properties page I cannot see "More" button like the photo below. What am I doing wrong? Thanks in the advance.

example_more_photo.jpg

This is my code;

<div class="ToolWindow-MainBody" avq="foldOutMenu:." style="overflow: visible !important; float: left;">

  <div class="prop-accordion" avq="accordion:.">

    <h3 class="prop-h3 accordion-shadow">

      <a href="#">

        Test Extension

      </a>

    </h3>

    <div class="prop-grid_container accordion-shadow-enabler" style="overflow:auto;">

         <div class="prop-grid_clear prop-grid_top-vertical-spacer-12px prop-grid_last"></div>

     

  <div class='prop-bar-chart-header-clickable' avq='prop_listheader:.Chart.Dimension'>Dimensions:</div>

  <ul avq='list:.Chart.Dimension' class='prop-dyn-sortable' tabindex='-1'>

    <li class='ui-state-default prop-sortable-list-li' name='chart-dimension' >

      <span class='prop-sortable-list-arrow-position' avq='list_movehandle:'></span>

      <div class='prop-sortable-item-narrow' avq='prop_dynamicDropdown:.Field'></div>

      <div class='prop-sortable-right-width-56px'>

        <div class='prop-sortable-width-28px' propicontype='tool' avq='prop_dlgbuttonjqui:.:ExtensionDimDialog.qvpp'></div>

        <div class='prop-sortable-width-28px' name='sortable-list-item-close-button' propicontype='delete-row' avq='prop_buttonjqui:.Remove'></div>

  </div></li></ul>

  <div class='prop-grid_clear prop-grid_prepend-1 prop-grid_span-5' avq='prop_label'>OSUSER</div>

  <div class='prop-grid_span-10 prop-grid_last'>

    <div class='popup-grid_span-7 popup-grid_last' style='width:94%;' avq='prop_editexpression:.Chart.Text.0.Content'></div>

  </div><br />

  <div class='prop-bar-chart-header-clickable' avq='prop_listheader:.Chart.Expression'>Expressions:</div>

  <ul avq='list:.Chart.Expression' class='prop-dyn-sortable' tabindex='-1'>

    <li class='ui-state-default prop-sortable-list-li' name='chart-measurement' >

      <span class='prop-sortable-list-arrow-position' avq='list_movehandle:'></span>

      <div class='prop-sortable-item-narrow' avq='prop_editexpression:.0.Definition'></div>

      <div class='prop-sortable-right-width-28px'>

        <div class='prop-sortable-width-28px' name='sortable-list-item-close-button' propicontype='delete-row' avq='prop_buttonjqui:.0.Remove'></div>

  </div></li></ul>

  

     <div class="prop-grid_clear prop-grid_prepend-11 prop-grid_span-4 prop-grid_standard-height prop-less-more-button">

        <button class="prop-grid_button prop-grid_span-4 prop-more-less-button" avq="foldOutMenuButton:" name="barchart">More...</button>

        <button class="prop-grid_button prop-grid_span-4 prop-more-less-button" avq="foldOutMenuButton:" name="barchart" isless="true">Less..</button>

      </div>

    </div>

    <h3 class="prop-h3 accordion-shadow" avq="activeAccordionHeader:.:GenericPresentationFoldout.qvpp">

      <a href="#">Presentation</a>

    </h3>

    <div class="prop-grid_container accordion-shadow-enabler" avq="panel::Layout.qvpp"></div>

    <h3 class="prop-h3 accordion-shadow" avq="activeAccordionHeader::PropertiesCaptionFoldout.qvpp">

      <a href="#">Caption</a>

    </h3>

    <div class="prop-grid_container accordion-shadow-enabler" avq="panel::Caption.qvpp"></div>

    <h3 class="prop-h3 accordion-shadow" avq="activeAccordionHeader:.:PropertiesOptionsFoldout.qvpp">

      <a href="#">Options</a>

    </h3>

    <div class="prop-grid_container accordion-shadow-enabler" avq="panel::Options.qvpp"></div>

  </div>

  <span class="bottom-gap"></span>

</div>

3 Replies
Anil_Babu_Samineni

Can you use This part like below

<div class="prop-grid_clear prop-grid_prepend-11 prop-grid_span-4 prop-grid_standard-height prop-less-more-button">

        <button class="prop-grid_button prop-grid_span-4 prop-more-less-button" avq="foldOutMenuButton:" name="barchart">More...</button>

        <button class="prop-grid_button prop-grid_span-4 prop-more-less-button" avq="foldOutMenuButton:" name="barchart" isless="true">Less..</button>

      </div>

<div class="prop-grid_clear prop-grid_prepend-11 prop-grid_span-4 prop-grid_standard-height prop-less-more-button">

        <Input Type="Submit" Value="More..." class="prop-grid_button prop-grid_span-4 prop-more-less-button" avq="foldOutMenuButton:" name="barchart" />

        <Input Type="Submit" Value="Less..." class="prop-grid_button prop-grid_span-4 prop-more-less-button" avq="foldOutMenuButton:" name="barchart" isless="true" />

      </div>

Please add me Anil_Babu_Samineni to interact faster when reply back. Speak low think High.

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)
Not applicable
Author

Thanks, I changed that part, but problem still continues. It did not change the panel.extension_properties2.png

Not applicable
Author

Hi, is there any opion on this? Any help will be helpful. Thanks.