Interface Suggestion?
|
|
I was wondering, how possible would it be to have the sections be closeable like the "Show Settings/Hide Settings" button? The reason I ask is because the performance of the script is unusable with the buildings table displayed, which is fine and I can live with, but I do refer to it once in a while, so I was thinking it would be nice if I could just click a "Show/Hide Buildings Table" button. Ideally, if all the tables could be accessed this way, it would be nice. I would imagine it should be fairly easy to accomplish (but I could be mistaken of course), as all it would really need to do is accomplish the same task as clicking the show settings button, check the show buildings checkbox, refresh the tables, and hide the settings. Would this be possible at all? Most of the tables besides the cities and resource tables aren't very useful IMO, but they can be helpful as a reference/quickview once in a while, but it's a hassle having to go into the settings every time I want to look at something briefly, which is why it would be REALLY helpful to have this interface functionality. Thanks for reading! :D |
|
|
it could also be nice to have something so we can "change" order of the tables, how they're shown! Possible? |
|
|
I changed table order in table.js file:
var s = "";
log("TABLE: "+(new Date().getTime() - _startTime)+" msec");
if (TABLE_BUILDINGS) {
s += BuildingsTalbe();
}
log("TABLE_BUILDINGS: "+(new Date().getTime() - _startTime)+" msec");
if (TABLE_RESOURCES) {
s += ResourcesTable();
}
log("TABLE_RESOURCES: "+(new Date().getTime() - _startTime)+" msec");
if (TABLE_CITIES) {
s += CitiesTable();
}
|