From db3c310cb821347c9db9e1abe12f1741b05ff391 Mon Sep 17 00:00:00 2001 From: mohrt Date: Fri, 4 Mar 2005 19:57:30 +0000 Subject: [PATCH] update html_options example with labels --- .../language-function-html-options.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/en/designers/language-custom-functions/language-function-html-options.xml b/docs/en/designers/language-custom-functions/language-function-html-options.xml index 2aca248b..22c05b39 100644 --- a/docs/en/designers/language-custom-functions/language-function-html-options.xml +++ b/docs/en/designers/language-custom-functions/language-function-html-options.xml @@ -126,10 +126,10 @@ OUTPUT: (both examples) ----------------------- <select name=customer_id> - <option value="1000">Joe Schmoe</option> - <option value="1001" selected="selected">Jack Smith</option> - <option value="1002">Jane Johnson</option> - <option value="1003">Charlie Brown</option> + <option label="Joe Schmoe" value="1000">Joe Schmoe</option> + <option label="Jack Smith" value="1001" selected="selected">Jack Smith</option> + <option label="Jane Johnson" value="1002">Jane Johnson</option> + <option label="Charlie Brown" value="1003">Charlie Brown</option> </select>