SC8.0
We are trying to get the buttons and the text all on a single line. Basically to act similarly to how the navigation buttons work on the Calendar component.
However, the below code seems unable to do that. Is there an constraint that buttons and blurbs cannot be on the same line as other items? If so, any alternatives?
We are trying to get the buttons and the text all on a single line. Basically to act similarly to how the navigation buttons work on the Calendar component.
However, the below code seems unable to do that. Is there an constraint that buttons and blurbs cannot be on the same line as other items? If so, any alternatives?
Code:
isc.DynamicForm.create({ ID: "boundForm", numCols: 8, fields: [ {name: "back", type: "button"} ,{name: "range", type: "blurb", defaultValue: "hello"} ,{name: "range2", type: "blurb", defaultValue: "hello2"} ,{name: "forward", type: "button"} ] });
Comment