Is there a way to control the vertical alignment of fields in grid layouts? In the example below, one of the columns have its title wrapping but it pushes down the textfield and is no longer aligned with the other fields. Is there a way to force the dynamic form to align using the bottom of the fields instead of the top of the titles or whatever it is currently using for alignment?
Code:
isc.DynamicForm.create({ ID: "DF", titleOrientation: "top", numCols: 4, fields: [ {name: "username", title: "Username", type: "text", width: 124 }, {name: "Mother's Maiden Name", title: "Mother's Maiden Name", required: true, width: 124, type: "text"}, {name: "password", title: "Password", type: "password", width: 124 }, {name: "password2", title: "Password again", type: "password", width: 124 } ] });
Comment