タグ

2018年4月3日のブックマーク (2件)

  • Clusterize.js

    <!--HTML--> <div class="clusterize"> <table> <thead> <tr> <th>Headers</th> </tr> </thead> </table> <div id="scrollArea" class="clusterize-scroll"> <table> <tbody id="contentArea" class="clusterize-content"> <tr class="clusterize-no-data"> <td>Loading data…</td> </tr> </tbody> </table> </div> </div> <!--HTML--> <div class="clusterize"> <table> <thead> <tr> <th>Headers</th> </tr> </thead> </table> <

    hideito2000
    hideito2000 2018/04/03
    大量データ表示処理 Table
  • GAE/J JSON出力

    GAE/Jを操作する上でのメモ. GAE/J上でJSONを出力させるために,JSONICライブラリを使用しようとすると以下のように注意される. net.arnx.jsonic.JSON is not supported by Google App Engine's Java runtime environment どうやらサポート対象外らしい. 仕方なく他のライブラリを探していたところ,GAEのAPIにJSONObjectを扱うものを見つけたので使ってみる.(パッケージ名:com.google.appengine.repackaged.org.json) 結果,問題なくPOJO⇔JSONへ変換できました.やったね! おしまい.

    hideito2000
    hideito2000 2018/04/03
    “com.google.appengine.repackaged.org.json” GAE/J Java JSON