mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 21:15:50 +00:00
fix issue #138: Css issue with 'width'
Removed bootstrap2 theme from datatable since it was adding another bootstrap.css
This commit is contained in:
parent
482eeb1c21
commit
062ee63dec
2 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
|||
<jsp:include page="../fragments/bodyHeader.jsp"/>
|
||||
<h2>Owners</h2>
|
||||
|
||||
<datatables:table id="owners" data="${selections}" row="owner" theme="bootstrap2"
|
||||
<datatables:table id="owners" data="${selections}" row="owner"
|
||||
cssClass="table table-striped" pageable="false" info="false" export="pdf">
|
||||
<datatables:column title="Name" cssStyle="width: 150px;" display="html">
|
||||
<spring:url value="/owners/{ownerId}.html" var="ownerUrl">
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
<h2>Veterinarians</h2>
|
||||
|
||||
<datatables:table id="vets" data="${vets.vetList}" row="vet" theme="bootstrap2" cssClass="table table-striped"
|
||||
<datatables:table id="vets" data="${vets.vetList}" row="vet" cssClass="table table-striped"
|
||||
pageable="false" info="false">
|
||||
<datatables:column title="Name">
|
||||
<c:out value="${vet.firstName} ${vet.lastName}"></c:out>
|
||||
|
|
Loading…
Reference in a new issue