Checkbox parameter popup

(3 posts) (2 voices)
  1. hoxa, Member

    Hello,

    I should be able to pass along multiple parameters to a report, i know this is possible using checkboxes but the list of checkboxes is too big to fit on the screen.

    So i was wondering if there is a possibility to create a parameter popup that contains checkboxes, or could it be provided in a next release?

    Something similar to this this image:
    http://community.devexpress.com/blogs/theprogressbar/dxgridExcelStyleFilter_649CDF3A.png

    Thanks

  2. myDBR Team, Key Master

    You can limit the height of the checkbox list with a bit of a javascript. The Help-field in report info supports CSS and javascript, so adding following code into the Help-field limits the height of the parameter to 200px.

    Change the 'u1' parameter to refer the order number of the parameter you are about to change:

    Scroll the list <script type="text/javascript"> $(document).ready(function() {     $('input[name=u1]').parent().wrapInner('<div style="height:200px;overflow-y:scroll" />'); }); </script>
    --
    myDBR Team

  3. hoxa, Member

    Great thanks, this helped me a lot!


Reply

You must log in to post.