We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
0.17.2
https://visactor.io/vtable/demo/basic-functionality/width-mode-adaptive
https://visactor.io/vtable/demo/basic-functionality/width-mode-adaptive let tableInstance; fetch('https://lf9-dp-fe-cms-tos.byteorg.com/obj/bit-cloud/VTable/North_American_Superstore_data.json') .then((res) => res.json()) .then((data) => {
const columns =[ { "field": "Order ID", "title": "Order ID", "width": "auto" }, { "field": "Customer ID", "title": "Customer ID", "width": "auto" }, { "field": "Product Name", "title": "Product Name", "width": "auto" }, { "field": "Category", "title": "Category", "width": "auto" }, { "field": "Sub-Category", "title": "Sub-Category", "width": "auto" }, { "field": "Region", "title": "Region", "width": "auto" }, { "field": "City", "title": "City", "width": "auto" }, { "field": "Order Date", "title": "Order Date", "width": "auto" }, { "field": "Quantity", "title": "Quantity", "width": "auto" }, { "field": "Sales", "title": "Sales", "width": "auto" }, { "field": "Profit", "title": "Profit", "width": "auto" } ];
const option = { records:data, columns, widthMode: 'adaptive' }; setInterval(()=>{ tableInstance.setRecords(data) },1000) tableInstance = new VTable.ListTable(document.getElementById(CONTAINER_ID),option); window['tableInstance'] = tableInstance; })
widthMode: 'adaptive'在连续setRecords时拖动列宽计算错误
widthMode: 'adaptive'在连续setRecords时拖动列宽计算正确
- OS: - Browser: - Framework:
No response
The text was updated successfully, but these errors were encountered:
连续setRecords时拖动列宽 这个交互过程是什么样子的呀
Sorry, something went wrong.
fix: setRecords recomputeColWidth problems #796
35155fe
fangsmile
Successfully merging a pull request may close this issue.
Version
0.17.2
Link to Minimal Reproduction
https://visactor.io/vtable/demo/basic-functionality/width-mode-adaptive
Steps to Reproduce
https://visactor.io/vtable/demo/basic-functionality/width-mode-adaptive
let tableInstance;
fetch('https://lf9-dp-fe-cms-tos.byteorg.com/obj/bit-cloud/VTable/North_American_Superstore_data.json')
.then((res) => res.json())
.then((data) => {
const columns =[
{
"field": "Order ID",
"title": "Order ID",
"width": "auto"
},
{
"field": "Customer ID",
"title": "Customer ID",
"width": "auto"
},
{
"field": "Product Name",
"title": "Product Name",
"width": "auto"
},
{
"field": "Category",
"title": "Category",
"width": "auto"
},
{
"field": "Sub-Category",
"title": "Sub-Category",
"width": "auto"
},
{
"field": "Region",
"title": "Region",
"width": "auto"
},
{
"field": "City",
"title": "City",
"width": "auto"
},
{
"field": "Order Date",
"title": "Order Date",
"width": "auto"
},
{
"field": "Quantity",
"title": "Quantity",
"width": "auto"
},
{
"field": "Sales",
"title": "Sales",
"width": "auto"
},
{
"field": "Profit",
"title": "Profit",
"width": "auto"
}
];
const option = {
records:data,
columns,
widthMode: 'adaptive'
};
setInterval(()=>{
tableInstance.setRecords(data)
},1000)
tableInstance = new VTable.ListTable(document.getElementById(CONTAINER_ID),option);
window['tableInstance'] = tableInstance;
})
Current Behavior
widthMode: 'adaptive'在连续setRecords时拖动列宽计算错误
Expected Behavior
widthMode: 'adaptive'在连续setRecords时拖动列宽计算正确
Environment
Any additional comments?
No response
The text was updated successfully, but these errors were encountered: