Menu

#1210 (ok 3.4) wrapping enum values

Next_minor_version
fixed
1
2013-06-11
2010-02-22
No

Wrap the enum values while displaying the table structure. This helps compacting of HTML table so we don't have to scroll horizontally.

This can be achieved by a small change in PMA_extractFieldSpec function in libraries/common.lib.php
$spec_in_brackets = chop(substr($fieldspec, $first_bracket_pos + 1, (strpos($fieldspec, ')') - $first_bracket_pos - 1)));
$spec_in_brackets = str_replace("','", "', '", $spec_in_brackets); //Adds a space after , to allow wrapping

Discussion

  • Michal Čihař

    Michal Čihař - 2010-09-16
    • priority: 5 --> 1
    • assigned_to: nobody --> nijel
    • summary: wrapping enum values --> (ok 3.4) wrapping enum values
    • status: open --> open-fixed
     
  • Michal Čihař

    Michal Čihař - 2010-09-16

    This requested feature was implemented in the repository and will be part of a future release; thanks for suggesting.

     
  • Michal Čihař

    Michal Čihař - 2011-05-11
    • status: open-fixed --> closed-fixed
     
  • Michal Čihař

    Michal Čihař - 2013-06-11
    • Status: closed-fixed --> fixed