Skip to main content

Semantic UI dropdown not working Meteor


<select id="edit_start_month" >
<option value disabled selected>--Select Month--</option>
<option value='Jan' {{start_date_month_one}} >Jan</option>
<option value='Feb' {{start_date_month_two}} >Feb</option>
<option value='Mar' {{start_date_month_three}} >Mar</option>
<option value='Apr' {{start_date_month_four}} >Apr</option>
<option value='May' {{start_date_month_five}} >May</option>
<option value='Jun' {{start_date_month_six}} >Jun</option>
<option value='Jul' {{start_date_month_seven}} >Jul</option>
<option value='Aug' {{start_date_month_eight}} >Aug</option>
<option value='Sep' {{start_date_month_nine}} >Sep</option>
<option value='Oct' {{start_date_month_ten}} >Oct</option>
<option value='Nov' {{start_date_month_eleven}} >Nov</option>
<option value='Dec' {{start_date_month_twelve}} >Dec</option>
</select>

Replace this
   

<select name="afknfa" class="ui fluid dropdown category-select">
<option value="angular">one</option>
<option value="css">CSS</option>
<option value="css1">CSS1</option>
<option value="css2">CSS2</option>
</select>    
          <script>
                $('.ui.dropdown.fluid').dropdown(); 
              </script>
  </div>


OR

<select class="selectpicker fluid form-control" id="awd_expert">
    <option selected disabled>Select One</option>
    <option>Beginner</option>
    <option>Middle</option>
    <option>Expert</option>
</select>

.select-dropdown ul {
display: none !important;

}

.select-wrapper input.select-dropdown{

   display: none !important;
}




.select-dropdown .form-control{
border: 0px !important;
}

.selectpicker, input .select-dropdown{
height: 32px !important;
    border: none !important;
    box-shadow: none !important;
    
}


OR

.select-dropdown ul {
    display: none !important;
}

.select-wrapper input.select-dropdown{
    display: none !important;
}

.select-dropdown .form-control{
    border: 10px !important;
}

.selectpicker, input .select-dropdown{
    height: 32px !important;
    border: none !important;
    padding: 0px 0px !important;
}

Comments

Popular posts from this blog

curl http://localhost:8042/studies/333b2c11-52e9feea-5516186e-ecd61f37-69da2603  curl http://localhost:8042/patients/dc65762c-f476e8b9-898834f4-2f8a5014-2599bc94 bird@bird-Lenovo-ideapad-310-15IKB:/media/bird/2AE477A5E4777245/Meteor/OrthancMirror/build$ curl http://localhost:8042/patients [    "333b2c11-52e9feea-5516186e-ecd61f37-69da2603",    "da39a3ee-5e6b4b0d-3255bfef-95601890-afd80709" ] bird@bird-Lenovo-ideapad-310-15IKB:/media/bird/2AE477A5E4777245/Meteor/OrthancMirror/build$ curl http://localhost:8042/studies [    "9b5629ef-c28c48db-b3593009-35fda9cb-7a0bb799",    "abae0b24-5a718d9e-1b560140-2cda3ae0-30b846cb" ] bird@bird-Lenovo-ideapad-310-15IKB:/media/bird/2AE477A5E4777245/Meteor/OrthancMirror/build$  curl http://localhost:8042/series [    "993a521c-1b11574c-92e1c71d-a048784c-36866be0",    "5f19601c-3e5fa872-e566e9f2-36aa3b31-dc719c3e" ] bird@bird-Lenovo-ideapad-310-15IKB:/med...

COnfigure Orthanc

cmake -DSTATIC_BUILD:BOOL=ON -DCMAKE_BUILD_TYPE=Debug cmake "-DDCMTK_LIBRARIES=wrap;oflog" -DSTATIC_BUILD=OFF -DDEBIAN_USE_GTEST_SOURCE_PACKAGE:BOOL=ON -DCMAKE_BUILD_TYPE=Debug SRC https://bitbucket.org/sjodogne/orthanc/src/default/LinuxCompilation.txt?fileviewer=file-view-default # How to compile, install and run newest version of Orthanc DICOM server # from Github source in Ubuntu 16.04 LTS cd sudo apt-get update sudo apt-get install build-essential unzip cmake mercurial uuid-dev libcurl4-openssl-dev liblua5.1-0-dev libgtest-dev libpng-dev libsqlite3-dev libssl-dev libjpeg-dev zlib1g-dev libdcmtk2-dev libboost-all-dev libwrap0-dev libcharls-dev libjsoncpp-dev libpugixml-dev doxygen qupzilla sudo rm -rf Orthanc* sudo apt-get purge orthanc git clone https://github.com/jodogne/OrthancMirror.git mkdir ~/OrthancBuild cd ~/OrthancBuild/ cmake -DSTATIC_BUILD=ON -DCMAKE_BUILD_TYPE=Release ~/OrthancMirror/ sudo make sudo make doc ./Orthanc --version ./Orthanc & qupzill...