DaltonPimmel / flexigrid

Automatically exported from code.google.com/p/flexigrid
0 stars 0 forks source link

<div> element width of each cell does not resize with the cell width #156

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Create flexigrid and specify each column size
2. Have each flexigrid cell get larger/smaller on based on window resize, 
something like:
    $(window).resize(function(){
        table_size_format($("#table_name"));
    });
Where table_size_format adjusts the width of each cell dependent on the window 
size.

What is the expected output? What do you see instead?
When each cell changes size, the td element width changes, but not the div 
inside each td. Therefore, say there is a dropdown in one of the cells and the 
cell got larger due to window resize, the dropdown div in the cell is still the 
original size and way too small.

What version of the product are you using? On what operating system?
latest version, using jquery-2.1.0

Please provide any additional information below.

Original issue reported on code.google.com by aliL1...@gmail.com on 8 Aug 2014 at 1:35