[CLOSED] Property Grid Filter Showing Behind the PropertyGrid

  1. #1

    [CLOSED] Property Grid Filter Showing Behind the PropertyGrid

    Hi,

    I have implemented property grid in one of my web page and added combobox filters in 3 rows. Each combobox having different items. I want to edit the information in the property grid, while trying to select combobox filter it is populating behind the property grid as in screenshot. How can the combobox filters can show on top of property grid? I am just displaying that property grid in popup window form. All combobox filters are filling while loading the page.Click image for larger version. 

Name:	PropertyGrid.PNG 
Views:	107 
Size:	21.9 KB 
ID:	3852

    The code for Property grid...
    
    <ext:Button ID="btnUpdateCondition" runat="server" Text="Update Condition Info" Icon="PageEdit">
        <Menu>
            <ext:Menu ID="mnuUpdateCond" runat="server">
                <Items>
                    <ext:ComponentMenuItem ID="compMnuUpdateCond" runat="server">
                        <Component>
                            <ext:PropertyGrid ID="condPropGrid" runat="server" Width="250" Height="160">
                                <Source>
                                    <ext:PropertyGridParameter Name="Condition">
                                    <Editor>
                                    <ext:TextField ID="txtCondName" runat="server">
                                    </ext:TextField>
                                    </Editor>
                                    </ext:PropertyGridParameter>
                                    <ext:PropertyGridParameter Name="Status">
                                        <Editor>
                                            <ext:ComboBox ID="cboCondStatus" runat="server" TriggerAction="All" Mode="Local">
                                            </ext:ComboBox>
                                        </Editor>
                                    </ext:PropertyGridParameter>
                                    <ext:PropertyGridParameter Name="Due In">
                                        <Editor>
                                            <ext:ComboBox ID="cboCondDueIn" runat="server" TriggerAction="All" Mode="Local">
                                            </ext:ComboBox>
                                        </Editor>
                                    </ext:PropertyGridParameter>
                                    <ext:PropertyGridParameter Name="Category">
                                        <Editor>
                                            <ext:ComboBox ID="cboCondCategory" runat="server" TriggerAction="All" Mode="Local">
                                            </ext:ComboBox>
                                        </Editor>
                                    </ext:PropertyGridParameter>
                                </Source>
                                <Buttons>
                                    <ext:Button ID="btnSaveUpdateCondition" runat="server" Text="Update Condition" Icon="Disk">
                                    </ext:Button>
                                </Buttons>
                            </ext:PropertyGrid>
                        </Component>
                    </ext:ComponentMenuItem>
                </Items>
            </ext:Menu>
        </Menu>
    </ext:Button>
    Last edited by Daniil; Feb 27, 2012 at 10:26 AM. Reason: [CLOSED]
  2. #2
    Hi,

    Please add the following thing for the ComboBox.
    <GetListParent Handler="return this.el.up('.x-menu');" />

Similar Threads

  1. [CLOSED] PropertyGrid with property separator
    By edigital in forum 1.x Legacy Premium Help
    Replies: 9
    Last Post: Oct 15, 2015, 3:52 PM
  2. [CLOSED] [1.0] GridPanel's reconfigure reset columns' filter property
    By PoloTheMonk in forum 1.x Legacy Premium Help
    Replies: 9
    Last Post: Sep 21, 2011, 10:39 AM
  3. How to filter store based on array property
    By bjones in forum 1.x Help
    Replies: 0
    Last Post: Sep 20, 2011, 4:20 PM
  4. [CLOSED] Grid Mask Not Showing
    By speedstepmem4 in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Jul 12, 2010, 9:05 AM
  5. Replies: 1
    Last Post: Oct 09, 2009, 3:46 AM

Tags for this Thread

Posting Permissions