Currently there is a problem with using showTitle set to false. What ends up happening is the title starts to push up. We've managed to get around this so far by setting title to   instead of setting showTitle to false but when we have cases where there is one form item per row, there is a gap between the first and the second. Is there any way around this?
showTitle as false:
showTitle as true, title= :
showTitle as false:
Code:
isc.DynamicForm.create({ width: 400,numCols:4,titleOrientation: "top", fields: [ { name: "firstName", title: "First name", type: "text",showTitle: false}, { name: "lastName", title: "Last name", type: "text"} ] });
showTitle as true, title= :
Code:
isc.DynamicForm.create({ width: 400,numCols:1,titleOrientation: "top",titleSuffix: "", fields: [ { name: "lastName", title: "Last name", type: "text"}, { name: "firstName", title: " ", type: "text"} ] });
Comment