Having a problem with a combobox - I know there is a 64k limit but where exactly is that limit? What should I do differently to get around this?
Here is my scenario:
Combobox doing a lookup to an external database view with 182 documents - the column in the comboxbox has CompanyName + City + State - would something like this exceed 64k?
I am not getting an error using the combobox - it is just empty.
Here is the code for the combobox: (External database is on same server, selection will be bound to the same database)
<xp:comboBox id="comboBox1" value="#{docOrder.ADFirm}">
<xp:selectItems>
<xp:this.value><![CDATA[#{javascript:var db = new Array(@Name("[CN]",@Subset(@DbName(),1)), "Folder\Folder2\DATABASE.NSF");
@DbColumn(db,"(ADLookup)",3);}]]></xp:this.value>
</xp:selectItems>
</xp:comboBox>
Thoughts?
Thanks,
Kendra