manuelgtz / jquery-datatables-editable

Automatically exported from code.google.com/p/jquery-datatables-editable
0 stars 0 forks source link

Extra Space When Editing #147

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Create an Editable Table with the defaults
2. Have the <TD> tags in the following format
<tr>
    <td>
    </td>
    <td>
    </td>
</tr>
<tr>
    <td>
    </td>
    <td>
    </td>
</tr>
3.

What is the expected output? What do you see instead?
The Value of the cell Should display with no beginning and ending spaces
The value of the cell is displayed with spaces.
i.e.  123 should display as 123
but it displays as ...........123...........
where ..... = white space

It Doesn't trim it like I would expect

What version of the product are you using? On what operating system?
Current Version on Windows 7

Please provide any additional information below.
if you place the <Td> tags on the same line, the extra space is removed
<tr>
<td></td><td></td>
</tr>
<tr>
<td></td><td></td>
</tr>

Original issue reported on code.google.com by bill.mo...@gmail.com on 19 Mar 2013 at 8:03