[phpwebapp-commits] CVS: web_app/webobjects/listbox listbox.txt,1.4,1.5 listbox.html,1.3,1.4
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2004-07-15 14:46:12
|
Update of /cvsroot/phpwebapp/web_app/webobjects/listbox In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16073/webobjects/listbox Modified Files: listbox.txt listbox.html Log Message: Index: listbox.txt =================================================================== RCS file: /cvsroot/phpwebapp/web_app/webobjects/listbox/listbox.txt,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** listbox.txt 24 Sep 2003 14:12:30 -0000 1.4 --- listbox.txt 15 Jul 2004 14:46:03 -0000 1.5 *************** *** 43,47 **** This WebClass uses a <select> tag like this: ! <select name="{{obj_name}}" onchange="{{onchange}}"> . . . . . </select> --- 43,47 ---- This WebClass uses a <select> tag like this: ! <select name="{{obj_name}}" id="{{obj_name}}" onchange="{{onchange}}"> . . . . . </select> Index: listbox.html =================================================================== RCS file: /cvsroot/phpwebapp/web_app/webobjects/listbox/listbox.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** listbox.html 20 Jan 2004 07:33:24 -0000 1.3 --- listbox.html 15 Jul 2004 14:46:03 -0000 1.4 *************** *** 5,9 **** <Parameter name="width" default="" /> ! <select name="{{obj_name}}" onchange="{{onchange}}"> <Repeat rs="{{rs}}"> <Var name="selected">('{{id}}'=='{{value}}' ? "selected" : "")</Var> --- 5,9 ---- <Parameter name="width" default="" /> ! <select name="{{obj_name}}" id="{{obj_name}}" onchange="{{onchange}}"> <Repeat rs="{{rs}}"> <Var name="selected">('{{id}}'=='{{value}}' ? "selected" : "")</Var> |