Format TableViewColumn item text
-
Is there a way to format the text of TableViewColumn bind to a role. I know this can be done by using itemDelegate. Is there are some other way something like this
@ TableView{
model: myObject.getModel();
TableViewColumn{
title: "Customer Name"
role: "customerID"
text: myObject.GetCustomerNameByID(customerID)
}
}@