I have something like below where dynamic form has cellborder defined. Is there any way to modify to look and feel of the border?
Code:
isc.DynamicForm.create({ ID: "exampleForm",baseStyle:"myHighGridCell", width: 250,cellBorder:5, fields: [ {name: "username", title: "Username", type: "text", required: true, defaultValue: "bob" }, {name: "email", title: "Email", required: true, type: "text", defaultValue: "bob@isomorphic.com" }, {name: "password", title: "Password", required: true, type: "password" }, {name: "password2", required: true, title: "Password again", type: "password" } ] });
Comment