Only this works(but FireFox looks ugly)(IE looks well)

<ext:BoxItem Flex="1">
                                                            <ext:NumberField ID="txtGoodsId" DataIndex="GoodsId" FieldLabel="xxx" runat="server">
                                                                <DirectEvents>
                                                                    <Change OnEvent="TxtGoodsIdChanged">
                                                                        <EventMask ShowMask="true" Target="Parent" />
                                                                    </Change>
                                                                </DirectEvents>
                                                            </ext:NumberField>
                                                        </ext:BoxItem>
these below do not work

<EventMask ShowMask="true" Target="This" />
<EventMask ShowMask="true" Target="CustomTarget" CustomTarget="txtGoodsId" />
<EventMask ShowMask="true"  Target="CustomTarget" CustomTarget="#{txtGoodsId}" />
<EventMask ShowMask="true"  Target="CustomTarget" CustomTarget="={#{txtGoodsId}}" />
<EventMask ShowMask="true"  Target="CustomTarget" CustomTarget="={#{txtGoodsId}.el}" />
<EventMask ShowMask="true"  Target="CustomTarget" CustomTarget="={#{txtGoodsId}.getEl()}" />