ryansuitposungkono / openjs-grid

Automatically exported from code.google.com/p/openjs-grid
0 stars 0 forks source link

First line in the grid is the smallest even though width defined #83

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Create a table 
+--------------+--------------+------+-----+---------+----------------+
| Field        | Type         | Null | Key | Default | Extra          |
+--------------+--------------+------+-----+---------+----------------+
| idFeatures   | int(11)      | NO   | PRI | NULL    | auto_increment |
| feature      | tinytext | NO   |     | NULL    |                |
| featureDescr | text         | NO   |     | NULL    |                |
| priority     | int(11)      | YES  |     | NULL    |                |
| notes        | text         | YES  |     | NULL    |                |
+--------------+--------------+------+-----+---------+----------------+

2. alter index.php and ajax.php to support that table (don't display idFeatures)
3. Set feature to the following 
         editable="textarea" width="120"
4. Reload the page and you will see the others take up the area

What is the expected output?
That I can display a good portion of the features field

What do you see instead?
It is the smallest among the fields

What version of the product are you using? 1.8

On what operating system? Linux

Please provide any additional information below.

using apache web server.

Original issue reported on code.google.com by tim.ep...@gmail.com on 12 Sep 2012 at 11:39

GoogleCodeExporter commented 9 years ago
Width seems to get ignored

Original comment by tim.ep...@gmail.com on 12 Sep 2012 at 11:40

GoogleCodeExporter commented 9 years ago
Found that if I give width to all defined, it works.  Only if I leave one 
undefined do the others get scrunched.  

Original comment by tim.ep...@gmail.com on 13 Sep 2012 at 7:57