mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 15:14:58 +00:00
use chosen select for custom attributes
This commit is contained in:
parent
a7b00ae22a
commit
e21e301ea3
|
@ -3,6 +3,7 @@
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
- conversion from pdf to png replaces alpha channel with white
|
- conversion from pdf to png replaces alpha channel with white
|
||||||
- add list of conversion services in debug menu of admin tool
|
- add list of conversion services in debug menu of admin tool
|
||||||
|
- use chosen select for custom attributes
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
Changes in version 5.1.29
|
Changes in version 5.1.29
|
||||||
|
|
|
@ -1994,7 +1994,7 @@ $(document).ready(function() {
|
||||||
default:
|
default:
|
||||||
if($valueset = $attrdef->getValueSetAsArray()) {
|
if($valueset = $attrdef->getValueSetAsArray()) {
|
||||||
$content .= "<input type=\"hidden\" name=\"".$fieldname."[".$attrdef->getId()."]\" value=\"\"/>";
|
$content .= "<input type=\"hidden\" name=\"".$fieldname."[".$attrdef->getId()."]\" value=\"\"/>";
|
||||||
$content .= "<select class=\"form-control\" id=\"".$fieldname."_".$attrdef->getId()."\" name=\"".$fieldname."[".$attrdef->getId()."]";
|
$content .= "<select id=\"".$fieldname."_".$attrdef->getId()."\" name=\"".$fieldname."[".$attrdef->getId()."]";
|
||||||
if($attrdef->getMultipleValues() || $alwaysmultiple) {
|
if($attrdef->getMultipleValues() || $alwaysmultiple) {
|
||||||
$content .= "[]\" multiple";
|
$content .= "[]\" multiple";
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user