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.
Comments
Post a Comment