This topic is locked
[SOLVED]

 Back to list button does nothing in edit

2/8/2017 1:23:02 PM
PHPRunner General questions
J
jrlozano author

In a project migrated from previous version, now in 9.6, button "Back to list" (in every edit page) does nothing when pressed. The same in view pages.

Button "register" on register page does not function, but button back to login functions!!

It only happens in one of my projects, the rest goes ok.

Any idea?

Sergey Kornilov admin 2/8/2017

As a first step - check for Javascript errors:

https://xlinesoft.com/phprunner/docs/troubleshooting_javascript_errors.htm
It sounds like some sort of Javascript error is happening there.

J
jrlozano author 2/12/2017

Yes! It was a Javascript error.

It seems that this old code is not correct now:
$.each($("input,textarea"),function(i,e){

$(this).css('fontSize', '150%');

});
It was in login page, and that's why I didn´t realize, but following your help, I finally realized where the problem was.
Thanks!!!