Skip to content

Commit

Permalink
FIX attibuto style ricerca libera
Browse files Browse the repository at this point in the history
  • Loading branch information
mspasiano committed Sep 20, 2018
1 parent 20b7f5c commit 6ac9614
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions sigla-web/src/main/webapp/util/form_ricerca_libera.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,31 @@
CondizioneSempliceBulk condizione = (CondizioneSempliceBulk)condizioneRicerca;
%>
<td><% condizione.writeFormInput(bp.getParent(), out,"default","findFieldProperty",false,bp.getParentRoot().isBootstrap() ? "form-control" : null,"onchange=\"submitForm('doImpostaAttributo')\"",null,FormController.EDIT,bp.getFieldValidationMap(), bp.getParentRoot().isBootstrap());%></td>
<td><% condizione.writeFormInput(out,"default","operator",condizione.getFindFieldProperty() == null,bp.getParentRoot().isBootstrap() ? "form-control" : null,"onchange=\"submitForm('doImpostaAttributo')\"",null,FormController.EDIT,bp.getFieldValidationMap(), bp.getParentRoot().isBootstrap());%></td>
<td><% condizione.writeFormInput(out,
"default",
"operator",
condizione.getFindFieldProperty() == null,
bp.getParentRoot().isBootstrap() ? "form-control" : null,
"onchange=\"submitForm('doImpostaAttributo')\"",
null,
FormController.EDIT,
bp.getFieldValidationMap(),
bp.getParentRoot().isBootstrap());
%>
</td>
<td><% if (condizione.getOperator() != null && condizione.getOperator().intValue() != it.cnr.jada.persistency.sql.SQLBuilder.ISNULL && condizione.getOperator().intValue() != it.cnr.jada.persistency.sql.SQLBuilder.ISNOTNULL)
condizione.getFindFieldProperty().writeInput(out,condizione.getPrototype(),condizione.getValue(),false,null,null,null,FormController.FREESEARCH,bp.getFieldValidationMap(), bp.getParentRoot().isBootstrap());%></td>
condizione.getFindFieldProperty().writeInput(out,
condizione.getPrototype(),
condizione.getValue(),
false,
bp.getParentRoot().isBootstrap() ? "form-control" : null,
null,
null,
FormController.FREESEARCH,
bp.getFieldValidationMap(),
bp.getParentRoot().isBootstrap());
%>
</td>
<% } %>
<% if (!bp.getParentRoot().isBootstrap()) { %>
<td width="100%">&nbsp;</td>
Expand Down

0 comments on commit 6ac9614

Please sign in to comment.