Hi
I am using display tags in my project
I am using decorator attribute in display:table. My code is
public String startRow() { if(getPageContext().getRequest().getParameter("d-1588-e") == null) { Hashtable userDAO = (Hashtable) getCurrentRowObject(); StringBuffer sb = new StringBuffer("<a href=\"alert('called')");
System.out.println("recno is"+userDAO.get("RECNO")); // sb.append(userDAO.get("RECNO")); sb.append("\" >"); System.out.println(sb); return sb.toString(); } else { return ""; } }
It is working in Internet explorer.It is not working in Netscape Browser..........
I want to execute in netscape browser.. Plz give me some help regarding this,........................
hi NARENDRAPRAKASH
if you are creating any url , don't use back slash(), replace it with forward slash.
Netscape and fire fox may cause problem while generating url
Log in to post a comment.
Hi
I am using display tags in my project
I am using decorator attribute in display:table. My code is
public String startRow() {
if(getPageContext().getRequest().getParameter("d-1588-e") == null) {
Hashtable userDAO = (Hashtable) getCurrentRowObject();
StringBuffer sb = new StringBuffer("<a href=\"alert('called')");
It is working in Internet explorer.It is not working in Netscape Browser..........
I want to execute in netscape browser..
Plz give me some help regarding this,........................
hi NARENDRAPRAKASH
if you are creating any url , don't use back slash(), replace it with forward slash.
Netscape and fire fox may cause problem while generating url