pike
01/17/2018, 7:18 AMabhinay
01/17/2018, 7:26 AMIntegerProperty
for Integer
, StringProperty
for String
and so on. You can create getters for these properties which will return just the plain Java type:
private StringProperty name = new SimpleStringProperty();
public String getName() {
return name.get();
}
abhinay
01/17/2018, 7:28 AMcustom getter
?plebian
01/17/2018, 7:29 AMplebian
01/17/2018, 7:30 AMpike
01/17/2018, 7:32 AMpike
01/17/2018, 7:32 AMpike
01/17/2018, 7:33 AMendDate.valueProperty().onChange { value ->
val dateVal = LocalDate.parse(model.endDate.value, ymdhmsFormat).format(mdyFormat)
if(value?.format(mdyFormat) != dateVal && value!!.isAfter(startDate.value)) {
filterSalesData()
}
}
pike
01/17/2018, 7:33 AMplebian
01/17/2018, 7:33 AMplebian
01/17/2018, 7:34 AMplebian
01/17/2018, 7:35 AMpike
01/17/2018, 7:36 AMpike
01/17/2018, 7:37 AMpike
01/17/2018, 7:38 AMplebian
01/17/2018, 7:40 AMpike
01/17/2018, 7:40 AMplebian
01/17/2018, 7:40 AMpike
01/17/2018, 7:41 AMplebian
01/17/2018, 7:42 AMron
01/17/2018, 7:43 AMplebian
01/17/2018, 7:43 AMpike
01/17/2018, 7:45 AMpike
01/17/2018, 7:46 AMpike
01/17/2018, 7:48 AMIsaac
01/17/2018, 10:22 AMron
01/17/2018, 10:23 AMtextfield(model.id)
is enoughIsaac
01/17/2018, 10:24 AMIsaac
01/17/2018, 10:24 AM