aVadim483 / fast-excel-writer

Lightweight and very fast XLSX Excel Spreadsheet Writer in PHP
MIT License
177 stars 31 forks source link

Disabling message box on data validation #86

Closed PaulCombal closed 1 month ago

PaulCombal commented 1 month ago

Hello,

When using data validation, there is an optional option in Excel that lets you show a popup when the data is invalid. This popup can be disabled in the user interface as shown (LibreOffice and Excel have the same):

image

So far I haven't seen the possibility to control this option. As an example example, is it possible to make a validation dropbox with no error message if the value isn't in the list?

Is there something I missed?

Once again thank you!

aVadim483 commented 1 month ago

I forgot, this was already implemented )

// Disallow error message
$validation->showErrorMessage(false);
PaulCombal commented 1 month ago

That's just perfect, one step ahaead as always. Many thanks!