hii..
I tried so hard to reproduce the bug #4289 "Rename table - fatal Javascript error" but i was not able to do so.
so, i start looking for another bug and i found bug #3991 "select item in any select box with the ENTER keystroke doesn't work anywhere" which i successfully reproduced in IE 10...
I would now like to know my next step.
Eagerly waiting for the reply...
Aayush Anand a écrit :
hii..
I tried so hard to reproduce the bug #4289 "Rename table - fatal Javascript error" but i was not able to do so.
so, i start looking for another bug and i found bug #3991 "select item in any select box with the ENTER keystroke doesn't work anywhere" which i successfully reproduced in IE 10...
I would now like to know my next step.
Eagerly waiting for the reply...
Hi, I assume that you want to participate in Google Summer of Code 2014. At this point, we are reviewing code sent by students, with the goal of evaluating their programming skills.
If a seasoned developer has to guide you step by step, maybe it's a sign that your challenge is to improve these skills before participating in GSoC.
I got your point. thanks for marking it.
On Tue, Feb 25, 2014 at 7:59 PM, Marc Delisle marc@infomarc.info wrote:
Aayush Anand a écrit :
hii..
I tried so hard to reproduce the bug #4289 "Rename table - fatal
Javascript
error" but i was not able to do so.
so, i start looking for another bug and i found bug #3991 "select item in any select box with the ENTER keystroke doesn't work anywhere" which i successfully reproduced in IE 10...
I would now like to know my next step.
Eagerly waiting for the reply...
Hi, I assume that you want to participate in Google Summer of Code 2014. At this point, we are reviewing code sent by students, with the goal of evaluating their programming skills.
If a seasoned developer has to guide you step by step, maybe it's a sign that your challenge is to improve these skills before participating in GSoC.
-- Marc Delisle http://infomarc.info | http://phpmyadmin.net
Flow-based real-time traffic analytics software. Cisco certified tool. Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer Customize your own dashboards, set traffic alerts and generate reports. Network behavioral analysis & security monitoring. All-in-one tool.
http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.cl... _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
hi Marc, i have been thoroughly going through the source code for last 4 days, looking for the potential fault for not enter key not working. I was not able to locate any such potential reason. Then i started thinking in different way and read about issues of working of active x in IE9. can it be because of that reason.? if i run PMA in chrome, my esc button works same as enter button. Now when i run PMA on IE9, enter doesn't work but still esc button works in the same way. This may be because of keyup and keydown event handler used for enter key and not for esc key.
please tell me if i am thinking in correct direction.
Le 2014-03-01 18:16, Aayush Anand a écrit :
hi Marc, i have been thoroughly going through the source code for last 4 days, looking for the potential fault for not enter key not working. I was not able to locate any such potential reason. Then i started thinking in different way and read about issues of working of active x in IE9. can it be because of that reason.? if i run PMA in chrome, my esc button works same as enter button. Now when i run PMA on IE9, enter doesn't work but still esc button works in the same way. This may be because of keyup and keydown event handler used for enter key and not for esc key.
please tell me if i am thinking in correct direction.
Hi Aayush, you might have found the cause. Note that these bug tickets are still there because nobody found a solution.
Please tell us which exact select box you are looking at.
hi Marc, first of all i would like to apologies for so late reply. I was stuck in my semester examinations. and this time I wanted to come only with some lead, so didn't informed with that.
i was basically talking about all the select tags. See from my research i found that due to some reason keyup and keydown events are not integrating correctly with those tags. And since keypress event don't catch "enter key" press, so it is not functioning.
since i was not able to find a general solution at once, i thought of going through a more specific select tag and solve its issue and then find a general solution. so i started focusing over the "recent_tagle_tag" in " pma_navigation_content". i added many onkeypress/up/down events so that we can bypass the situation where enter key hit is not even recognized.
simplest solution which i found to it was simple writing a onkeydown/up event (not onkeypress) and to determine the enter key hit. Once determined, losing the focus from select tag, simply solves our purpose.
i did this on my local server pma and its working. please give your comments.
On Sun, Mar 2, 2014 at 5:28 PM, Marc Delisle marc@infomarc.info wrote:
Le 2014-03-01 18:16, Aayush Anand a écrit :
hi Marc, i have been thoroughly going through the source code for last 4 days, looking for the potential fault for not enter key not working. I was not able to locate any such potential reason. Then i started thinking in different way and read about issues of working of active x in IE9. can it be because of that reason.? if i run PMA in chrome, my esc button works same as enter button. Now when i run PMA on IE9, enter doesn't work but still esc button works in the same way. This may be because of keyup and keydown event handler used for enter key and not for esc key.
please tell me if i am thinking in correct direction.
Hi Aayush, you might have found the cause. Note that these bug tickets are still there because nobody found a solution.
Please tell us which exact select box you are looking at.
-- Marc Delisle http://infomarc.info | http://phpmyadmin.net
Flow-based real-time traffic analytics software. Cisco certified tool. Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer Customize your own dashboards, set traffic alerts and generate reports. Network behavioral analysis & security monitoring. All-in-one tool.
http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.cl... _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
finally, i devised a general function and now my entire index page is working well. :)
On Sun, Mar 9, 2014 at 1:59 AM, Aayush Anand aayushism12@gmail.com wrote:
hi Marc, first of all i would like to apologies for so late reply. I was stuck in my semester examinations. and this time I wanted to come only with some lead, so didn't informed with that.
i was basically talking about all the select tags. See from my research i found that due to some reason keyup and keydown events are not integrating correctly with those tags. And since keypress event don't catch "enter key" press, so it is not functioning.
since i was not able to find a general solution at once, i thought of going through a more specific select tag and solve its issue and then find a general solution. so i started focusing over the "recent_tagle_tag" in " pma_navigation_content". i added many onkeypress/up/down events so that we can bypass the situation where enter key hit is not even recognized.
simplest solution which i found to it was simple writing a onkeydown/up event (not onkeypress) and to determine the enter key hit. Once determined, losing the focus from select tag, simply solves our purpose.
i did this on my local server pma and its working. please give your comments.
On Sun, Mar 2, 2014 at 5:28 PM, Marc Delisle marc@infomarc.info wrote:
Le 2014-03-01 18:16, Aayush Anand a écrit :
hi Marc, i have been thoroughly going through the source code for last 4 days, looking for the potential fault for not enter key not working. I was not able to locate any such potential reason. Then i started thinking in different way and read about issues of working of active x in IE9. can it be because of that reason.? if i run PMA in chrome, my esc button works same as enter button. Now when i run PMA on IE9, enter doesn't work but still esc button works in the same way. This may be because of keyup and keydown event handler used for enter key and not for esc key.
please tell me if i am thinking in correct direction.
Hi Aayush, you might have found the cause. Note that these bug tickets are still there because nobody found a solution.
Please tell us which exact select box you are looking at.
-- Marc Delisle http://infomarc.info | http://phpmyadmin.net
Flow-based real-time traffic analytics software. Cisco certified tool. Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer Customize your own dashboards, set traffic alerts and generate reports. Network behavioral analysis & security monitoring. All-in-one tool.
http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.cl... _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
-- Thanks & Regards Aayush 2nd Year Undergraduate Student Department of Mining Engineering Indian School of Mines, Dhanbad Mobile No: (+91)9162648465
i have made this pull request. Please see this.. and comment over it https://github.com/phpmyadmin/phpmyadmin/pull/1044
On Sun, Mar 9, 2014 at 3:13 AM, Aayush Anand aayushism12@gmail.com wrote:
finally, i devised a general function and now my entire index page is working well. :)
On Sun, Mar 9, 2014 at 1:59 AM, Aayush Anand aayushism12@gmail.comwrote:
hi Marc, first of all i would like to apologies for so late reply. I was stuck in my semester examinations. and this time I wanted to come only with some lead, so didn't informed with that.
i was basically talking about all the select tags. See from my research i found that due to some reason keyup and keydown events are not integrating correctly with those tags. And since keypress event don't catch "enter key" press, so it is not functioning.
since i was not able to find a general solution at once, i thought of going through a more specific select tag and solve its issue and then find a general solution. so i started focusing over the "recent_tagle_tag" in " pma_navigation_content". i added many onkeypress/up/down events so that we can bypass the situation where enter key hit is not even recognized.
simplest solution which i found to it was simple writing a onkeydown/up event (not onkeypress) and to determine the enter key hit. Once determined, losing the focus from select tag, simply solves our purpose.
i did this on my local server pma and its working. please give your comments.
On Sun, Mar 2, 2014 at 5:28 PM, Marc Delisle marc@infomarc.info wrote:
Le 2014-03-01 18:16, Aayush Anand a écrit :
hi Marc, i have been thoroughly going through the source code for last 4 days, looking for the potential fault for not enter key not working. I was
not
able to locate any such potential reason. Then i started thinking in different way and read about issues of working of active x in IE9. can it be because of that reason.? if i run PMA in chrome, my esc button works same as enter button. Now when i run PMA on IE9, enter doesn't work but still esc button works in the same way. This may be because of keyup and keydown event handler used for enter key and not for esc key.
please tell me if i am thinking in correct direction.
Hi Aayush, you might have found the cause. Note that these bug tickets are still there because nobody found a solution.
Please tell us which exact select box you are looking at.
-- Marc Delisle http://infomarc.info | http://phpmyadmin.net
Flow-based real-time traffic analytics software. Cisco certified tool. Monitor traffic, SLAs, QoS, Medianet, WAAS etc. with NetFlow Analyzer Customize your own dashboards, set traffic alerts and generate reports. Network behavioral analysis & security monitoring. All-in-one tool.
http://pubads.g.doubleclick.net/gampad/clk?id=126839071&iu=/4140/ostg.cl... _______________________________________________ Phpmyadmin-devel mailing list Phpmyadmin-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/phpmyadmin-devel
-- Thanks & Regards Aayush 2nd Year Undergraduate Student Department of Mining Engineering Indian School of Mines, Dhanbad Mobile No: (+91)9162648465
-- Thanks & Regards Aayush 2nd Year Undergraduate Student Department of Mining Engineering Indian School of Mines, Dhanbad Mobile No: (+91)9162648465