Skip to content

Commit

Permalink
update to work with forms
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardosilva committed May 10, 2024
1 parent 83844b6 commit 6fdb194
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Custom/DynamicFieldRemoteDB.sopm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<otrs_package version="1.0">
<Name>DynamicFieldRemoteDB</Name>
<Version>6.1.2</Version>
<Version>6.1.3</Version>
<Framework>6.x.x</Framework>
<Vendor>Ligero</Vendor>
<URL>http://www.perl-services.de</URL>
Expand Down
4 changes: 2 additions & 2 deletions Kernel/System/DynamicField/Driver/RemoteDB.pm
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ sub EditFieldRender {
my $TranslateRemoveSelection = $Param{LayoutObject}->{LanguageObject}->Translate("Remove selection");

my $HTMLString = <<"END";
<input id="$FieldName" type="text" style="display:none;" />
<input id="$FieldName" class="$FieldClass" type="text" style="display:none;" />
<div class="InputField_Container W50pc">
<select id="$AutoCompleteFieldName" class="InputField_InputContainer" style="display:block; margin-bottom:2px; width: 100%"></select>
<span id="AJAXLoader$AutoCompleteFieldName" class="AJAXLoader" style="display: none;"></span>
Expand Down Expand Up @@ -491,7 +491,7 @@ END
}

$HTMLString .= <<"END";
<input id="$ValidateFieldName" type="text" class="$FieldClass" value="$ValidValue" style="display:none;" />
<input id="$ValidateFieldName" type="text" value="$ValidValue" style="display:none;" />
<div class="Clear"></div>
</div>
END
Expand Down

0 comments on commit 6fdb194

Please sign in to comment.