How to Implement Master Detail in Ionic Framework? -


i trying use ionic framework build simple master detail list application. can capture tap event on list item how can load details view after that.

.controller('taskscontroller',function($scope){        $scope.tasks = [           { title : "collect coins" },           { title : "eat mushroom" },           { title : "find princess" }       ];        $scope.showtaskdetails = function() {           alert('show task details');       }  }); 

in showtaskdetails event. how can load different view details.html?

the master detail pattern easy pattern implement in ionic, you're going wrong. want set details separate view , route in application.

i suggest reading article on topic.

http://mcgivery.com/ionic-master-detail-pattern/


Comments

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -