- 
    
Bug
 - 
    Resolution: Unresolved
 - 
    
P2: Important
 - 
    None
 - 
    5.15.2
 - 
    None
 
TableView is not working in touch PC(Linux os)
This issue was identified as a problem with import QtQuick.Control 1.4 and import QtQuick.Control 2.15.
So I want to remove TableViewColumn and change it to TableModelColumn.
There is one problem here. I used the code this way before, but I don't know how to change it to TableModelColumn.
Component {
    id: columnComponent
    TableViewColumn{
        resizable :true
    }
}
function addTableColumn(title,role,width)  {
     var column = tableView.addColumn(columnComponent);
     column.title = title;
     column.role = role;
     column.width = width;
}