Menu

#4281 (ok 4.2) Grid edit enum field, dialog disappears when trying to select value

Latest_Git
fixed
None
1
2014-05-08
2014-02-10
No

It works in Chrome, but in Firefox, when you click on the arrow on the right of the selectbox, the little dialog disappears and you cannot select the value.

It happens in current git, but apparently Git revision: abbd6bd from Jan 30 seems to work properly

Discussion

  • dennis1993

    dennis1993 - 2014-02-10

    I can reproduce this issue with Internet Explorer 11 on the master-demo.
    It is not possible to select a value.

     
  • Minhaz

    Minhaz - 2014-02-22

    Can you post methods to reproduce this?

     
  • Raimund Meyer

    Raimund Meyer - 2014-02-24
    1. Create a table with an enum field
    CREATE TABLE IF NOT EXISTS `test` (
    `id` int(11) NOT NULL,
      `myenum` enum('a','b') COLLATE utf8_unicode_ci NOT NULL
    ) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
    ALTER TABLE `test` CHANGE `id` `id` INT(11)  NOT NULL PRIMARY KEY AUTO_INCREMENT;
    
    
    INSERT INTO `test` (`id`, `myenum`) VALUES
    (1, 'a');
    
    • Click "Browse"
    • Double click on the cell with the value "a" -> a dropdown select appears to edit the value
    • When you click on the select to change the value, it disappears, and you can't selectthe new value

    edit: added PRIMARY KEY to table, because otherwise grid edit is not possible anyway

     

    Last edit: Raimund Meyer 2014-02-24
  • Ayush Datta

    Ayush Datta - 2014-02-24

    It is not working neither in chrome nor in firefox.
    Can you tell me how to proceed to resolve this bug.
    I am using Latest phpmyadmin code.

     

    Last edit: Ayush Datta 2014-02-24
  • Raimund Meyer

    Raimund Meyer - 2014-02-24

    Please note my edit above

     
  • Marc Delisle

    Marc Delisle - 2014-02-27
    • assigned_to: Marc Delisle
     
  • Marc Delisle

    Marc Delisle - 2014-02-27
    • summary: Grid edit enum field, dialog disappears when trying to select value --> (ok 4.2) Grid edit enum field, dialog disappears when trying to select value
    • status: open --> resolved
    • Priority: 5 --> 1
     
  • Marc Delisle

    Marc Delisle - 2014-05-08
    • status: resolved --> fixed
     
MongoDB Logo MongoDB