Settings and activity
7 results found
-
35 votes
An error occurred while saving the comment An error occurred while saving the comment Ashwar Sadh commented
Definately needed, maybe defer calculations etc of older entries on opening to make Library open faster
-
4 votes
An error occurred while saving the comment Ashwar Sadh commented
You can root your phone, install xposed framework and AppLocale module to do this
-
3 votes
An error occurred while saving the comment Ashwar Sadh commented
Add a trigger script for before Saving the entry and check
if(entry(). field ("Image").length>1)
{
message ("Select only one image");
cancel ();
}Or you can make this script to overwrite 2nd image with 1st one and discard 1st one like this:
if(entry(). field ("Image").length>1)
{
entry().set("Image",[entry(). field ("Image")[1]]);
} -
5 votes
An error occurred while saving the comment Ashwar Sadh commented
Add a trigger script for before Saving the entry and check
if(entry().field ("choice"). equals(""))
{
message("Select choice");
cancel();
} -
6 votes
An error occurred while saving the comment Ashwar Sadh commented
Use tasker with auto input plugin to automatically click magnifying glass when you type in Memento
-
64 votes
Ashwar Sadh shared this idea ·
-
15 votes
An error occurred while saving the comment Ashwar Sadh commented
100% Agree on this idea, this way for eg. if we have an Inventory Database, pictures can contain sku as file name, so we can search and use .jpg files.
Ashwar Sadh supported this idea ·
I found a bug in this concern,
I have several JavaScript fields in my library which are used as Name, Description, Status and Colour of the library.
In All these fields, I have turned off realtime execution, but still loading the library takes 10-30 seconds for 100+ records, but as soon as I set these js fields as Regular Fields, library loads instantly!
This means that inspite of realtime execution off, memento is executing the JavaScript in js fields if they are set as name/description etc.
This behaviour should be fixed and it should use the static value as result of last execution.
We can create an action script in library view to recalc all lib().entries() in library if we want to manually refresh all js fields.
This would improve the load time of libraries drastically.