I can't seem to set the position of an Ext.NET GridPanel inside an Ext.NET window and I wonder why?

<ext:Window ID="Window1" runat="server" StripeRows="true" Width="900" Height="700"
    Closable="false" Collapsible="true" Maximizable="true" Layout="Fit" 
    X="0" Y="0"
    CenterOnLoad="false">
    <Items>
        <ext:GridPanel ID="customersGrid" runat="server" />
     //.....................

When I change X and Y it doesn't take effect.

link|improve this question

59% accept rate
feedback

2 Answers

If you want the GridPanel to be absolutely positioned somewhere inside the Window, you'll have to set Layout="Absolute" on the <ext:Window>, and set the .X and .Y properties of the <ext:GridPanel>.

Hope this helps.

link|improve this answer
feedback

I think Layout="Fit" gives you issue, check that..

link|improve this answer
No, It doesn't. – Alex Maslakov Aug 1 '11 at 12:58
check constraintoviewport property if exist then set it false and use moveto method in code behind there one more element Ext.Element check it too. – Bhargav Mistri Aug 1 '11 at 13:13
and check this URL it will help you,java2s.com/Code/JavaScript/Ext-JS/Setcontrolxyposition.htm – Bhargav Mistri Aug 1 '11 at 13:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.