Hi,
 
even dialog components are working fine for me. You can try this code snippet:
 
import QtQuick 1.0
import com.nokia.meego 1.0

PageStackWindow {
    
    Component.onCompleted: {  
        mySheet.open();      
    }
    
    showStatusBar: true
    
    Dialog {
        id: mySheet
       
        content: TextField {
           anchors {left: parent.left; right: parent.right; verticalCenter:
parent.verticalCenter}
           maximumLength: 60

        }
    }
}
 
Change Dialog to Sheet and it is still working. How do you use the components?
 
-b- 

On July 18, 2011 at 7:24 AM sergiy.dubo...@nokia.com wrote:

> Hi,
>
> Don't put textfield into dialog, that component is not designed to work
> with text field.
> Sheet should work fine though, afaik. It's better to put it inside
> flickable so that it can be repositioned by vkb.
> Show the code.
>
> :sergiy
>
> On 7/16/11 1:29 PM, "ext Daniel Martin Yerga" <dye...@gmail.com> wrote:
>
> >Hi there.
> >
> >I'm trying to put a TextField and a Label inside a Dialog or Sheet, but
> >the TextField doesn't show up.
> >Maybe the Dialog or Sheet components can't manage the entering of text,
> >and this is the reason because the TextField item doesn't show up.
> >
> >Is it possible to show a TexField in those components?
> >
> >
> >Thanks in advance.
> >
> >_______________________________________________
> >Qt-components mailing list
> >Qt-components@qt.nokia.com
> >http://lists.qt.nokia.com/mailman/listinfo/qt-components
>
> _______________________________________________
> Qt-components mailing list
> Qt-components@qt.nokia.com
> http://lists.qt.nokia.com/mailman/listinfo/qt-components

_______________________________________________
Qt-components mailing list
Qt-components@qt.nokia.com
http://lists.qt.nokia.com/mailman/listinfo/qt-components

Reply via email to