Search results

  1. eugenio

    Multiple form submission / insertion problem

    Hello, if, on an insert form, the user clicks multiple times the save button (and/or the enter button), multiple records will be inserted. This is a quick patch, only tested on V 11.12, which should avoid the problem Open include/header.php and after the first occurrence of...
  2. eugenio

    The old upgrade procedure will probably be abandoned in V. 12

    The old upgrade procedure (upgrade.php/upgrade2.php) will probably be abandoned in V. 12. Only the more recent one (up.php / up2.php) will be maintained. I started this thread to check if any of you are still using the old procedure and if yes, why. Thanks!
  3. eugenio

    insert_date_time/update_date_time + search between operator: wrong calendar picker in quick search

    If you have an insert_date_time or update_date_time field and the field is in the quick search form, if you select "between", the first datepicker will be displayed as a date only picker and not as a datetime picker. The advanced search form shows both elements as datetime pickers. This...
  4. eugenio

    Custom code API + revision bug

    The method update_record, if audit/revisions for the updated table is enabled, registers after update, in revisions, the wrong version of the record (the version before the update instead of the version after the update). This bug will be fixed in the next release, in the meantime, you can fix...
  5. eugenio

    In Progress Simplified conditional fields (set rules in form configurator)

    As you know, at the moment you can set conditional field rules (e.g. show field "State" only if field "Country" is "USA") using custom functions; you write rules in PHP so you don't have limits, rules can also be very complex. In my experience, however, most of the times rules are very simple...
  6. eugenio

    FIXED Upgrade fails for serial not valid (Enterprise Monthly license)

    If you have an enterprise monthly license, you will get a "serial not valid" or similar error message during an upgrade process (up/up2 method). Contact the support for a workaround. This will be fixed with the next DaDaBIK release.
  7. eugenio

    PDFs that uses fields available in the details page but not in the results grid are not correctly generated

    Hi, DaDaBIK 11.10 could not generate correctly PDFs if one or more fields available in the details page are not available in the results grid. Let me explain with an example: table customers (id_customer, name_customer, email_customer). Let's say you show name in the results grid and name +...
  8. eugenio

    FIXED Custom required functions: DaDaBIK may incorrectly hide fields

    If, in the same form, you mixed in your custom required functions the current (return 'show' and 'required' info) approach and the legacy (only return 'required' info) approach, you could get unexpected results: a field could be hidden by DaDaBIK even if it was supposed to be displayed. The bug...
  9. eugenio

    FIXED Users self-registration doesn't work unless you don't change default config settings

    In DaDaBIK V 11.8, users self-registration stops working and asks for missing fields. This is due to the introduction of (optional) privacy checkboxes in the form, that by default are hidden ($show_accept_terms_privacy_checkbox_registration_form = 0). To make self-registration work again, you...
  10. eugenio

    [bug found] Before insert/update operational hooks don't work correctly

    For any field except from image_file fields, the corresponding value of the $parameters_ar array is NULL; for image_file fields, the hook can trigger a PHP error or store an empty value value instead of a NULL value in case the field was empty. This bug has been introduced with V 11.7 and...
  11. eugenio

    [Bug found] Lookup field + AJAX loading -> missing options

    Hi everyone, this is related to the current version (V 11.7) but it most probably affects old version as well. If you use a lookup field and you enable Use AJAX to load options in form configurator and one of the linked fields could contain NULL values, the field doesn't work correctly: when...
  12. eugenio

    A very important DaDaBIK patch, especially if you are using PHP 8.1

    Hello, let me introduce the topic with some background, I'll try to be synthetic and to simplify as much as possible. Background When, in PHP PDO, you read data from a database (technically, when you fetch a record), often the field type is converted to string even if it is a numeric (integer...
  13. eugenio

    In Progress Custom Code API

    With DaDaBIK, you can develop a Web application without coding (no-code); however, you can also add your own custom PHP/Javascript code to the application (using hooks, custom validation functions, custom formatting functions, custom pages etc) in order to fit your needs more precisely...
  14. eugenio

    Full PDF generation for Master/Detail forms

    If you generate a PDF for a master/detail form, at the moment only the master part (e.g. the heading of an invoice) is printed in PDF. To generate the PDF for the detail part, you need to write some code in a custom PHP page. The proposal is to fully support the details part as well.
  15. eugenio

    Bar Code / QR Code content type

    If you set, for a field, the content type to "Barcode" (or "QR Code") DaDaBIK will display the value (in grid, pdf and details page) converting it into a Barcode (or QR Code).
  16. eugenio

    VIEW AS - Admins can view the application AS another user

    The idea is having, only for admin users, close to the languages menu, another menu, VIEW AS. This could be very useful during tests: it allows to choose a particular user and see the application AS such user would see it (considering their permissions).
  17. eugenio

    Templates for tables creation

    There are tables, having a similar structure, that I have to create quite often. For example in my apps I typically have a lot of lookup tables (what we call linked tables in DaDaBIK) having only two fields (id and name), e.g. table states having fields: ID_state (INT, PK, autoincrement)...
  18. eugenio

    We have a brand new Forum Platform!

    Dear users, after exactly 20 years - check my very first post, dated Jan 31st 2002 :) - our old forum platform is ready to retire. We have a new, modern, forum, based on the amazing Xenforo platform and I have migrated all the ~20k posts and users to it. The forum has everything you expect...
Top