Search code examples
qmlblackberry-10blackberry-cascades

Blackberry 10 cascades qml methods


How to load a method when i click a button from one qml layout to other qml? as am having a editprofile button if i click the button means i want to show the values ,which i got from the webservice how to do this? can anyone send some idea.? Thanks


Solution

  • you need to implement this onCreationCompleted method

        onCreationCompleted: {
       // call the function, that you need to show first
       // first_display()
       }
    

    Hope this helps.!!!