2025.9.1更新
| No | 作業項目 | 基準料金 | 備考 | 
|---|---|---|---|
1  | 
							ウェブ制作 | ||
| 1.1 | サイト構成 5カテゴリ以下 | ¥49,000円 | 基本料金 | 
| 1.2 | サイト構成 6〜10カテゴリ | ¥82000円 | 基本料金 | 
| 1.3 | サイト構成 11 カテゴリ以上 | ¥115,000〜 | 基本料金 | 
| 1.4 | ロゴ制作 | ¥2,500/hr | 作業時間料金+4,400円(技術料) | 
| 1.5 | インターネット接続設定 | ¥2,500/hr | 作業時間料金+4,400円(技術料) | 
| 1.6 | サーバ設定(FTP及びサーバ側のメール設定) | ||
| 2 | ウェブページ制作 | 技術料¥2,200円 | |
| 2.1 | 新設 | ¥2,500/hr | 作業時間料金+技術料 | 
| 2.2 | 問い合わせフォーム | ¥2,500/hr | 作業時間料金+技術料(5.500円) | 
| 2.3 | 交通案内など | ¥2,500/hr | 作業時間料金+技術料 | 
| 2.4 | 撮影(出張撮影) | ¥3,300円/hr 
  | 
						  撮影時間料金+出張交通費 | 
| 2.5 | 静止画・加工編集 | ¥2,500/hr | 作業時間料金 | 
| 2.6 | 動画編集 | ¥2,500/hr | 作業時間料金+技術料(¥4,400円)  | 
					  
| 3 | プロモションビデオ制作 | 技術料¥4,400円 | |
| 3.1 | 撮影 | 項目2.4による | |
| 3.2 | 動画編集 | ¥2,500/hr | 作業時間料金+技術料 | 
| 3.3 | タイトル・テロップ | ¥2,500/hr | 作業時間料金 | 
| 3.4 | 動画出力変換 | ¥2,500/hr | 作業時間料金 | 
| 4 | ネットショップ構築支援 | ¥77,000円/式 | ソフト含む、商品10種、ウェブ3ページ | 
| 4.1 | 更新作業A | ¥24,000円/月 | 4回/月 | 
| 4.2 | 更新作業B | ¥10,000円/¥月 | 2回/月 | 
| 4.3 | 更新作業C | 7,000/月 | 1回/月 | 
| 5 | 納入後のサポート | 詳細は<ここを>クリック | |
| 6 | 出張指導:Web制作・MACデザインツ-ル・トラブル対策コンサルト | ¥3,300/hr | 交通費(バス電車)、 | 
Check out the getting started demo to see how to setup FooTable.
You simply need to include the sorting add-on javascript file to make your table sortable:
<script src="path_to_your_js/footable.sort.js" type="text/javascript"></script>
Sorting of columns is done using FooTable's built-in parsers, which are defined in the default options. The parsers first look at the data-value attribute of a cell, and if there is no data-value attribute, then the .text() of the cell is used. Sorting is done using text-comparisons.
To sort numeric data, you must specify that the column is data-type="numeric"
To sort dates, you must specify that the column is data-type="numeric" and also specify a data-value value for each cell, which can be either the date value in ticks or the unix timestamp value, e.g. <td data-value="500874333932">15 Nov 1985</td>
You can disable sorting for a table by adding the data attribute data-sort="false" to the table.
You can disable sorting for specific columns by adding the data attribute data-sort-ignore="true" to the column header definition.
You can sort a table automatically when the FooTable is initialized by adding some data attributes to your columns:
data-sort-initial="true" will automatically sort the column when the FooTable is initialized.
data-sort-initial="descending" will automatically sort the column in descending order when the FooTable is initialized.
<table class="table demo"> <thead> <tr> <th data-type="numeric" data-sort-initial="true"> ID </th> <th> First Name </th> <th data-sort-ignore="true"> Last Name </th> </tr> </thead>
You can also programmatically sort your table:
$('.sort-column').click(function (e) {
    e.preventDefault();
    //get the footable sort object
    var footableSort = $('table').data('footable-sort');
    //get the index we are wanting to sort by
    var index = $(this).data('index');
    //get the sort order
    var ascending = $(this).data('ascending');
    footableSort.doSort(index, ascending);
});
                If you do not pass a sort order, it will toggle whatever the current sort order is.