fix issue #138: Css issue with 'width'

Removed bootstrap2 theme from datatable since it was adding another
bootstrap.css
This commit is contained in:
Lucas Siqueira 2016-04-02 00:22:42 -03:00
parent 482eeb1c21
commit 062ee63dec
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@
<jsp:include page="../fragments/bodyHeader.jsp"/> <jsp:include page="../fragments/bodyHeader.jsp"/>
<h2>Owners</h2> <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"> cssClass="table table-striped" pageable="false" info="false" export="pdf">
<datatables:column title="Name" cssStyle="width: 150px;" display="html"> <datatables:column title="Name" cssStyle="width: 150px;" display="html">
<spring:url value="/owners/{ownerId}.html" var="ownerUrl"> <spring:url value="/owners/{ownerId}.html" var="ownerUrl">

View file

@ -17,7 +17,7 @@
<h2>Veterinarians</h2> <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"> pageable="false" info="false">
<datatables:column title="Name"> <datatables:column title="Name">
<c:out value="${vet.firstName} ${vet.lastName}"></c:out> <c:out value="${vet.firstName} ${vet.lastName}"></c:out>