I have a program, that get the struts-framework. The application has a tree-structure, like this (the number of the assets, rooms, building are at random generated):
City:Berlin
Building 1:
Room 410:Available
Chair 01Y (user decision)
Table 01N
Chair 70N
Pencil 01Y
Room 333:
...
...
...
Building 22:
Room 1:
...
...
City:Moskau
...
...
...
This is only an example and not my program. I explain that, because my programm is to complex to describe. The User can now make a decision, if the article is availible (edit field)...
So my coretarget is, that the user can open a room-list, but any room has a different number of article. you can also not say, room xy has xy article (static) - that must be dynamic. And the user make a decision, that the developer not know... in the end the user can send (submit) this list or cancel it. I hope struts can that :-)
I Say it an other way. My Problem ist, that i not know, how i can create multiple dynamically edit-fields in one page. How i say above, the number of the fields is always different (random).
Maybe a solution is, that i make one page, where are the article, but the article is always different... So on the one moment in asset_edit.jsp is the article "chair 01", in the other moment in asset_edit.jsp there is the article "table 01" and so on... But i dont know how i make that?
Maybe one of can me give a tip?!