We are developing an application that relies heavily on the Tabulator library. We want to support 2 different locales for the numbers' format, the Dutch one and the UK one.
Main action that the clients do is pasting data from Excel file directly into the table. We want to extract some metadata from the Excel file using window.clipText = e.clipboardData.getData("text/html");
which will give us the decimal and thousands separator and thus providing us with the correct locale.
Now we are looking for a solution where we can catch the pasting event and extract the metadata from the Excel file before the default parser extracts the text.
Is this possible?