Skip to content
#

spreadsheet

Here are 591 public repositories matching this topic...

sheetjs
dandv
dandv commented Jan 6, 2020
const XLSX = require('xlsx');

const wb = XLSX.utils.book_new();

const ws = XLSX.utils.json_to_sheet([]);

XLSX.utils.book_append_sheet(wb, ws, 'Bug sheet');

ws.A1 = { t: 's', f: 'square' };

XLSX.writeFile(wb, 'formula.ods');

The resulting .ODS file contains:

<table:table-cell table:formula="of:=square" office:value-type="string"><text:p>undefined</text:p></table
handsontable
xihaoxiaohao
xihaoxiaohao commented Nov 20, 2019

Below steps leads to unexpected behavior:

  1. Mouse click on any cell
  2. Release the mouse
  3. Move the mouse to hover other cells
  4. The application will automatically select those hover cell

Codesandbox: https://4jdit.csb.app

Code:

import React, { useState } from "react";
import ReactDataSheet from "react-datasheet";
import "react-datasheet/lib/react-datasheet.css";

expor
leahein
leahein commented Jan 23, 2020

This isn't so much an issue as a question about contributing --

I'm an avid user of the library, and have submitted a few issues in the past as well. I'd love to contribute to the library and I thought a good way to start would be by improving the docs, starting with React.
Since React has added hooks and is moving away from class components, I t

freb
freb commented Apr 27, 2020

When creating a document, things get a little annoying once you start working with tables. I think one of the main annoyances is that once you have a table in the document, you cannot continue adding content after you've inserted the table. Instead you have to do something like:

p1 := doc.AddParagraph()
pAfterTable := doc.InsertParagraphAfter(p1)
table := doc.InsertTableAfter(p1)

//
jkyeung
jkyeung commented Apr 7, 2020

This is motivated by the weirdness that is Excel's "center across selection". After playing around with Excel for a bit, I now understand how this works. And it makes complete sense that it is achieved in XlsxWriter the way it is.

However, I think it would be nice to have an additional worksheet method which makes it easier. I was thinking format_range, which would be somewhat like `merge_ran

hymie0
hymie0 commented Aug 16, 2019

The documentation says

The :datefmt command takes the cell's text content that represents a date,
and uses a given format to set the numeric value of the cell.
Its format is ':datefmt "{strftime_format}"', taking a strftime-compatible
format string.  The format is applied to the cell (as could be done with
the :format function) so that the value is displayed as
DocumentServer
zjs-apple
zjs-apple commented Apr 30, 2020

When i Installing Document Server for Linux on CentOS7.5.
Reference:https://helpcenter.onlyoffice.com/server/linux/document/linux-installation-centos.aspx
In the end,the document server is ok,
but When I test editing files,
ws://XXXX/5.5.1-76/doc/b81fdff747a247929253f4701a92bc521588227954180/c/208/zp1umjpc/websocket
This link has been pending.
Centos7.5:port all open,firewall is closed.
Wha

js87zz
js87zz commented Jan 21, 2020

Those who fail to find a document or an example refer here to resolve the issue first.
We are planned to build our official document site and before that is completed, please refer to the below link.

keyapi
keyapi commented Feb 20, 2020

In pandas dataframe, dtype of a column with NaN+integer would be changed into 'float', in cases of must-keep-integer, it's useful to replace dtype:'float' with dtype:'Int64', see: https://pandas.pydata.org/pandas-docs/stable/user_guide/integer_na.html

I use wks.set_dataframe(df, (1,1), nan="") to transfer a dataframe to a gsheet worksheet, but the pandas column with dtype:'float' (mixture of Na

DesktopEditors
parrenin
parrenin commented Feb 26, 2020

Do you want to request a feature or report a bug?
Request a feature.
What is the current behavior?
The equation editor of OnlyOffice generally uses LaTex shortcuts, which is good.
But the \frac shortcut for creating fractions does not work.
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem.

**What is the ex

tlouwers
tlouwers commented Feb 10, 2020

When I try to open a sample xslx file, which has a sheet in it with an embedded PowerPoint, I get the following exception: xlnt::exception : missing global header signature

If there are more sheets in it, none of them can be handled as loading the xslx file fails with that exception. I was wondering if there is a way to still be able to read the other sheets, simply ignoring the sheets which

Improve this page

Add a description, image, and links to the spreadsheet topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the spreadsheet topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.