Skip to content

Commit

Permalink
Issue #2360: Made CustomerUser dynamic field working.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhaerter committed Jul 20, 2023
1 parent 2457a4f commit a9b6aa4
Show file tree
Hide file tree
Showing 4 changed files with 224 additions and 495 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,16 @@
# along with this program. If not, see <https://www.gnu.org/licenses/>.
# --

[% Data.SelectionHTML %]
[% END %]
<input type="text" class="[% Data.FieldClass | html %]" id="[% Data.FieldID | html %]" title="[% Data.FieldLabel | html %]" name="[% Data.FieldName | html %]" value="[% Data.Value | html %]"[% IF Data.ReadOnly %] readonly[% END %] data-customer-search-type="CustomerUser" />
[% IF Data.Mandatory %]
<div id="[% Data.DivIDMandatory %]" class="TooltipErrorMessage">
<div id="[% Data.DivIDMandatory | html %]" class="TooltipErrorMessage">
<p>
[% Translate(Data.FieldRequiredMessage) | html %]
</p>
</div>
[% END %]
[% IF Data.ServerError %]
<div id="[% Data.DivIDServerError %]" class="TooltipErrorMessage">
<div id="[% Data.DivIDServerError | html %]" class="TooltipErrorMessage">
<p>
[% Translate(Data.ErrorMessage) | html %]
</p>
Expand Down
Loading

0 comments on commit a9b6aa4

Please sign in to comment.