While we are at it.. a little internetexplorer bug when editing keywords..
ok we are at the normal display page.. with a page with 20 entries..
each entry (depending of the template you are using) allows you as admin to edit keywords inline..
works fine (I modified the template a little bit)
BUT if you toggle the
tag graphic the word "
keywords" appears and a field where you can edit the keywords of this entry.. and a go button..
if you click the word "keywords" it goes back to the tag symbol...
In IE7 it acts weird.. because the link is linked to a jumpmark that doesnt really exist.. #$linkid
and it eventually reloads the page.. or pushes the link to the top of the screen when you edit it.. (adding the jumpmark #$linkid to the url)
I fixed it that way:
the link in the template is:
HTML Code:
<a href="#{$linkid}" onclick="ldm_show('keys{$linkid}_', 1, 2);">$vbphrase[ll_keywords]</a>
i changed it to:
HTML Code:
<a href="#" onclick="ldm_show('keys{$linkid}_', 1, 2);return false;">$vbphrase[ll_keywords]</a>
It has to be done twice (also for the tag image when you toggle).. otherwise IE will jump to the link.. this is
NOT the way it should act (imho).. because:
if you are editing the last link on the page... it will open the editfield (as it should) but will then "jump" to that link.. so if you had it in the middle of the page.. it will scroll that link to the top of the page..
It's the same when you close the editbox when klicking on the word: "keywords"
(grrr hope you understood what i meant)
Anyway there should at least be a: return false; at the end of the "onclick" stuff..
Felix
PS: I also removed the $linkid leaving only the # thinking there is no point jumping to that link because you are allready at that link..(i might be wrong)