I want slickgrid to autosize the columns based on the widest content or header text - whichever is wider. In simpler terms, I want it to simulate the default behavior of regular HTML tables when it comes to column sizing. How can I do it in slickgrid?
相关问题
- Getting data from cells in SlickGrid
- slickgrids with columns from dynamic json data
- How to consume data created with jQuery AJAX in Sl
- GroupBox.AutoSize and GroupBox.Text wrapping
- Slickgrid Treeview Search
相关文章
- Dynamic ellipsis support for Android autosizing Te
- slickgrid select rows while filter is on forgets p
- javafx.scene.control.TableColumn cannot be cast to
- Create a framework type column header for select a
- Writing custom formatters for slick grid
- Disabling specific cell edit in Slick grid
- How can I integrate SlickGrid with Meteor.js react
- Automatically adjust Jtable Column to fit content
When constructing your options, you can use
forceFitColumns: true
This will make the columns fill the entire width of your grid div.
The OP is looking for columns to grow to match their content.
grid.autosizeColumns()
grows the cells to fit the parent container, which is not the same thing.I have added this feature, and it is about as manual as you might imagine. You loop through the displayed cells and measure each one, saving the widest cell and using that width to set the width of your column. SlickGrid gives you good access to the cells in the viewport, so that works nicely.
The measurement algorithm is your big decision. You may put the content off screen and measure it, as @jay suggests. This works, but it is the slowest method, as it requires a repaint to insert, and a repaint when you remove. There may be ways to optimize. The solution I went with is to measure the width of every letter in the alphabet, as well as other typographic characters we come across, and sum them to generate a width. Yes, this sounds absurd. It has many constraints: The font size must be the same, it doesn't support images, there can't be any line returns, and more. If you can live with the constraints though, you can calculate sizes for a huge grid viewport in
<5ms
, because the character widths are only measured once.After you get the sizes of the columns, you assign them to your columns using
grid.setColumns()
.You should be able to call the
autosizeColumns()
method of the grid object.Make this simple adjustment to Naresh's https://github.com/naresh-n/slickgrid-column-data-autosize, on the
init
function:$container.ready(resizeAllColumns);
to the init function.This ensures the columns autoresize on initial load
Insert the text into an off-screen element and retrieve the width of the element. This is what excanvas does to measure text. Use this to set the width of the column since it's expecting a pixel value.
I added this after the grid is drawn and it works fine.