forked from tohe/wmdeit_kaform
Changed description input filed text to textarea
This commit is contained in:
parent
e69105fdd7
commit
fb72d4e8a5
|
@ -155,7 +155,8 @@ function getUploadField(rid)
|
|||
return uf;
|
||||
}
|
||||
|
||||
|
||||
// old input field
|
||||
//+ `<input class="tab_input" name="desc[${rid}]" type="text" placeholder="` + expenses_table_description_placeholder + `"/>`
|
||||
|
||||
function getRow(rid,num) {
|
||||
var cur = document.getElementById("currency").value;
|
||||
|
@ -167,7 +168,7 @@ function getRow(rid,num) {
|
|||
+ `<input class="tab_input" name="date[${rid}]" value="" type="date" placeholder="Datum*"/>`
|
||||
+ "</td>"
|
||||
+ "<td data-label=\"Beschr.\">"
|
||||
+ `<input class="tab_input" name="desc[${rid}]" type="text" placeholder="` + expenses_table_description_placeholder + `"/>`
|
||||
+ `<textarea class="tab_input" name="desc[${rid}]" >` + `</textarea>`
|
||||
+ "</td>"
|
||||
+ "<td data-label=\"Betrag\">"
|
||||
+ `<input class="tab_input" name="amount[${rid}] type="text" placeholder="0.00"/>`
|
||||
|
|
Loading…
Reference in New Issue