-
Updated
Dec 21, 2020 - PHP
#
office
Here are 496 public repositories matching this topic...
A pure PHP library for reading and writing spreadsheet files
Heidistein
commented
Apr 17, 2020
I try to switch from RamBox to Ferdi. However I have several services with the same icon (slack, nextcloud). It would be a great help if I just cloud add a small textual label next to, under, over the icon. Don't care where.
Sorry that this is not a pull request, my JS/css knowledge is insufficient. I tried copying the tooltip to a div. Didn't get the correct tooltip and a misplaced div...
ONLYOFFICE Document Server is an online office suite comprising viewers and editors for texts, spreadsheets and presentations, fully compatible with Office Open XML formats: .docx, .xlsx, .pptx and enabling collaborative editing in real time.
nodejs
node
presentation
excel
word
xlsx
xls
spreadsheet
collaboration
office
docx
node-js
pptx
collaborative
doc
ods
odp
odt
ppt
onlyoffice
-
Updated
Dec 9, 2020 - Shell
WPF Ribbon control like in Office
c-sharp
roadmap
xaml
control
twitter
nuget
wpf
history
office
ribbon
releasenotes
hacktoberfest
showcase-application
-
Updated
Dec 17, 2020 - C#
-
Updated
May 25, 2019 - Batchfile
Fast and easy to use .NET library that creates or modifies Microsoft Word files without installing Word.
-
Updated
Sep 29, 2020 - C#
A pure PHP library for reading and writing presentations documents
php
font
slide
composer
register
presentation
office
powerpoint
autoloader
pptx
libreoffice-impress
hacktoberfest
odp
ppt
mspowerpoint
-
Updated
Dec 20, 2020 - PHP
An office suite that combines text, spreadsheet and presentation editors allowing to create, view and edit local documents
nodejs
node
presentation
excel
word
xlsx
xls
spreadsheet
desktop
collaboration
office
docx
pptx
doc
ods
odp
odt
ppt
onlyoffice
-
Updated
Dec 8, 2020
Microsoft Integration, Azure, Power Platform, Office 365 and much more Stencils Pack it’s a Visio package that contains fully resizable Visio shapes (symbols/icons) that will help you to visually represent On-premise, Cloud or Hybrid Integration and Enterprise architectures scenarios (BizTalk Server, API Management, Logic Apps, Service Bus, Event Hub…), solutions diagrams and features or systems that use Microsoft Azure and related cloud and on-premises technologies in Visio 2016/2013
integration
shapes
visio
azure
office
office-365
stencils
power-platform
stencils-pack
mis-azure
support-stencils
systems-logo-stencils
sap-stencils
resizable-visio-shapes
mis-devices-stencils
-
Updated
Sep 25, 2020 - PowerShell
Yeoman generator for building Microsoft Office related projects.
-
Updated
Dec 3, 2020 - TypeScript
Excel spreadsheet (XLSX) format parser written in pure Swift
-
Updated
Dec 9, 2020 - Swift
Microsoft Windows/Office 一键激活工具,基于kms.jm33.me的KMS服务器
-
Updated
Dec 9, 2020 - C#
flask后端开发接口示例,利用Flask开发后端API接口。包含基本的项目配置、统一响应、MySQL和Redis数据库操作、定时任务、图片生成、项目部署、用户权限认证、报表输出、无限层级生成目录树、阿里云手机验证码验证、微信授权、Celery、单元测试、Drone等模块。
docker
flask
drone
docker-compose
office
python3
unittest
flask-api
flask-restful
flask-celery
flask-yaml
-
Updated
Jul 7, 2020 - Python
jQuery UI widget for color picking (similar to the one in Microsoft Office 2010).
javascript
jquery
color
palette
color-palettes
jquery-plugin
widget
color-picker
jquery-ui
colors
color-palette
office
picker
color-theme
ui-components
colorpicker
picker-component
color-selector
colorpickerview
-
Updated
Nov 7, 2020 - JavaScript
Improve this page
Add a description, image, and links to the office topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the office topic, visit your repo's landing page and select "manage topics."


一般情况,单元格JSON数据:
{
"ct": { //单元格值格式
"fa": "General", //格式名称为自动格式
"t": "n" //格式类型为数字类型
},
"v": 233, //内容的原始值为 233
"m": 233
}
里面的内容是保存在v里面的
而多行文本的内容却保存在ct里面的s里面的v里面,JSON结构如下
{
"ct": { //单元格值格式
"fa": "General", //格式名称为自动格式
"t": "inlineStr" ,
"s":[{"v":"多行文本\n多行文本"}]
}
}
这两种单元格的JSON结构都不一致呢,导致websocket后端保存数据 update