First of all, sorry for the late response.
Now about your case. I see an issue with your issues
In issues table. Each issue has the Vol so Vols are not unique in that table. This gives a
problem because you will have an option for each issue and not for each volume.
That can be solved with a DISTINCT in the select statement, but there is not in the code.
You can tweak code a little, file sc_classes around line 288 you will find a line like
$cmd = "SELECT $key_fld, $text_fld FROM $table ";
making it like
$cmd = "SELECT DISTINCT $key_fld, $text_fld FROM $table ";
should do the trick.
Solving that, then we have to deal with the ajax issue, pls have a look at
[
forum.salix.gr] there are lots of debuging tips there.
Maybe i should put that info in a more findable place
If nothing works, hit me again. Always happy to help.
Best Regards
Panos