Welcome to the Vue feedback portal. We’re happy you’re here! If you have feedback on how to improve the Vue, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

I add a custom function and register it  when view created.

Then I use this function in a cell.   A random number will display in the cell. But after I save as Excel. The cell is empty. Nothing in the cell. 

Is this a bug? 


selfRandom() {

      return Math.random();

    },

    // 注册自定义函数

    regsterFn() {

      var spreadsheet = this.$refs.spreadsheet;

      spreadsheet.addCustomFunction(this.selfRandom, "selfrandom");

    },