GUI Templates for CRUD Web Applications

This is a vague question about user experience and interaction design patterns (not programming) for CRUD web applications.

Let there be a few simple objects, for example. Student , Course and Lecturer with obvious relationships.

As I understand it, the CRUD application usually provides a screen for each object to view objects, update, delete and add a new one. The screen may also contain a search box.

The graphical interface of the application uses relationships to display information related to the entity (for example, courses for each student) and move from one object screen to another (for example, from the Student's course name on the Student screen to the Course description in the Course screen).

Does it make sense? Are there other graphical interfaces for CRUD applications? What example would you recommend to know?

+4
source share
3 answers

That sounds logical enough to me. There are several graphical interfaces here:

http://www.welie.com/patterns/

http://developer.yahoo.com/ypatterns/

+4
source

frameworks such as rails generate some forest pages for adding / removing / modifying model objects, I would suggest you take a look at it.

+1
source

If you understand correctly ... view models is a concept that allows you to add custom data groups. Separation etc. It would be just a means of quickly creating data for display on the screen. Are you using Asp.net Mvc, Ruby or PHP?

+1
source

Source: https://habr.com/ru/post/1333555/


All Articles