- This topic has 6 replies, 3 voices, and was last updated 13 years, 5 months ago by
minhur.
-
AuthorPosts
-
minhurMemberStarting with the latest upgrade to ME 9.1,
I’m unable to jump to custom tag files when ctrl+clicking it.for example when my jsp has this:
<body><contentform:error />
ctrl clicking on contentform tag opened error.tag
The behavior is not happening anymore.August 5, 2011 at 12:07 am #318689
support-swapnaModeratorminhur ,
I could replicate the issue at my end. I have filed a PR for the dev team to work on it.
You can see it fixed in the future release.
Sorry for the inconvenience caused.August 5, 2011 at 8:49 am #318704
minhurMemberThank you for the prompt response.
I posted a similar bug with include tags
https://www.genuitec.com/forums/topic/ctrl-clicking-on-a-custom-tag-with-an-include/&highlight=
hopefully these two issues can be resolved at the same time if they are related.
December 22, 2011 at 2:32 pm #321934
Brian FernandesModeratorThe custom include issue is fixed in MyEclipse 10.0 GA.
The latest milestone release of 10.0.1 includes a fix for the custom tag problem. For more details on this release, click here.
January 30, 2012 at 5:02 pm #322810
minhurMemberI’ve tried the milestone stream and this works great now, many thanks.
This issue still exists though:
https://www.genuitec.com/forums/topic/ctrl-clicking-on-a-custom-tag-with-an-include/&highlight=
Are there any plans to fix it anytime soon?January 30, 2012 at 5:11 pm #322812
Brian FernandesModeratorminhur,
It was my understanding that the custom include issue had already been fixed; the fix should have been part of the 10.0 GA release. Do you still see the same issue as originally described in your other thread?
January 30, 2012 at 5:31 pm #322813
minhurMemberyes this is still happening.
To recap, what’s happening is :I have page.jsp calling custom tag:
<%@ taglib prefix="page" tagdir="/WEB-INF/tags/contentbase/page"%> <html> <head> <title>test</title> </head> <body> <page:breadcrumb></page:breadcrumb> </body> </html>
breadcrumb.tag has an %include
<%@ include file="/WEB-INF/pages/includes/attribute.jsp"%> <div>test</div>
attribute.jsp looks like this
<%@ attribute name="label"%><s:set name="attr_label" value="#attr.label"/>
when ctrl+clicking from page.jsp on the word page:breadcrumb,
instead of getting breadcrumb.tag opened, attribute.jsp is opened.the expected behavior is that I need to open breadcrumb.tag
-
AuthorPosts