ナビゲーション リンクのスキップ
 新機能 の展開 新機能
 InputMan連携 の展開 InputMan連携
 マルチタッチ機能 の展開 マルチタッチ機能
 セル、行、列、ヘッダ の展開 セル、行、列、ヘッダ
 シート の展開 シート
 スタイル の展開 スタイル
 選択 の展開 選択
 セル型 の展開 セル型
 編集 の展開 編集
 ソート の展開 ソート
 フィルタリング の縮小 フィルタリング
 グループ化 の展開 グループ化
 ページング の展開 ページング
 スクロール の展開 スクロール
 データ連結 の展開 データ連結
 階層表示 の展開 階層表示
 コマンドバー の展開 コマンドバー
 チャート の展開 チャート
 数式 の展開 数式
 インポート/エクスポート の展開 インポート/エクスポート
 クライアント側スクリプト の展開 クライアント側スクリプト

条件フィルタ

シートのAutoFilterModeプロパティをFilterBarに設定することで、 列ヘッダの下にテキストボックスと「指定の値を含む」などの条件が定義されたドロップダウンリストが表示されます。 これらを使用して条件に一致した項目のみを絞り込んで表示することができます。
 ID氏名カナ生年月日性別血液型部署入社日メールアドレス
11001亀甲 滋万キコウ シゲマ1950/02/04A人事部1972/04/01sigema_kikou@abc.co.jp
21002寒田 希世カンダ キヨ1959/06/28B人事部1981/04/01kiyo_kanda@bbb.or.jp
31003小和瀬 澄オワセ キヨ1969/03/06A人事部1991/04/01kiyo_owase@aaa.co.jp
41004宇夫 早余子ウブ サヨコ1976/07/28O人事部1998/04/01sayoko_ubu@bbb.or.jp
51005宇田津 聖智ウダツ キヨトモ1965/09/04A営業部1987/04/01kiyotomo_udatu@abc.co.jp
61006茨城 昭児イバラキ ショウジ1963/04/28O営業部1985/04/01shouzi_ibaraki@xyz.ne.jp
71007石ヶ休 椎茄イシガキュウ シイナ1953/02/21O営業部1975/04/01siina_isigagyuu@abc.co.jp
81008赤司 恵治郎アカツカサ ケイジロウ1968/08/02O経理部1990/04/01keizirou_akatukasa@abc.co.jp
91009小橋 仰一オハシ ギョウイチ1972/03/02B経理部1994/04/01gyouiti_ohasi@abc.co.jp
101010一重 公大イチジュウ コウダイ1964/04/19B経理部1986/04/01koudai_itizyuu@xyz.ne.jp
   

ソースコード

別ウィンドウで表示
using System;
using System.Web.UI.WebControls;

public partial class filtering_filterbar : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if (IsPostBack)
        {
            return;
        }

        // SPREADの設定
        InitSpread(FpSpread1);

        // シート設定
        InitSpreadStyles(FpSpread1.Sheets[0]);
    }

    private void InitSpread(FarPoint.Web.Spread.FpSpread spread)
    {
        //データ連結
        System.Data.DataSet ds = new System.Data.DataSet();
        ds.ReadXml(MapPath("../App_Data/data.xml"));
        spread.DataSource = ds;       

        spread.CssClass = "spreadStyle";
        spread.UseClipboard = false;
    }

    private void InitSpreadStyles(FarPoint.Web.Spread.SheetView sheet)
    {
        // フォントサイズの設定
        sheet.DefaultStyle.Font.Size = FontUnit.Parse("80%");
        sheet.ColumnHeader.DefaultStyle.Font.Size = FontUnit.Parse("80%");
        sheet.RowHeader.DefaultStyle.Font.Size = FontUnit.Parse("80%");
        sheet.SheetCorner.DefaultStyle.Font.Size = FontUnit.Parse("80%");

        // 列幅の設定
        sheet.Columns[0].Width = 70;
        sheet.Columns[1].Width = 90;
        sheet.Columns[2].Width = 100;
        sheet.Columns[3].Width = 120;
        sheet.Columns[4].Width = 60;
        sheet.Columns[5].Width = 60;
        sheet.Columns[6].Width = 60;
        sheet.Columns[7].Width = 130;
        sheet.Columns[8].Width = 190;

        // 縦方向の揃え位置を中央に設定
        sheet.DefaultStyle.VerticalAlign = VerticalAlign.Middle;

        // フィルタリングの設定
        sheet.AutoFilterMode = FarPoint.Web.Spread.AutoFilterMode.FilterBar;

        FarPoint.Web.Spread.FilterBarCellType ct = new FarPoint.Web.Spread.FilterBarCellType();
        ct.MenuType = FarPoint.Web.Spread.FilterMenuType.Number;
        sheet.Columns[0].CellType = new FarPoint.Web.Spread.IntegerCellType();

        FarPoint.Web.Spread.FilterBarCellType ct1 = new FarPoint.Web.Spread.FilterBarCellType();
        ct1.FormatString = "yyyy/MM/dd";
        ct1.MenuType = FarPoint.Web.Spread.FilterMenuType.Date;

        sheet.FilterBar.Cells[3].CellType = ct1;
        sheet.FilterBar.Cells[3].BackColor = System.Drawing.Color.Yellow;

        sheet.FilterBar.Cells[7].CellType = ct1;
        sheet.FilterBar.Cells[7].BackColor = System.Drawing.Color.Tomato;
    }
}

Partial Class filtering_filterbar
    Inherits System.Web.UI.Page

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        If IsPostBack Then
            Return
        End If

        ' SPREADの設定
        InitSpread(FpSpread1)

        ' シート設定
        InitSpreadStyles(FpSpread1.Sheets(0))
    End Sub

    Private Sub InitSpread(ByVal spread As FarPoint.Web.Spread.FpSpread)
        'データ連結
        Dim ds As New System.Data.DataSet()
        ds.ReadXml(MapPath("../App_Data/data.xml"))
        spread.DataSource = ds

        spread.CssClass = "spreadStyle"
        spread.UseClipboard = False
    End Sub

    Private Sub InitSpreadStyles(ByVal sheet As FarPoint.Web.Spread.SheetView)
        ' フォントサイズの設定
        sheet.DefaultStyle.Font.Size = FontUnit.Parse("80%")
        sheet.ColumnHeader.DefaultStyle.Font.Size = FontUnit.Parse("80%")
        sheet.RowHeader.DefaultStyle.Font.Size = FontUnit.Parse("80%")
        sheet.SheetCorner.DefaultStyle.Font.Size = FontUnit.Parse("80%")

        ' 列幅の設定
        sheet.Columns(0).Width = 70
        sheet.Columns(1).Width = 90
        sheet.Columns(2).Width = 100
        sheet.Columns(3).Width = 120
        sheet.Columns(4).Width = 60
        sheet.Columns(5).Width = 60
        sheet.Columns(6).Width = 60
        sheet.Columns(7).Width = 130
        sheet.Columns(8).Width = 190

        ' 縦方向の揃え位置を中央に設定
        sheet.DefaultStyle.VerticalAlign = VerticalAlign.Middle

        ' フィルタリングの設定
        sheet.AutoFilterMode = FarPoint.Web.Spread.AutoFilterMode.FilterBar

        Dim ct As New FarPoint.Web.Spread.FilterBarCellType()
        ct.MenuType = FarPoint.Web.Spread.FilterMenuType.Number
        sheet.Columns(0).CellType = New FarPoint.Web.Spread.IntegerCellType()

        Dim ct1 As New FarPoint.Web.Spread.FilterBarCellType()
        ct1.FormatString = "yyyy/MM/dd"
        ct1.MenuType = FarPoint.Web.Spread.FilterMenuType.[Date]

        sheet.FilterBar.Cells(3).CellType = ct1
        sheet.FilterBar.Cells(3).BackColor = System.Drawing.Color.Yellow

        sheet.FilterBar.Cells(7).CellType = ct1
        sheet.FilterBar.Cells(7).BackColor = System.Drawing.Color.Tomato
    End Sub
End Class
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true"
  CodeFile="filterbar.aspx.cs" Inherits="filtering_filterbar" %>

<%@ Register Assembly="FarPoint.Web.SpreadJ" Namespace="FarPoint.Web.Spread" TagPrefix="FarPoint" %>

<asp:Content ID="Content1" ContentPlaceHolderID="HeaderPlaceHolder1" runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
    <asp:ScriptManager ID="ScriptManager1" runat="server" EnableScriptGlobalization="True">
    </asp:ScriptManager>
    <FarPoint:FpSpread ID="FpSpread1" runat="server" BorderColor="#A0A0A0" BorderStyle="Solid"
        BorderWidth="1px">
        <CommandBar BackColor="#F6F6F6" ButtonFaceColor="Control" ButtonHighlightColor="ControlLightLight"
            ButtonShadowColor="ControlDark">
        </CommandBar>
        <Sheets>
            <FarPoint:SheetView SheetName="Sheet1">
            </FarPoint:SheetView>
        </Sheets>
    </FarPoint:FpSpread>
</asp:Content>