,<%=col%>) style='CURSOR: hand' width='15' height='15'/>
,<%=col%>) style='CURSOR: hand; display:none;' width='15' height='15'/>
|
<%
}
else
{
display="style=' display:none '";
%>
,<%=col%>) style='CURSOR: hand;display:none;' width='15' height='15'/>
,<%=col%>) style='CURSOR: hand;' width='15' height='15'/>
|
<%
}
%>
value="<%=serialNo %>" id="SerialNoR<%=row%>C<%=col%>"/>
value="<%=colName %>" id="ColNameR<%=row%>C<%=col%>"/>
value="<%=colType %>" id="ColTypeR<%=row%>C<%=col%>"/>
value="<%=colSource %>" id="ColSourceR<%=row%>C<%=col%>"/>
|
|
<%
if(colSource!=null && !colSource.equals(""))
{
StringBuffer sb = new StringBuffer();
sb.append("");
if(colSource.toUpperCase().startsWith("CODE:"))
{
items = com.amarsoft.dict.als.cache.CodeCache.getItems(colSource.substring(5));
for(com.amarsoft.dict.als.object.Item item:items)
{
if(item.getItemNo().equals(valueList))
sb.append("");
else
sb.append("");
}
}
else
{
ASResultSet rsTemp = Sqlca.getASResultSet(colSource.substring(4));
while(rsTemp.next())
{
if(rsTemp.getString(1).equals(valueList))
sb.append("");
else
sb.append("");
}
rsTemp.close();
}
%>
value="<%=valueList %>" style="display:none" onchange=ChangeValue(<%=row%>,<%=col%>)>
<%
}else
{
%>
value="<%=valueList %>" <%=inputareaStyle%> id="ValueListBR<%=row%>C<%=col%>" onchange=ChangeValue(<%=row%>,<%=col%>)>
<%
}
%>
,<%=col%>) style="<%=textareaStyle%>" type=button value='...'>
|