You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
1017 B
16 lines
1017 B
<td align="left"> |
|
<div id="fld_column_id"> |
|
<input onblur="updateSelect(this)" style="display:none" size="10" name="key_rpta_column2layoutcolumn_id" class="schluesselfeld" type="text"> |
|
<db:select id="inp_rpta_column2layoutcolumn_id" styleClass="clsInputStyle" readOnly="false" onChange="updateKeyfield(this)" fieldName="column_id" customEntry=",,true"><% |
|
sql = "select C.tid, coalesce(C.caption,'Unbenannt') || ' (' || coalesce(C.uniquename,'TID: ' || C.tid::varchar) || ') [' || T.caption || ']' from rpta_column C, rpta_column_type T"; |
|
sql +=" where C.column_type=T.tid "; |
|
if(currentRow_rpta_column_layout != null && currentRow_rpta_column_layout.get("resultset_id") != null |
|
&& !currentRow_rpta_column_layout.get("resultset_id").toString().equals("")) |
|
{ |
|
sql +=" and C.resultset_id= "+currentRow_rpta_column_layout.get("resultset_id").toString(); |
|
} |
|
sql +=" order by 2;"; |
|
|
|
%><db:queryData name="rpta_column2layout_rpta_column7" query="<%= sql %>" dbConnectionName="<%= mandantenid %>" /> </db:select> |
|
</div> |
|
</td>
|
|
|