gridjs-spreadsheet 25.6.0 → 25.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ae125bc972519a804601f2ead209255c.svg +914 -0
- package/example/Dockerfile +7 -10
- package/example/README.md +329 -44
- package/example/pom.xml +2 -2
- package/example/src/main/java/com/aspose/gridjs/demo/controller/GridJs2Controller.java +9 -9
- package/example/src/main/resources/application.properties +7 -3
- package/example/src/main/resources/static/xspread/555f60323063f2b68b6eac7ce9c45b19.svg +88 -0
- package/example/src/main/resources/templates/fileFromUpload.html +18 -17
- package/example/src/main/resources/templates/index.html +1 -1
- package/package.json +1 -1
- package/readme.md +4 -58
- package/xspreadsheet.css +103 -5
- package/xspreadsheet.js +5 -5
- package/example/src/main/java/com/aspose/gridjs/demo/MyConfig.java.bak +0 -31
- package/example/src/main/resources/static/xspread/content/img/20130527034914143.gif +0 -0
- package/example/src/main/resources/static/xspread/content/img/20130527034914229.gif +0 -0
- package/example/src/main/resources/static/xspread/content/img/20130527034916363.gif +0 -0
- package/example/src/main/resources/static/xspread/content/img/20130527034917946.gif +0 -0
- package/example/src/main/resources/static/xspread/content/img/20130527034918372.gif +0 -0
- package/preview.gif +0 -0
- /package/{a3b683289420fd8ec937908397907279.svg → example/src/main/resources/static/xspread/a3b683289420fd8ec937908397907279.svg} +0 -0
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
package com.aspose.gridjs.demo;
|
|
2
|
-
|
|
3
|
-
import org.springframework.beans.factory.annotation.Value;
|
|
4
|
-
import org.springframework.context.annotation.Bean;
|
|
5
|
-
import org.springframework.context.annotation.Configuration;
|
|
6
|
-
|
|
7
|
-
import com.aspose.gridjs.GridJsOptions;
|
|
8
|
-
import com.aspose.gridjs.GridJsService;
|
|
9
|
-
import com.aspose.gridjs.IGridJsService;
|
|
10
|
-
|
|
11
|
-
@Configuration
|
|
12
|
-
public class MyConfig {
|
|
13
|
-
@Value("${testconfig.CachePath}")
|
|
14
|
-
public String cachePath;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
@Value("${testconfig.AsposeLicensePath}")
|
|
18
|
-
public String asposeLicensePath;
|
|
19
|
-
|
|
20
|
-
@Bean
|
|
21
|
-
public GridJsOptions gridJsOptions() {
|
|
22
|
-
GridJsOptions options=new GridJsOptions();
|
|
23
|
-
options.setFileCacheDirectory(cachePath);
|
|
24
|
-
return options;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
@Bean
|
|
28
|
-
public IGridJsService gridJsService(GridJsOptions gridJsOptions) throws Exception {
|
|
29
|
-
return new GridJsService(gridJsOptions);
|
|
30
|
-
}
|
|
31
|
-
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/preview.gif
DELETED
|
Binary file
|