New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ENUM's radiobuttons reset on "Continue insertion with" changes #13864
Comments
|
My test table: SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
CREATE TABLE `a` (
`id` int(11) NOT NULL,
`test` enum('a','b') NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
INSERT INTO `a` (`id`, `test`) VALUES
(1, 'a'),
(2, 'a');
ALTER TABLE `a`
ADD PRIMARY KEY (`id`);
ALTER TABLE `a`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
COMMIT; |
|
Hey @williamdes! I am a newbie. I have figured out that the issue lies in tbl_change.js but even after trying it for several hours (5-6 maybe!) I am not able to figure it out. Can you please tell me how to proceed further for such issues? |
|
@akkywadhwa You can join our Slack or Gitter if you want to discuss in real time :) Could you try to add breakpoints in your browser to find where the reset happens ? |
|
@williamdes |
I don't know, I always use console logs to debug ^^ |
fixes phpmyadmin#13864 Signed-off-by: Jayati Shrivastava <gaurijove@gmail.com>
fixes phpmyadmin#13864 Signed-off-by: Jayati Shrivastava <gaurijove@gmail.com>
fixes phpmyadmin#13864 Signed-off-by: Jayati Shrivastava <gaurijove@gmail.com>
fixes phpmyadmin#13864 Signed-off-by: Jayati Shrivastava <gaurijove@gmail.com>
fixes phpmyadmin#13864 Signed-off-by: Jayati Shrivastava <gaurijove@gmail.com>
fixes phpmyadmin#13864 Signed-off-by: Jayati Shrivastava <gaurijove@gmail.com>
Signed-off-by: William Desportes <williamdes@wdes.fr>
Steps to reproduce
Expected behaviour
ENUM datatype column setting in all added (selected) items must remain as selected on "Continue insertion with" change
Actual behaviour
ENUM datatype column setting in all added (selected) items resets and loses the previously selected value
Server configuration
phpMyAdmin version: 4.7.4, 4.8.3, 5.0.0-dev
The text was updated successfully, but these errors were encountered: