pageContainer.find('#xxxxx") not find in v4

hello all
i was developer in v1
now i return to FrameWork7 with last version (4)
i was game page data by this code for example

myApp.onPageInit('Upload', function (page) {
   var pageContainer = $$(page.container);
var val = pageContainer.find('#inputtext').val();

in last update this function now work , so what a new way to get or control a html content of Page

Check documentation, there is no page.container in v4 http://framework7.io/docs/page.html#page-data You need page.el i guess

1 Like