SC Version: 04-23 8.2p build
Run the sample. I have two dates, the first one having end date of 1/1/2025, and the other 1/1/2019 . Whatever the first date setting is, that is what's used in ALL the date pickers in the page. I want to be able to set this property per element.
Run the sample. I have two dates, the first one having end date of 1/1/2025, and the other 1/1/2019 . Whatever the first date setting is, that is what's used in ALL the date pickers in the page. I want to be able to set this property per element.
Code:
isc.DynamicForm.create({ ID: "dateForm", numCols: 4, width: 600, fields: [ {name:"directInputDate", title:"Direct Input Date", type:"date", useTextField:true, change:"dateLabel.setContents(value)", endDate:"1/1/2025"}, {name:"directInputDate2", title:"Direct Input Date", type:"date", useTextField:true, change:"dateLabel.setContents(value)", endDate:"1/1/2019"} ] });
Comment