• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Can parameters be scriptlet in onclick? If not, alternate?

 
Ranch Hand
Posts: 90
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator


is the method i am calling on onclick inside the image source tag. The function i am calling is:

function editGroupAccess(editGroupAccessId)
{
setCmd('assignAccess');
document.frmReport.submit();
}

Kindly inform, what is the method to call this function in a written in a jsp file when a button is clicked. There are rows in a table which have these buttons on which i am planting the onclick function. The parameter passed to the method called in the onclick cant be a scriptlet? Any alternate ways?
 
Greenhorn
Posts: 25
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Murad Iqbal:


is the method i am calling on onclick inside the image source tag. The function i am calling is:

function editGroupAccess(editGroupAccessId)
{
setCmd('assignAccess');
document.frmReport.submit();
}

Kindly inform, what is the method to call this function in a written in a jsp file when a button is clicked. There are rows in a table which have these buttons on which i am planting the onclick function. The parameter passed to the method called in the onclick cant be a scriptlet? Any alternate ways?




If i have properly understood u r question, this could be u r answer.

U can use scriplets inside u r javascript function call as follows

<A href='editGroupAccess("<%=editGroupAccessId%>")'><img src="C:\Documents and Settings\murad\Desktop\onclicktag.jpg"/></A>

Where editGroupAccessID is a java variable which can be initialized to certain value using normal java code. It will be replaced by normal javaScript function parameter when page is converted to html.
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Gholkar,

JavaRanch is a community of people from all over the world, many of who are not native English speakers. While using abbreviations like "u" instead of spelling out "you" is convenient when text messaging your friends on a cell phone or in a chat room, it presents an extra challenge to those that are already struggling with English. Additionally, such shortcuts may confound automated translation tools that patrons of the Ranch may be making use of.

I would like to ask for your help in making the content of JavaRanch a little easier to read for everybody that visits here by not using such abbreviations.

thanks,
bear
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic