Current filter:
                                You should refresh the page.
                                0
                                  • Hello. I am using the new multi-select mode for header filter in the aspxGridView. It is very nice. The problem I am having is that the initial popup list is very short. It only shows Select All and the user has to expand the list before any items are displayed. Is there a way to lengthen the list by default? Thank you. Great job with this feature.

                                HeaderFilterDropdown.png
                                You must  log in  or  register  to leave comments

                                1 Solution

                                0

                                Hello Denise,

                                You can change the filter popup window's height via the ASPxGridView.SettingsPopup.HeaderFilter.Height property.

                                • Denis Picco 07.23.2012

                                  I don't see anywhere to set SettingsPopup on a ASPxGridView. This is a scaled down version of my grid. Thanks.
                                              <dx:ASPxGridView ID="gvBonuses" runat="server" AutoGenerateColumns="False"
                                                  DataKeyNames="id" DataSourceID="sdsBonuses" ClientInstanceName="Mastergrid"
                                              KeyFieldName="id" >

                                  <SettingsPager AlwaysShowPager="True" PageSizeItemSettings-Visible="True"></SettingsPager>

                                  <Settings ShowFooter="true" ShowGroupPanel="True" ShowFilterRow="True" ShowFilterBar="Visible"
                                                      ShowFilterRowMenu="True" ShowHeaderFilterButton="True" ></Settings>

                                                  <Columns>
                                                      <dx:GridViewDataTextColumn Caption="GL Account" FieldName="gl_account" Name="gl_account" Settings-HeaderFilterMode="CheckedList"
                                                          VisibleIndex="4">
                                                      </dx:GridViewDataTextColumn>
                                                      <dx:GridViewDataTextColumn Caption="Amount" FieldName="amount" Name="amount" Settings-HeaderFilterMode="CheckedList"
                                                          VisibleIndex="5" PropertiesTextEdit-DisplayFormatString="N2">
                                  <PropertiesTextEdit DisplayFormatString="N2"></PropertiesTextEdit>
                                                      </dx:GridViewDataTextColumn>

                                                  </Columns>

                                              </dx:ASPxGridView>

                                • Set the filter popup window's height in the following manner:

                                      <dx:ASPxGridView ID="gvBonuses" runat="server"...>
                                          <SettingsPopup>
                                              <HeaderFilter Height="200px" />
                                          </SettingsPopup>
                                          ...
                                          <Columns>
                                              ...
                                          </Columns>
                                      </dx:ASPxGridView>
                                  
                                • J. Paul Gorman 07.25.2012

                                  What version of the DevExpress ASPxGridView does this new SettingsPopup exist? I am currently running the 11.2.11 version and I am not seeing it in that one.

                                  Thank you,

                                • Denis Picco 07.25.2012

                                  I was able to get it working. I think this is new in version 12.1. I am running 12.1.4.

                                • Hello,

                                  This feature is available starting with version v12.1.
                                  Please make sure that you are using the actual DXperience build.

                                You must  log in  or  register  to leave comments
                                You must  log in  or  register  to leave an answer

                                Is your intention to post an answer to your own question?

                                • If so, then proceed.
                                • If you simply wanted to post additional information, ask for further clarification, or to just say "Thanks!", please click Leave a Comment.
                                • If you wish to edit your original question, please use the Edit button in the Toolbox at the top right corner of that entry.