作業料金・見積基準値です。

2024.1.5更新

No 作業項目 基準料金 備考

1

ウェブ制作    
1.1 サイト構成 5カテゴリ以下 ¥45,000円  基本料金
1.2 サイト構成 6〜10カテゴリ ¥75,000円  基本料金
1.3 サイト構成 11 カテゴリ以上 ¥105,000〜  基本料金
1.4 ロゴ制作 ¥2,200/hr 作業時間料金+4,000円(技術料)
1.5 インターネット接続設定 ¥2,200/hr 作業時間料金+4,000円(技術料)
1.6     サーバ設定(FTP及びサーバ側のメール設定)
2 ウェブページ制作   技術料¥2,000円
2.1  新設 ¥2,200/hr 作業時間料金+技術料
2.2  問い合わせフォーム ¥2,200/hr 作業時間料金+技術料(5.000円)
2.3  交通案内など ¥2,200/hr 作業時間料金+技術料
2.4 撮影(出張撮影)

¥3,000円/hr

 

撮影時間料金+出張交通費
2.5 静止画・加工編集 ¥2,200/hr 作業時間料金
2.6 動画編集 ¥2,200/hr

作業時間料金+技術料(¥4,000円)

3 プロモションビデオ制作   技術料¥4,000円
3.1 撮影   項目2.4による
3.2 動画編集 ¥2,200/hr 作業時間料金+技術料
3.3 タイトル・テロップ ¥2,200/hr 作業時間料金
3.4 動画出力変換 ¥2,200/hr 作業時間料金
4 ネットショップ構築支援 ¥70,000円/式 ソフト含む、商品10種、ウェブ3ページ
4.1 更新作業A ¥20,000円/月 4回/月
4.2 更新作業B ¥9,000円/¥月 2回/月
4.3 更新作業C ¥6,000/月 1回/月
       
5 納入後のサポート   詳細は<ここを>クリック

Check out the getting started demo to see how to setup FooTable.

Include Sorting Add-On

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

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.

Sorting Numeric Data

To sort numeric data, you must specify that the column is data-type="numeric"

Sorting Dates

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>

Disable Sorting On Entire Table

You can disable sorting for a table by adding the data attribute data-sort="false" to the table.

Disable Sorting For Certain Columns

You can disable sorting for specific columns by adding the data attribute data-sort-ignore="true" to the column header definition.

Initial Sorting

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>

Sorting API

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.