Hi Eugenio,
I hope you're doing well.
Unfortunately, it seems that the automatic tooltip text in case of global research doesn't deal correctly if I insert HML entities in any label of any field (please see snapshot).
Just FYI, my form label for the related field is "Lien <span...
Hi Eugenio, it's great news since dark mode is increasingly adopted by users.
I tested it on the demo app and it's fine.
I just have a small remark: the little arrow on the combo boxes (to open the list) is nearly invisible (please see attached file), if you can change the color for a brighter...
Hello.
The preview form on the right side of your screen does not allow to configure any layout: it's here only to show you the result you'll get with the parameters you selected on the left side, which is the only place from where you can change the layout.
I mean you can configure your form...
Hi.
You may duplicate your 'open_repairs' view (or table) to another 'open_repairs_home' view with only the fields you want to show on your home page, and write a custom formatting function to use on the 'Ticket #' field of your 'open_repairs_home' form.
You'll be able to open directly an edit...
Dear Eugenio, your quick fix works as a charm, thank you for your reactivity (as always).
I'm really sorry not to have posted in the right forum, I never took the time to read the welcome msg of this Bugs forum, please don't blame me ;-)
Regards,
Hi Michael,
I don't think this is a "bug".
IMHO, you may have misunderstood the 'Label grid' behavior: this field is only used on the column title of the results grid.
On both search forms (quick and advanced), the regular 'Label form' is used as it is in both Edit and Insert forms.
I've...
Hello Eugenio,
I made several cross tests before posted this (different browsers on different computers), but it seems javascript code isn't called anymore from 'add/remove linked field' links in Forms Configurator.
I'm not sure it's related, but I noticed that HTTP target at the bottom of the...
Hi RolfE.
I'm pretty sure your error message is not related to your join statements, but refers to output fields aliases which have to be unique: I think that at least two of your tables contains an 'id_address' field and, since you use 'select *' statement, these fields are not aliased.
Keep...
Hi Eugenio, I hope you're doing well.
Cascade Fields in search forms is a really much-awaited feature for several years (by me at least ;))
Many thanks for that but I can't get it work, I don't see any change anywhere which lets me think that something will change in my search form (it actually...
Hello Eugenio.
I got a warning when I try to call load_table_page API, and the page is not loading:
PHP Warning: Undefined variable $dadabik_main_file in /.../files/include/classes/ddb_api.php on line 343
The cause seems to be a missing $dadabik_main_file recall from global var on line 307...
Hi all.
I use composite keys (with up to 10 fields) for several years with Dadabik...
I just took the habit to add an auto increment unique key into my SQL table, and I use it in dadabik as unique field in my 'Page based on...' definition.
No problem so far since you don't even need to tell...
Hi Deep64, thanks for your answer.
I did experience the exact same issue on 2 different PCs and only with Brave, so I didn't thought to a cache issue ! 🤯
My bad, I cleared the cache and it works fine on all my browsers ! (y)
have a nice day
--
Gilles.
Dear Eugenio, I hope you're doing well.
First, thank you for this new V12 release of DaDaBiK with its modern UI and these new exciting features like BETA mode and EXPORT APP.
I noticed a little problem on my Brave browser, the user account menu on the top right is not active (a clic on the...
Hi both of you.
FYI, just in case it may help, I don't get this behaviour on my Dadabik V12, the 'flatpickr' date picker shows time in 24H format, and hides AM/PM information (see attached picture) as expected... (y)
KR
Gilles.
Hi.
I achieved this kind of thing successfully by storing all needed fields in public vars ($_PUBLIC array) from a custom_startup_function (after checking $_GET vars are set) and using these PHP vars in the WHERE part of my SELECT_SINGLE field to filter results.
Don't forget dadabik_var tags...
IMHO, the best solution is to use triggers directly in MySQL (or MSSQL) DB.
If your calculated field is defined in the same table as inserted/updated record, you need to write two triggers, the first on BEFORE_INSERT event, and the second on BEFORE_UPDATE...
Hi Eugenio,
I understand your position, even if my example was too simple to match reality: I deal with views which share 20-30 fields with related tables, with 2 or 3 enhanced fields... So I think users would not be confusing if I present to them a INSERT form hiding 3 fields between 30.
Never...
Dear Eugenio, please find enclosed a simple example of the situations I often deal with: a test_cust table and a test_invoices table with a foreign key linked to test_cust. I want to show to the user a enhanced grid based on test_v_cust view but I would like to allow insertions/updates to the...