Just curious, why is the select field title styled differently than textfields? It is inconsistent - but I see in firebug they are both using formTitle but I can clearly see that the select field title is bigger and bolded.
Code:
isc.DynamicForm.create({ ID: "exampleForm", width: 250, fields: [ {ID: "username", title: "Username", type: "text", required: true, canEdit:false, defaultValue: "bob" }, {ID: "email", title: "Username", required: true, type: "select" } ] });
Comment