Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Validator extension with Angular not working #30

Open
gcfalck opened this issue May 9, 2023 · 0 comments
Open

Validator extension with Angular not working #30

gcfalck opened this issue May 9, 2023 · 0 comments

Comments

@gcfalck
Copy link

gcfalck commented May 9, 2023

I'm trying to use the validation extension with an angular project. I've updated my license key to include Validations. I include the validation npm package and set the extension but when I go to execute the code, it says the worksheet object is valid but setValidations is undefined.
The runtime error is: ERROR TypeError: worksheet.setValidations is not a function.
I see in the index.d.ts file, setValidations should be on the worksheetInstance object.

How do I get Validations to work with jSpreadsheet in Angular?

Thanks, Greg

Sample code below

        import { validations } from '@jspreadsheet/validations';
        import * as jspreadsheet from 'jspreadsheet';
        jspreadsheet.setLicense('xxxxxx');
        // Set the extensions
        jspreadsheet.setExtensions({ validations });
        this.jss= jspreadsheet(nativeElement, { ... });

        function onBeforePaste(worksheet, data, x, y, style, processedData) {

            // if some condition - call setValidators(worksheet);

            function setValidators(worksheet: jspreadsheet.worksheetInstance) {
                // if some condition is met
                worksheet.setValidations([{
                    index: 0,
                    value: {
                        range: 'A3',
                        action: 'warning',
                        criteria: '!=',
                        type: 'text',
                        allowBlank: false,
                        value: ['xxxxRandomStringyyyy'],
                        text: 'You have an error!'
                    }
                }]);
            }
        }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant