Framework7-smart-select-with-search-bar

提供:Dev Guides
移動先:案内検索

Framework7-スマートセレクト検索バー

説明

スマートセレクトは、_search bar_を使用して要素を検索し、_data-searchbar_クラスをtrueに設定して有効にします。

次の例では、Framework7の選択検索バーを使用してリストから項目を選択できます-

<!DOCTYPE html>
<html>

   <head>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1,
         maximum-scale = 1, minimum-scale = 1, user-scalable = no, minimal-ui"/>
      <meta name = "apple-mobile-web-app-capable" content = "yes"/>
      <meta name = "apple-mobile-web-app-status-bar-style" content = "black"/>
      <title>Smart Select Search Bar</title>
      <link rel = "stylesheet"
         href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.min.css"/>
      <link rel = "stylesheet"
         href = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/css/framework7.ios.colors.min.css"/>
   </head>

   <body>
      <div class = "views">
         <div class = "view view-main">

            <div class = "navbar">
               <div class = "navbar-inner">
                  <div class = "left"> </div>
                  <div class = "center sliding">Smart Select with Search Bar</div>
                  <div class = "right"> </div>
               </div>
            </div>

            <div class = "pages navbar-through">
               <div data-page = "home" class = "page">
                  <div class = "page-content">
                     <div class = "list-block">
                        <ul>
                           <li>
                              <a href = "#" data-searchbar = "true" data-searchbar-placeholder = "Search Countries" class = "item-link smart-select">

                                 <select name = "countries">
                                    <option value = "India" selected>India</option>
                                    <option value = "Newz = Zealnad">New Zealand</option>
                                    <option value = "Srilanka">Srilanka</option>
                                    <option value = "WestIndies">West Indies</option>
                                    <option value = "China">China</option>
                                 </select>

                                 <div class = "item-content">
                                    <div class = "item-inner">
                                       <div class = "item-title">Countries</div>
                                    </div>
                                 </div>
                              </a>
                           </li>

                           <li>
                              <a href = "#" data-searchbar = "true" data-searchbar-placeholder = "Search Sports" class = "item-link smart-select">

                                 <select name = "sports">
                                    <option value = "Cricket">Cricket</option>
                                    <option value = "Hockey">Hockey</option>
                                    <option value = "Football">Football</option>
                                    <option value = "Volleyball" selected>Volleyball</option>
                                    <option value = "Rugby">Rugby</option>
                                 </select>

                                 <div class = "item-content">
                                    <div class = "item-inner">
                                       <div class = "item-title">Sports</div>
                                    </div>
                                 </div>
                              </a>
                           </li>

                           <li>
                              <a href = "#" data-searchbar = "true" data-searchbar-placeholder = "Search Books" class = "item-link smart-select">

                                 <select name = "books">
                                    <option value = "EyesDragon" selected>Eyes of the Dragon</option>
                                    <option value = "Winter">Winter Wedding</option>
                                    <option value = "DarkWood" selected>In a Dark, Dark Wood</option>
                                    <option value = "FarAway" selected>Far and Away</option>
                                    <option value = "WasteLands">The Waste Lands</option>
                                 </select>

                                 <div class = "item-content">
                                    <div class = "item-inner">
                                       <div class = "item-title">Books</div>
                                    </div>
                                 </div>
                              </a>
                           </li>
                        </ul>
                     </div>
                  </div>

               </div>
            </div>
         </div>
      </div>

      <script type = "text/javascript"
         src = "https://cdnjs.cloudflare.com/ajax/libs/framework7/1.4.2/js/framework7.min.js"></script>

      <script>
        //here initialize the app
         var myApp = new Framework7 ({
            animateNavBackIcon:true
         });

        //If your using custom DOM library, then save it to $$ variable
         var $$ = Dom7;

        //Add the view
         var mainView = myApp.addView('.view-main', {
           //enable the dynamic navbar for this view
            dynamicNavbar: true
         });
      </script>
   </body>

</html>

出力

上記のコードがどのように機能するかを確認するために次の手順を実行してみましょう-

  • 上記のHTMLコードを smart_select_with_search_barl ファイルとしてサーバーのルートフォルダーに保存します。
  • このHTMLファイルをhttp://localhost/smart_select_with_search_barlとして開くと、出力は以下のように表示されます。
  • 出力は、スマート選択クラスを使用してスマート選択レイアウトを表示し、選択要素内のリストを検索バーとともに表示することを示しています。
  • リストから特定の要素をクリックすると、選択した要素内の別のリストを検索バーとともに表示できます。検索バーでは、オプションを1つだけ選択できます。リストから特定の要素を検索する場合は、要素名を入力できます検索バーで。