All Projects → kawasima → Jagrid

kawasima / Jagrid

Licence: epl-1.0
Japanese-styled grid framework.

Programming Languages

javascript
184084 projects - #8 most used programming language
clojure
4091 projects

Labels

Projects that are alternatives of or similar to Jagrid

poi-mapper
Model to Excel, Excel to Model mapper based on apache poi, java reflection
Stars: ✭ 13 (-95.27%)
Mutual labels:  excel
Vincenty-Excel
Thaddeus Vincenty's Direct and Inverse formulae for geodesic calculations in Excel (distance, azimuth, latitude, longitude).
Stars: ✭ 29 (-89.45%)
Mutual labels:  excel
Poiji
🍬 A tiny library converting excel rows to a list of Java objects based on Apache POI
Stars: ✭ 255 (-7.27%)
Mutual labels:  excel
dbd
dbd is a database prototyping tool that enables data analysts and engineers to quickly load and transform data in SQL databases.
Stars: ✭ 30 (-89.09%)
Mutual labels:  excel
rowy
Open-source Airtable-like experience for your database (Firestore) with GCP's scalability. Build any automation or cloud functions for your product. ⚡️✨
Stars: ✭ 2,676 (+873.09%)
Mutual labels:  excel
excel2xx
导出 Excel 到结构化数据或代码 ( lua, c/c++, go 等等由你的 mako 模板决定 )
Stars: ✭ 14 (-94.91%)
Mutual labels:  excel
rgpipe
lesspipe for ripgrep for common new filetypes using few dependencies
Stars: ✭ 21 (-92.36%)
Mutual labels:  excel
Creek
Ruby library for parsing large Excel files.
Stars: ✭ 270 (-1.82%)
Mutual labels:  excel
VBA-Arrays
😎 Array functions that are similar JavaScript functions. Example: Push, Pop, Shift, Unshift, Sort, length, toString.
Stars: ✭ 48 (-82.55%)
Mutual labels:  excel
phpspreadsheet-bundle
A Symfony bundle to integrate with PHPOffice's PhpSpreadsheet library
Stars: ✭ 47 (-82.91%)
Mutual labels:  excel
EPPlus4PHP
an easy-to-use excel library for php project which is compiled with peachpie. NOT FOR THE COMMON PHP PROJECT!
Stars: ✭ 15 (-94.55%)
Mutual labels:  excel
awesome-canvas
Canvas资源库大全中文版。An awesome Canvas packages and resources.
Stars: ✭ 288 (+4.73%)
Mutual labels:  excel
jupyterlab-spreadsheet-editor
JupyterLab spreadsheet editor for tabular data (e.g. csv, tsv)
Stars: ✭ 72 (-73.82%)
Mutual labels:  excel
Server-Help
💻 This VSTO Add-In allows the user to ping a list of servers and creates a file for Microsoft Remote Desktop Manager an Excel table. This is used for quickly determining which servers are offline in a list. It is written in 3 different versions as a VSTO Add-In in C# and VB.NET as well as a VBA Add-In.
Stars: ✭ 21 (-92.36%)
Mutual labels:  excel
Laravel Nova Excel
🚀 Supercharged Excel exports for Laravel Nova Resources
Stars: ✭ 259 (-5.82%)
Mutual labels:  excel
ExcelFormulaBeautifier
Excel Formula Beautifer,make Excel formulas more easy to read,Excel公式格式化/美化,将Excel公式转为易读的排版
Stars: ✭ 27 (-90.18%)
Mutual labels:  excel
Google-Data-Analytics-Professional-Certificate
Quizzes & Assignment Solutions for Google Data Analytics Professional Certificate on Coursera. Also included a few resources on side that I found helpful.
Stars: ✭ 19 (-93.09%)
Mutual labels:  excel
Fastexcel
Generate and read big Excel files quickly
Stars: ✭ 268 (-2.55%)
Mutual labels:  excel
Unioffice
Pure go library for creating and processing Office Word (.docx), Excel (.xlsx) and Powerpoint (.pptx) documents
Stars: ✭ 3,111 (+1031.27%)
Mutual labels:  excel
LibPQ
Detach your M code from workbooks to reuse it! Import modules from local or web storage (unlimited number of sources)
Stars: ✭ 55 (-80%)
Mutual labels:  excel

jagrid

A CSS framework for Japanese-styled grid sheet.

日本向けのグリッドスタイル

Excel方眼紙業務のWeb移行においては、Bootstrapのような12カラムグリッドスタイルでは、 グリッドが足りません。 そこでExcel方眼紙と同じようにレイアウティングできるCSSフレームワークがjagridです。

sales-report

使い方

<link href="css/jagrid.css" rel="stylesheet"/>
<script src="js/jagrid.js"></script>

jagridのスタイルシートとJavascriptファイルを読みこんでください。

動作環境

  • Chrome
  • Firefox
  • IE9+

Overview

シートの作り方

任意の要素にjagridクラスを定義すると、その中を方眼紙として使えるようになります。

<div class="jagrid" style="width: 400px; height: 200px;">
</div>

狙った位置に要素を書き込む

シートの中では、絶対位置をdata-xおよびdata-y属性を使って指定できます。 ここでは、ピクセル単位ではなく、方眼紙のマス目単位であることに喜びを感じてください。

hello

<div class="jagrid" style="width: 400px; height: 150px;">
 <div data-x="1" data-y="1">
  <p>こんにちは、Excel方眼紙</p>
 </div>
</div>

表組み

シートの中に、まるでExcel方眼紙のように柔軟に表組みを書くことができます。

table

<div class="jagrid" style="width: 400px; height: 150px;">
 <div data-x="1" data-y="1">
  <table>
   <tbody>
    <tr>
     <th class="title" data-width="3">ID</th>
     <th class="title" data-width="5">NAME</th>
    </tr>
    <tr>
     <td>51</td>
     <td>イチロー</td>
    </tr>
   </tbody>
  </table>
 </div>
</div>

列幅はこれもマス目の単位であるため、data-width属性を使って指定します。rowspan属性はふつうのtdダグと同じように使用できます。

リスト

マス目インデントを使った、箇条書きもHTMLのリストでふつうに表現できます。

list

<div class="jagrid" style="width: 400px; height: 150px;">
 <div data-x="1" data-y="1">
  <ul>
   <li>りんご</li>
   <li>ばなな</li>
   <li>いちご</li>
  </ul>
 </div>
 <div data-x="8" data-y="1">
  <ol>
   <li>りんご</li>
   <li>ばなな</li>
   <li>いちご</li>
  </ol>
 </div>
</div>

ビルドの仕方

% lein run

で、cssの下にjagrid.cssが生成されます。

ライセンス

Source Copyright © 2014-2016 kawasima. Distributed under the Eclipse Public License, the same as Clojure uses.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].