Luckysheet icon indicating copy to clipboard operation
Luckysheet copied to clipboard

Luckysheet is an online spreadsheet like excel that is powerful, simple to configure, and completely open source.

Results 230 Luckysheet issues
Sort by recently updated
recently updated
newest added

**您的功能请求与问题有关吗?** **描述您想要的解决方案** 在实现excel编辑功能,要求区域选择的删除操作,能监控到相关区域的数据,方便及时更新数据 **其他内容**

**Is your feature request related to a problem? Please describe.** **Describe the solution you'd like** **Additional context**

有大佬试过这种页眉页脚都是图片的情况吗,我现在使用的时候,预览会丢失这部分内容,还有就是连表格的样式也没能完整地读出来,是我的使用姿势不对吗 ![image](https://github.com/dream-num/Luckysheet/assets/118331557/6819b664-9c7a-4126-bb75-66a0aed62c0b)

suppose we are changing the cell value of **sheetindex 0** of cell a1b1 to 10 or by adding formula directly instead write **=** and move to **sheetindex 1** select any...

我的代码如下: ``` - 立即创建 取消 export default { data() { return { form: { name: "", region: "", date1: "", date2: "", }, }; }, mounted() { luckysheet.create({ container: "lsheet",...

this handles the case when `localforage.getItem` throws an async error. without this fix, luckysheet gets stuck in the loading state when an error occurs.

截图如下: wps打开: ![微信图片_20221026165459](https://user-images.githubusercontent.com/80877544/197981690-e03361b4-ebbb-4b83-9377-7671076758e6.png) luckysheet打开: ![微信图片_20221026165555](https://user-images.githubusercontent.com/80877544/197981942-0404e251-16db-479c-a1a8-4a70925e86ea.png)

修复bug:destroy后不刷新页面重新create时,即使传入新的column字段,表格的大小也还是第一次createe时设定的值,原因在于create时Store从defaultSettings中读取了对象,而后续又经由Store对该对象进行了修改,导致对该对象的修改直接修改到了defaultSettings里面(毕竟defaultSettings不是一个扁平的对象),而destroy时并没有把defaultSettings还原,只还原了Store等其它对象。做为defaultSettings,应该是只读的,所以本pr在合并defaultSettings时先将其深度克隆一遍以防止其被修改,就可以防止第二次create时用到上一次的数据了。