[CLOSED] Resize Handles doesn't seem to be working

  1. #1

    [CLOSED] Resize Handles doesn't seem to be working

    Hi,

    I have a viewport with a North/East/Center setup.

    Inside the the Center panel is two panels where one can be resizeable. However I only want this panel to be resizeable with a 'North' handle but the 'ResizeHandles' property doesn't seem to work. It still lets me resize with any handle [n,s,e,w, etc...].

    Quick example of the center panel:

    <ext:Panel runat="server" Region="Center">
                    <LayoutConfig>
                        <ext:VBoxLayoutConfig Align="Stretch" />
                    </LayoutConfig>
                    <Items>
                        <ext:Panel ID="pnlPractices" runat="server" Title="Practices" Collapsible="false" BodyPadding="10" AutoScroll="true" Flex="1">
                            <LayoutConfig>
                                <ext:VBoxLayoutConfig Align="Stretch" />
                            </LayoutConfig>
                            <Items>
                            </Items>
                        </ext:Panel>
                        <ext:Panel ID="pnlTickets" runat="server" Title="Support Tickets" Border="false" BodyPadding="10" Height="435" AutoScroll="true" Collapsible="true" Resizable="true" ResizeHandles="North">
                            <LayoutConfig>
                                <ext:VBoxLayoutConfig Align="Stretch" />
                            </LayoutConfig>
                            <Items>
                                <ext:UserControlLoader runat="server">
                                    <Items>
                                        <bluebay:Tickets runat="server" ID="controlTickets" />
                                    </Items>
                                </ext:UserControlLoader>
                            </Items>
                            <Listeners>
                                <Resize Handler="StorePanelSize('tickets', this.height);" />
                                <AfterLayout Handler="if (this.height == 0) { this.height = 435; this.collapse(); }" />
                            </Listeners>
                        </ext:Panel>
                    </Items>
                </ext:Panel>
    I've tried removing the objects from the js resizer object and also tried setting the ResizeHandles property from server side but no luck.

    Any help would be appreciated.

    Thanks

    Kev
    Last edited by Daniil; Dec 19, 2013 at 12:38 PM. Reason: [CLOSED]
  2. #2
    Hi Kev,

    Thank you for the report. We are investigating.

    For now, please use
    XResizeHandles="n"
    instead of
    ResizeHandles="North"
  3. #3
    No luck with that either Daniil.

    Guess I'll just wait for the outcome of the investigation. Not an end of the world problem for now anyway.

    Cheers

    Kev
  4. #4
    Please provide us with a full test case where this is not working.
    XResizeHandles="n"
    After updating from the trunk you can turn back to the ResizeHandles property.
    Last edited by Daniil; Dec 19, 2013 at 4:46 AM.
  5. #5
    The code above I provided with

    XResizeHandles="n"
    replacing ResizeHandlers is where it went wrong.

    I shall update from the trunk and try again.

    Thanks
  6. #6
    Thanks Daniil, the latest build fixed the ResizeHandles issue I was having.

Similar Threads

  1. Replies: 6
    Last Post: Nov 27, 2013, 6:37 AM
  2. [CLOSED] IE 9 - North panel doesn't load, until I resize window
    By rthiney in forum 2.x Legacy Premium Help
    Replies: 6
    Last Post: Jun 05, 2013, 4:18 PM
  3. Replies: 6
    Last Post: Oct 16, 2012, 4:55 AM
  4. Gridpanel doesn't resize properly
    By gdog_5021 in forum 1.x Help
    Replies: 10
    Last Post: Aug 18, 2011, 2:45 PM
  5. GridPanel doesn't resize with browser
    By jimlahey in forum 1.x Help
    Replies: 1
    Last Post: Aug 18, 2011, 2:58 AM

Posting Permissions