Search results

  1. W

    custom html page

    I have a simple html page that used for data range choice. Via the submit button, using POST method, I reach a php page with a custom report getting data from my tables and using tcpdf as pdf generator. If I embed HTML code in a custom HTML page it is properly rendered inside my application but...
  2. W

    Aveto 12.2. new config parameter, $pdf_page_format

    About the use of this new parameter: does it works in config_custom.php (so valid for all the templates) or can it be used in template_settings.php files so each template potentially has its own page format?
  3. W

    silent printing

    Hi, I have a pdf template properly working. I use custom button (php_standard) to open the page with this template, button is on row so I get data from the record easily. Here the code for the button callback function: function dadabik_pdf_eti_bancale($table_name, $where_field, $where_value) {...
  4. W

    pdf generation from a view after search

    I have a view where I get a list of operations with field DATE and KG. The view data are ordered by DATE. I should generate a pdf where I have data grouped by DATE and at the end of each group I need the total of the fields KG. It should be something like a tabular data pdf but after each group...
  5. W

    check_ids array

    I am using the checkbox to perfom an update for selected records. foreach ($_SESSION['checked_ids']['BANCALI_DISP'] as $key => $value){ ddb_api::update_record('TBL_BANCALI', 'IDX_BANCALE', $key, ['STATO_BANC'], [$_SESSION['NUOVA_PACK_LIST']]); }...
  6. W

    wrong data count

    I have a page based on a table but I find a wrong rows count in the result grid page as in the screenshot heredown: 37 records found on 31 records total How is this possible? If I look at the table with phpmyadmin I find 31 records. Your current DaDaBIK version You are using DaDaBIK version...
  7. W

    font dimensions for title of details section

    Where could I find the settings for the details section header font dimension? I am not that skille with css, I suppose my need is managed by css but I don't know where/how. Thank you Your current DaDaBIK version You are using DaDaBIK version 12.0-Aveto enterprise, installed on 18-05-2024...
  8. W

    cascade filter different behaviours

    I have a form called COMMESSE that is master in a master detail relation. In the details section I have a table SCARICO_MAT. Relation is defined by ID_LOTTO (1 in COMMESSE -> many in SCARICO_MAT) SCARICO_MAT has a field with cascade filter setting. This cascade filter settings works if I add a...
  9. W

    php custom page with PDF created by tcpdf

    I wrote a php page generating a pdf with header + tabular data using tcpdf library. The page works well if I just open it in my browser as a standalone page http://ipaddress/test_pdf.php I would like insert this page in my dadabik app as custom page since I would like generating this report...
  10. W

    logo not loaded after update

    After updating to V12, I have the default dadabik logo instead of my images/logo.png loaded. I already erased browser cache, used a different browser without any success. Before updating, logo was properly shown. Any idea about solving this issue? Your current DaDaBIK version You are using...
  11. W

    about pdf with tabular + header (i.e. master details)

    I am designing a pdf report called PACKING LIST. I have a master table with main data (header) and a details table with the tabular data (list of pallets loaded). In the _header.php is it possible using data retrieved with ddb_api::get_record_details function? In the tabular part details table...
  12. W

    Customize standard form headers

    Is it possible change/hide the words "edit record" or "record details" that appear on the top of the form, just below the page name? Your current DaDaBIK version You are using DaDaBIK version 11.12-Elba enterprise, installed on 25-03-2024 (installation code: 194506601bb58bf10c), the latest...
  13. W

    multiple master/details form

    I have: - TABLE PACKING LIST with the master data - TABLE PALLETS with all the pallets produced Every pallet recod has a fiels STATUS that is: 0 when apllet is produced and still in warehouse, n with n equals the ID of the packing list where the pallet will be loaded. I am trying to find a nice...
  14. W

    delete selected with checkbox

    I am testing checkbox use in grid results in order to perform actions on more records at once. Is there a way not to show "delete selected" button? I already set up 'ask before delete' option but in any case, the possibility of hiding (or not showing) the delete button should be safer as it...
  15. W

    different page format for different pdf

    I need to print in different page formats. My application will be used in main office for production planning and in the production plant for label printing. I use _settings.php files for each template. What is the proper way to make the pdf generated on specific paper format? In the office we...
  16. W

    virtual column update

    I have a virtual column called KG_H in my db. When I change some value in the form and I save I get this message: "[08] Error: during query execution. UPDATE `TBL_COMMESSE` SET `ID_LINEA` = '4', `ID_LOTTO` = '24062', `MATERIALE` = 'HD BIANCO', `ID_SOGGETTO` = '189', `ID_MARCHIO` = '0', `NOTE` =...
  17. W

    custom formatting function

    I use a custom formatting function for a field. The field is shown with correct format in result and details forms. In edit forms I show it but disabled but the format in not applied (I see the raw data without formatting function effect). Is this behaviour correct? Being specific: the filed is...
  18. W

    <<previous and next>> buttons

    Is there a way to hide these buttons from the page? They appear on edit form but I'd like not having them to make the UI as simple as possible for my final operators Your current DaDaBIK version You are using DaDaBIK version 11.12-Elba enterprise, installed on 25-03-2024 (installation code...
  19. W

    hide Show Revisions Button

    Is it possible not showing the "SHOW REVISIONS" buitton in the forms? Thanks for the help Your current DaDaBIK version You are using DaDaBIK version 11.12-Elba enterprise, installed on 25-03-2024 (installation code: XXXX), the latest version of DaDaBIK is 11.12-Elba released on 30-11-2023 You...
  20. W

    using a custom button to apply a filter (via redirecting)

    I have page PIANI_LINEE that is created on a VIEW. In the results_grid form I placed 3 custom buttons in each row since they act on the single record. Furthermore I'd like having 3 custom buttons on the top: LINEA 2 , LINEA 3 , LINEA 4 I would use header(Location...... function so when I click...
Top