You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Version: 5.4.2
Browser: Chrome
OS: macOS Sierra 10.12.16
Columns not mapped to a real dataIndex are appearing out of order. In the example below, the menu column should be the last column displayed, but instead it is the first column. If the column dataIndex does map the data, the column order is maintained.
QUESTION: Is there some other way to specify the column order besides the order in the array?
columns: [
{
name: "Name",
dateIndex: "name"
},
{
name: "email",
dataIndex: "email"
},
{
name: "Menu",
dataIndex: "menu" <----- no menu in the data
renderer: {
// show a menu icon
}
}
]
Right now the only way to configure the order of columns is to pass them in the order you'd like them displayed. However, that the menu column is being displayed first is a bug -- we should fix this!
Version: 5.4.2
Browser: Chrome
OS: macOS Sierra 10.12.16
Columns not mapped to a real dataIndex are appearing out of order. In the example below, the menu column should be the last column displayed, but instead it is the first column. If the column dataIndex does map the data, the column order is maintained.
QUESTION: Is there some other way to specify the column order besides the order in the array?
The text was updated successfully, but these errors were encountered: