Created with a trial version of Syncfusion Essential XlsIO

Even if you have registered your license key, it will appear as a trial version when you save the spreadsheet. 

The sample code using vue2 and the exported screenshot are attached.

The license key is actually using the generated license key.


<main.js>

// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
import router from './router'

import { SpreadsheetPlugin } from '@syncfusion/ej2-vue-spreadsheet'
import { registerLicense } from '@syncfusion/ej2-base'
registerLicense('licenseKey........') // I used an actual generated key here

Vue.config.productionTip = false

Vue.use(SpreadsheetPlugin)

/* eslint-disable no-new */
new Vue({
  el: '#app',
  router,
  components: { App },
  template: '<App/>'
})


<App.vue>

<template>
  <div id="app">

  <div class="control-section">
    <div class="default-section">
      <ejs-spreadsheet
        id="spreadsheet"
        ref="spreadsheet"
        :openUrl="openUrl"
        :saveUrl="saveUrl"
        :allowSave="true"
        locale="en"
        height="600px"></ejs-spreadsheet>
    </div>
  </div>
    <!-- <img src="./assets/logo.png">
    <router-view/> -->
  </div>
</template>

<script>
import '@syncfusion/ej2-vue-spreadsheet/styles/material.css'
import '@syncfusion/ej2-base/styles/material.css'
import '@syncfusion/ej2-buttons/styles/material.css'
import '@syncfusion/ej2-calendars/styles/material.css'
import '@syncfusion/ej2-dropdowns/styles/material.css'
import '@syncfusion/ej2-inputs/styles/material.css'
import '@syncfusion/ej2-navigations/styles/material.css'
import '@syncfusion/ej2-lists/styles/material.css'
import '@syncfusion/ej2-popups/styles/material.css'
import '@syncfusion/ej2-splitbuttons/styles/material.css'
import '@syncfusion/ej2-grids/styles/material.css'

export default {
  name: 'App',
  data: function () {
    return {
      openUrl: 'https://ej2services.syncfusion.com/production/web-services/api/spreadsheet/open',
      saveUrl: 'https://ej2services.syncfusion.com/production/web-services/api/spreadsheet/save'
    }
  }
}
</script>

<style>
#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>







1 Reply

GK Gayathri KarunaiAnandam Syncfusion Team May 12, 2022 11:43 AM UTC

Hi Kyung-hyun Roh,


We have used our ej2 Spreadsheet online web services for demo purpose only. So, we suggest you that use your local service for open/save functionality. We have published a KB which explains how to remove the Trial version tab created in spreadsheet component.


KB: https://www.syncfusion.com/kb/13200/how-to-remove-trial-version-tab-created-in-spreadsheet


Please check the above KB and get back to us, if you need further assistance.


Regards,

Gayathri K


Loader.
Up arrow icon