File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -201,7 +201,7 @@ javaxt.dhtml.Button = function(parent, config) {
201
201
202
202
//Create outer div used to hold the button, mask, and menu
203
203
var outerDiv = createElement ( 'div' , parent ) ;
204
- outerDiv . setAttribute ( "desc" , me . className ) ;
204
+ outerDiv . className = "javaxt-button" ;
205
205
outerDiv . style . display = config . display ;
206
206
if ( config . width ) {
207
207
if ( typeof config . width === "string" ) {
Original file line number Diff line number Diff line change @@ -200,7 +200,7 @@ javaxt.dhtml.Form = function (parent, config) {
200
200
margin : 0 ,
201
201
height : "100%"
202
202
} ) ;
203
- form . setAttribute ( "desc" , me . className ) ;
203
+ form . className = "javaxt-form" ;
204
204
if ( config . onsubmit ) form . onsubmit = config . onsubmit ;
205
205
else {
206
206
form . onsubmit = function ( e ) {
@@ -1116,7 +1116,7 @@ javaxt.dhtml.Form = function (parent, config) {
1116
1116
}
1117
1117
}
1118
1118
input . onChange = function ( ) {
1119
- me . onChange ( formInput , input . getValue ( ) ) ;
1119
+ me . onChange ( formInput , formInput . getValue ( ) ) ;
1120
1120
} ;
1121
1121
}
1122
1122
}
You can’t perform that action at this time.
0 commit comments