Subject: RE: Notes combobox type field does not show the value when acceessing by java script
Thank you sir.
But if i populate the value in the combobox using DBLookup or DBColumn, that time how I can give the alaises. Please if you have any idea or logic. I am very thankful to you
Subject: RE: Notes combobox type field does not show the value when acceessing by java script
The select element created from your ComboBox has an Options property. Each Option object has properties like text or selected (or value, if present), so there’s no need to deal with values.
If you still want to use values for whatever reason, have your @Db formula return strings formatted like you would enter them into the Choices box:
“Text | Value”
The pipe works as the alias delimiter just as if you entered it manually.