I am trying to get wrapTitle working and it only seems to work if I give a smaller width to the overall form and does not seem to take into account the column widths specified. I don't know if this is proper behaviour as the documentation does not mention anything about it, but it seems odd to me that wrapping of the title would not be affected by column widths
Code:
isc.DynamicForm.create({ ID: "exampleForm",wrapItemTitles: true, titleOrientation: "top",colWidths:[200,200,200,200], width: 880, fields: [ {name: "username", title: "Definitive Latest Ready for Service Activation/Deactivation Date", 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