facebookarchive / fixed-data-table

A React table component designed to allow presenting thousands of rows of data.
http://facebook.github.io/fixed-data-table/
Other
4.3k stars 553 forks source link

<input/> is not rendered correct inside a cell #398

Open chungwong opened 8 years ago

chungwong commented 8 years ago

simply by adding

        <Column    
          cell={props => (     
            <Cell {...props}>  
                <input type="text" />           
            </Cell>            
          )}
          width={150}          
        />

into say, above https://github.com/facebook/fixed-data-table/blob/v0.6.0/examples/SortExample.js#L142

and then input any text in the nth input, scroll down then there is a copy of the input at n+15th row.