SyncFusion Controls

0
0

I am trying to use Syncfusion Essential JS1 Spreadsheet control

Based on https://github.com/iceteagroup/wisej-ext-syncfusion I am including a reference to Wisej.Web.Ext.Syncfusion

If i understand correctly, to use the controls you need to create wisej user control based on syncfusion control.

I am trying to create sfSpreadsheet control, based on https://github.com/iceteagroup/Wisej-Ext-Syncfusion/blob/2.2/Wisej.Web.Ext.Syncfusion/Wisej.Web.Ext.Syncfusion.Test/Component/ejSpreadsheet.cs but in the sample app (attached) spreadsheet control is not displayed on the screen.

What am I missing?

D

  • You must to post comments
0
0

Hi Dino,

To use the spreadsheet from our extension you can use these instructions:

  1. Download and build the Wisej Syncfusion extension from GitHub
  2. Reference the library in a new blank Wisej project
  3. Open the designer
  4. Drag and drop the Wisej Syncfusion dll from the bin folder onto the toolbox to add the full set of controls
  5. You can now drag the spreadsheet or any other control onto your page.

I’ve attached a sample project and the resulting screenshot for your reference :-).

Please let me know if you have any other issues with it!

Best,

Levie

  • Dino Novak
    How can i open xls file from memory stream?
  • Dino Novak
    OK, found how to open file from memroy stream, It requires creating importRequest: var importRequest = new ImportRequest() { FileStream = ms, }; parsing it to JSON: var jsondoc = JSON.Parse(Spreadsheet.Open(importRequest)) and then assigning it to spreadsheet: this.ejSpreadsheet1.Instance.loadFromJSON(jsondoc);
  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.