One comment on “Designing a Login View

  1. Hi,

    I’ll be interested to hear how using qml you would be to submit a form like this one to a remote web server.

    For full AJAX-like functionality, how can the qml function that submits the form then recieve a .qml file in response and render this within one of its qml objects

    Something like this would be good:

    onclick: {
       QAjax {
          Qurl: 'http://server/file'
          Data: { username: text.username; password: text.password }
          OnSuccess {
             my_rectangle.qml_content: response.content
          }
       }
    }
    

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s