Anpassung Style Positions Tabelle

This commit is contained in:
Ralph Soika 2024-02-06 14:36:57 +01:00
parent 19e334616b
commit 0b826b6880

View file

@ -6,17 +6,17 @@
<h:panelGroup layout="block" styleClass="imixs-form-section" id="oderlist" binding="#{orderlistContainer}">
<f:ajax render="oderlist" onevent="updateOrderItems">
<table class="imixsdatatable imixs-orderitems">
<table class="imixsdatatable imixs-orderitems" style="z-index: 2; position: relative;">
<tr>
<th style="">#</th>
<th style="">#{custom['pos.number']}<span class="imixs-required">
<th style="min-width: 150px;">#{custom['pos.number']}<span class="imixs-required">
*</span></th>
<th style="width: 100px;">#{custom['pos.tax']}<span class="imixs-required">
<th style="min-width: 100px;">#{custom['pos.tax']}<span class="imixs-required">
*</span></th>
<th style="width: 100px;">#{custom['pos.type']}<span class="imixs-required"> *</span></th>
<th style="width: 80px;">BP</th>
<th style="width: 150px; text-align: right;">#{custom['pos.net']}</th>
<th style="width: 150px; text-align: right;">#{custom['pos.gross']}</th>
<th style="min-width: 150px;">#{custom['pos.type']}<span class="imixs-required"> *</span></th>
<th style="min-width: 80px;">BP</th>
<th style="min-width: 150px; text-align: right;">#{custom['pos.net']}</th>
<th style="min-width: 150px; text-align: right;">#{custom['pos.gross']}</th>
<th style="">
<!-- delete -->
</th>
@ -32,13 +32,14 @@
<!-- Name -->
<td>
<h:inputText value="#{orderitem.item['name']}" styleClass="pos_nameinput"
style="width:100%;text-transform: uppercase" />
style="width: 100%; min-width: 150px;text-transform: uppercase" />
</td>
<!-- Steuer -->
<td>
<h:selectOneMenu value="#{orderitem.item['tax']}" a:data-id="orderitem_tax">
<h:selectOneMenu value="#{orderitem.item['tax']}" a:data-id="orderitem_tax"
style="box-sizing: border-box; max-width: 150px;">
<f:selectItem itemLabel="" itemValue="" />
<f:selectItems value="#{aglConfigController.getSelectItems('invoice.tax')}" />
@ -56,7 +57,8 @@
<!-- Leistungsart -->
<td>
<h:selectOneMenu value="#{orderitem.item['category']}" a:data-id="orderitem_category">
<h:selectOneMenu value="#{orderitem.item['category']}" a:data-id="orderitem_category"
style="box-sizing: border-box; max-width: 150px;">
<f:selectItem itemLabel="" itemValue="" />
<f:selectItems value="#{aglConfigController.getSelectItems('invoice.type')}" />
<!--