There is always the good news for you who have been using Masino Extensions! Now you have an option to display only detail count which greater than zero in the Detail section of Master/Detail. In other words, you will not see the detail count which contains no data in it. This really cleans things up […]
How to Hide the Search Panel in Detail Section of Master/Detail Page in Web Applications that Generated by PHPMaker 10
PHPMaker generates the Master/Detail view page by including the Search Panel in the detail section. Most of the time, I do not need the Search Panel is displayed in the Detail section. The reason for this is that it often confused the users since if they use the Search Panel to find records that do […]
A Case Study: Implementing Many-To-Many Relationship in Web Applications that Generated by PHPMaker 10
As we have already known, when designing database relationships, Many-To-Many relationships are not a good idea, because they are not allowed. We must find a way of making them Many-To-One or One-To-Many. In databases, a join table is generally used to create the relationships. A typical example is the orders and products tables in the […]
A Case Study: Hiding the Master Fields in Master/Detail Pages of Websites that Generated by PHPMaker 9.2.0
PHPMaker generates the Master/Detail pages by including the *master.php file into the generated List page that belongs to the detail table. For example, the master table is orders, and the detail table is orderdetails and both tables have already been associated as Master/Detail in Table setup of PHPMaker. So, in the generated orderdetailslist.php file, you […]
A Case Study: Adding Prev Next Navigation Links in the Master/Details Page of Websites that Generated by PHPMaker 9.1.0
Have you ever wanted to add the Previous and Next navigation links in the Master/Details pages of web applications that generated by PHPMaker? As we have already known, PHPMaker can generate the Master/Detail pages powerfully only in a few seconds. Unfortunately, it has not provided the navigation links as well as the pagination links in […]
A Case Study: Making Orders Proceed with Order Details in Websites that Generated by PHPMaker 9.1.0
This article was written in order to answer the question in PHPMaker discussion forum. It’s about how to make an Order proceed with updating the Order Details. The difficult thing is how to make the ability of when user is selecting the main item, then the detail of items will be changed accordingly below. The […]