Format TableViewColumn item text
QML and Qt Quick
3
Posts
2
Posters
945
Views
1
Watching
-
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)
}
}@