Jump to content

Why modal and form validation class doesn't work in PS 1.6


Andréas

Recommended Posts

Hi,

 

I've been struggle to understand why the class "has-error", "has-warning" and "has-success" doesn't work on form in PS 1.6 but don't understand why...

 

Class are well defined in global.css, the doc mention them, but it doesn't work on a fresh PS 1.6.14 install.

 

Have a try :

<div class="form-group has-warning">

  <label class="control-label" for="input1">Label with warning</label>
  <input type="text" class="form-control" id="input1">
  <span class="glyphicon glyphicon-warning-sign form-control-feedback"></span>
</div>

Also, modal seems to be disable somehow. When I create a bootstrap modal, it doesn't appears as a modal but just append bellow the div that shows it...

 

Have a try (from bootstrap website) :

<!-- Button trigger modal -->
<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
  Launch demo modal
</button>

<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
        <h4 class="modal-title" id="myModalLabel">Modal title</h4>
      </div>
      <div class="modal-body">
        ...
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div>
  </div>
</div>

Hope someone has an answer.

 

Thanks,

Andréas

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...