Notifications

  • Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia.
  • It is a paradisematic country,in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. Find out more.
  • It is a paradisematic country,in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. Find out more.
  • You have One New Pending Invitation: Carillion AMBS Limited.
  • You have One New Pending Invitation: Amey Group Services Ltd.
  • You have One New Pending Invitation: Amey Group Services Ltd.

Date

Single Date

Single date controls comprise of a surround and 4 styles, toggled by optional attributes and classes. The attribute should be added to the <input> tag, and classes should follow on from the surrounding <div>.

Style Attribute Value Standard Example Inline Example
Standard
Disabled class

disabled
disabled

disabled
Invalid class invalid
Read Only class

readonly
readonly

readonly

Code:


      <div class="form-group date">
        <label class="control-label" for="<!-- Start input control ID goes here -->"><!-- Start label text goes here -->:</label>
        <div class="control-input">
          <input type="text" class="form-control date" id="<!-- Start input control ID goes here -->" name="inline_date_field1c" placeholder="Enter date" value="">
          <span class="add-on"><span class="glyphicon glyphicon-calendar-icon"></span></span>
        </div>
      </div>
      

The date value is required to be in dd/mm/yyyy format to be correctly recognised.

There is a hidden input that takes a list of comma separated dd/mm/yyyy values which marks the date as unavailable.

Date Range

Date range controls comprise of a surround and 4 styles, toggled by optional attributes and classes. The attribute should be added to both of the <input> tags, and classes should follow on from the surrounding <div>.

Style Attribute Value Standard Example Inline Example
Standard
Disabled class

disabled
disabled

disabled
Invalid class invalid
Read Only class

readonly
readonly

readonly

Code:


      <div class="form-group date-range">
        <label for="<!-- Start input control ID goes here -->" class="control-label"><!-- Start label text goes here -->:</label>
        <div class="control-input">
          <input type="text" class="form-control date-range-start" id="<!-- Start input control ID goes here -->" name="<!-- Start input control name goes here -->" placeholder="Enter start date" value="<!-- Start input control value goes here -->">
          <span class="add-on">
            <span class="glyphicon glyphicon-calendar-icon"></span>
          </span>
        </div>
        <div class="form-control-spacer"></div>
        <label for="<!-- End input control ID goes here -->" class="control-label"><!-- End label text goes here -->:</label>
        <div class="control-input">
          <input type="text" class="form-control date-range-end" id="<!-- End input control ID goes here -->" name="<!-- End input control name goes here -->" placeholder="Enter end date" value="<!-- End input control value goes here -->">
          <span class="add-on">
            <span class="glyphicon glyphicon-calendar-icon"></span>
          </span>
          <input type="hidden" class="dates-disabled" value="<!-- Input control excluded values go here -->"/>
        </div>
      </div>
      

The date value is required to be in dd/mm/yyyy format to be correctly recognized.

There is a hidden input that takes a list of comma separated dd/mm/yyyy values which marks the date as unavailable.