Welcome!
This community is for professionals and enthusiasts of the Genio platform.
Share your questions and challenges, and help your partners!
The form is taking to long to load/reload
Hello,
I have a page with some tabs and inside of that tabs I have a lot of text boxes like the one in the image bellow.
The problem it's that I have 179 of this text boxes scattered across the tabs and when I load/reload this page it's taking 10s to 15s to load everything.
Is there a way to only load each tab content just when I click a tab? Or the code that corresponds to the text boxes only load when one text box shows?
If there is a better way to reorganize this form in Genio besides tabs to optimize performance, what should be?
Best regards,
Micael Machado.
The way to approach this challenge is to change the data structure. Your example is violating the "First normal form" of database normalization. (Google "First normal form" and there are too many examples to understand the concept). You must change, from having multiple fields of the same subject in a record, to having a column with the subject field in a list. For example, in a person's table, you should not put multiple fields for home address, business address, alternate address, etc. What you should do is create an Address table related N:1 to the Person table. In this Addresses table there is a field with the Address and another to enter the Address type (Home, Work, Alternative, etc).
After the changes, when viewing a Person form, a list of records with the various addresses in a column will appear, instead of several fields with Addresses in the form.
2022-01-11
You need to change the structure of the database as advised above. If you don't change the structure you will have big scalability problems.
Keep Informed
About the Community
Question tools
Stats
Asked: 13/12/2021 上午11:54 |
Seen: 1324 times |
Last updated: 14/12/2021 下午4:01 |
But the 179 text boxes that I have, they are not text boxes for the same thing, they have different purposes and different values for each one of them.