Questions tagged [tag-handler]

19 questions
0
votes
1 answer

cannot call methods on autocomplete prior to initialization; attempted to call method 'option'

I am using tag handler plugin for my website. and I placed the supportive js beneath the js of mine where I am initializing the method. And every js is in footer. I don't know why i am getting this error. Here is js:…
user3583798
0
votes
1 answer

Compile custom JSP tag handler

package com.mytag.tags; import java.util.Date; import javax.servlet.jsp.JspException; import javax.servlet.jsp.JspWriter; import javax.servlet.jsp.tagext.TagSupport; public class MyTagHandler extends SimpleTagSupport{ public int doStartTag()…
user5501265
  • 39
  • 1
  • 8
0
votes
0 answers

JSP: tag Holder not working

I have made tld and tag holder (of type Body Tag Support) in which src is the required attribute. In JSP: <%@taglib uri="/WEB-INF/tlds/tld1.tld" prefix="imageViewer1"%>
Malwinder Singh
  • 6,644
  • 14
  • 65
  • 103
-1
votes
1 answer

Programming Simple Tag Handlers in JSP

I recently started working on JSP, and I was going through the tutorials on creating simple tag handlers for validating custom tags. I came across this code snippet and when I tried to run it, I am getting the same error over and over again. I asks…
formidableXenon
  • 55
  • 2
  • 15
1
2