Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted January 18, 20241 yr I have a database that has a few categories. How do I organize the records in each category? It seems to be a first-entered, first-displayed setup.
January 18, 20241 yr These are the available sort options: You could add a custom "Order" field to the record and sort by that field. I would make it an integer and separate records by 100 or 1000. There is no built-in drag and drop sorting option unfortunately, but you could suggest that.
January 18, 20241 yr Author 4 minutes ago, Foxtrek_64 said: These are the available sort options: You could add a custom "Order" field to the record and sort by that field. I would make it an integer and separate records by 100 or 1000. There is no built-in drag and drop sorting option unfortunately, but you could suggest that. Drag and drop would be perfect. I'll post that in the suggestions. I have looked around for Sort, where is that? I looked at the default fields, and created a new field and do not see sort.
January 18, 20241 yr This post was recognized by Marc! Foxtrek_64 was awarded the badge 'Helpful' and 5 points. 1 minute ago, Square Wheels said: Drag and drop would be perfect. I'll post that in the suggestions. I have looked around for Sort, where is that? I looked at the default fields, and created a new field and do not see sort. In the database entry in the ACP, select Fields and add a new field called Order. Make this an Integer field, and set the minimum to 0 and make it required. Under the Display Options tab, disable all display options. In the options for the database, go to Options -> Field Options -> Sort. A new entry under the Sort dropdown for Order should now be present. Select ascending order for higher numbers to be visible later. I also recommend separating order by at least 100. So for instance, the first record should be 0, the second should be 100, the third should be 200, and so forth. This way if you find out that you want to put the second item after the third, you can change its order to 250. This avoids needing to reorder the entire record set.
January 18, 20241 yr Author 7 minutes ago, Foxtrek_64 said: In the database entry in the ACP, select Fields and add a new field called Order. Make this an Integer field, and set the minimum to 0 and make it required. Under the Display Options tab, disable all display options. In the options for the database, go to Options -> Field Options -> Sort. A new entry under the Sort dropdown for Order should now be present. Select ascending order for higher numbers to be visible later. I also recommend separating order by at least 100. So for instance, the first record should be 0, the second should be 100, the third should be 200, and so forth. This way if you find out that you want to put the second item after the third, you can change its order to 250. This avoids needing to reorder the entire record set. Thank you!