Linking jsp buttons with values.....

Hi,
I have a requirement where i want to link buttons with different values in a jsp...
F.eg i have {a=0,b=1,c=2} values inserted in a hashtable....and i am displaying only the keys(a,b,c) on the screen using jsp....
now i want to associate a remove button with each of these so that when i click on 'a''s remove.....a=0 gets removed from the hashtable and so on.....
i can click on any key value's remove button whenever i want...how can i link one particular remove button to its variable????
Can anyone pls help me?????

No, but i have to give it "remove" name only....and also im able to add values dynamically into the hashtable..... as soon as i add the value it displays on the screen with its corresponding "remove" button!!!!!

Similar Messages

  • Link Flash buttons with typo3

    hi
    I have a problem. I want to link my flash menu with typo3 and
    I don't know what i should do.
    Please help he, I'm very desperate.
    Sincerely Mia

    typo3?
    Dave -
    www.offroadfire.com
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Linking paypal button with options?

    Hi I am setting up a site for a client. I can not figure out how to link the color options of the product to the add to cart button. For example if I want to purchase a red iphone case I select red from the drop menu and click add to cart. But once I am in the cart all it says is iphone case but doesn't tell what color or option.

    I believe you set that up in the "design" of the button right in PayPal, where you put in the description of the object being sold, the price, the shipping charge, etc. Check out the PayPal button maker. I think it's in the Account Profile. PayPal has reasonably good help screens to get you there.
    Beth

  • Button with image in JSP

    In JSP, how could we create a button with an image on it.
    Normally in JSP we use something like :
    <input type="submit" name="ButtonName" value="Submit"> to create a button
    and we use < request.getParameter("ButtonName")> to invoke it.
    How can we create a button with an image? and how to invoke the button. Thanks.

    Not too sure how you are invoking with the request.getParameter() (I'm still fairly new to JSP), but you can certainly create a submit button with an image by using:
    <input type="image" src="buttonimage.gif" height="100" width="100" name="ButtonName" value="Submit" />(Where or course src, width and height are dependant on your image.)
    Hope that helps.

  • Help with Re-Linking Navigation Buttons

    I have Adobe Flash CS3 Pro.
    I have a navigation header flash file that came with my website template and I am having difficulty making sense of the actionscript. It has a logo section with effects, 5 main nav buttons that move, and two extra link buttons above the navigation bar. Let’s focus on just the Navigation buttons for now. Here is what I have gathered. I have multiple text buttons on one movieclip, and I have successfully edited the text for each button. If I look at the actionscript in the top layer of this movieclip I see:
    “gotoAndStop(parent._parent.num);”
    I also have a separate movieclip symbol (with effects) with 5 buttons layers listed in the actionscript with the following actionscript tied to each button from numbers 1 through 5:
    onClipEvent (load) {
                num=1;
    onClipEvent (load) {
                num=2;
    onClipEvent (load) {
                num=3;
    onClipEvent (load) {
                num=4;
    onClipEvent (load) {
                num=5;
    On the top layer of these 5 buttons I have the following actionscript:
    stop();
    this["item"+_root.button].gotoAndPlay("s1");
    _root.link = _root.button;
    I also have a separate button symbol with the following actionscript:
    on (rollOver) {
                if (_root.link<>1) {
                            menu.item1.gotoAndPlay("s1");
    on (releaseOutside, rollOut) {
                if (_root.link<>1) {
                            menu.item1.gotoAndPlay("s2");
    on (release) {
                if (_root.link<>1) {
                            _root.menu["item"+_root.link].gotoAndPlay("s2");
                            _root.link = 1;
                            getURL("index.html");
    Now my website template came with 5 html pages that my flash navigation buttons correspond to: (index.html, index-1.html, index-2.html, index-3.html, index-4.html, index-5.html). My problem is that I have created new pages (index.html, about.html, featured.html, projects.html, contact.html). I would like each of the 5 buttons to correspond to these pages, not the existing standard “index-n.html” pages. 
    Also, this is probably not relevant, but each html page has something to this affect so I can see how they correspond to each button.
    <script type="text/javascript">
              var fo = new FlashObject("flash/menu_vf8.swf?button=2", "head", "100%", "144", "7", "");
              fo.addParam("quality", "high");
                        fo.addParam("wmode", "transparent");
                            fo.addParam("scale", "noscale");
              fo.write("head");
            </script>
    I guess my real question is: What actionscript do I need to update or remove for the nav button LINKS to work with my new html pages rather than the standard 5 index-n.html pages that it automatically wants to link to?
    When I try and add a “getURL” command to each of the 5 buttons and test preview the movie, the links work, but it messes up the effects of the movieclip. In other words, the buttons don’t move, they are motionless, however the links work. If I added this command to each button in some way, what actionscript would I need to remove so there weren’t any complications? I need some expert help here for it would be much appreciated. I am a novice with Flash script and its killing me that I can’t figure it out. I asked for help from the template support and all they came back with was the following message and it wasn’t helpful:
    You need to duplicate each button you are editing - it is very important.
    2) Update the scripting to look similar way:
    on (release) {
    if (_root.link<>num) {
    _parent["item"+_root.link].gotoAndPlay("s2");
    _root.link = num;
    if (num == 1) {
    getURL("index.html");
    } else {
    getURL("index-"+Number(num-1)+".html");
    Update it to:
    on (release) {
    getURL("http://www.google.com");
    Also, I read through the following discussion, which was helpful to a degree, but it still didn’t answer my questions about getting the links to work.
    http://forums.adobe.com/message/3614092#3614092

    First of all, thank you for showing interest and helping out in my dilemma here. I wish I understood your meaning behind “on” because with my luck there is probably some hidden way of placing script on an object that I don’t understand or haven’t discovered yet.
    This is what I know:
    I have multiple text buttons on one movieclip entitled “textbutton1” (see previous picture), and I have successfully edited the text for each button and created two extra frames/buttons to make 7 total. If I look at the actionscript in the top layer of this movieclip I see:
    “gotoAndStop(parent._parent.num);”
    But there is no action on each individual frame (all 7 of them) on that layer.
    Like I mentioned before I have a separate movieclip symbol (entitled “menu effect”) with 7 button movieclip layers listed in the actionscript with the following actionscript on each layer.
    onClipEvent (load) {
                num=1;
    onClipEvent (load) {
                num=2;
    onClipEvent (load) {
                num=3;
    onClipEvent (load) {
                num=4;
    onClipEvent (load) {
                num=5;
    onClipEvent (load) {
                num=6;
    onClipEvent (load) {
                num=7;
    On the top layer (layer 4 frame 25) of these 5 buttons I have the following actionscript:
    stop();
    this["item"+_root.button].gotoAndPlay("s1");
    _root.link = _root.button;
    I can upload another particular image of the movieclip/actionscript if it would be helpful. Let me know.

  • Instead of using image in a link column can we have button with name?

    Hi,
    In Apex , in report region instead of using image in a link column can we have button with name?
    Thanks,
    Anoo..

    From your wording, it sounds like you used the built-in column link within APEX. You will need to edit your column and remove that so that the column is only containing the definition that is coming from the query (you can also just change the alias used for the column and then the old column with the link will be removed and the new alias will be added against your new button column).
    -- Sharon

  • Linking Consignment Settlement (MRKO) with Value Contract

    Hi Guys,
    We are trying to set up Consignment stock functionality in our company. We have successfully configured and tested it but there is only one problem, we want to link this consignment functionality with and Outline agreement (Value Contract to be exact), so that every time we do a settlement using MRKO, the invoice value is deducted from the total value of the contract. My first question is
    1 - Can we link consignment settlement (MRKO) and Value Contract in such a way that each time we run consignment settlement using MRKO , the open/ remaining value of the Value Contract is decreased by the invoice amount. If YES, then how can we do it (Please mention the steps if possible)
    2- If NO, then what is the way to achieve above task, is their workaround for it ??

    Normally we do not get into consignment arrangements with supplier with value limites or qty limites. It defeats the purpose of consignment, where idea is to reduce inventory carrying cost and yet have full availability of stock.
    Also, you will provide a dedicated space in your premises to your Supplier and hence to limit him with total value of your consumption is difficult to achieve. Even if you make some enhancement in system to achieve it, on shop floor how can you control it, if you have inventory open for use? If you have negotiated with consignment vendor based on value, I am sure Vendor will not replenish any inventory once he thinks that overall value limit is breached and hence suddenly one day, without any indicators to you, you will run out of those components which you do not have in your inventory, nor in your consignment inventory.
    You can implement any exit, which may stop you post the transaction in system, but I believe if you are entering into such contracts with your supplier, you may need to have some sort of notification once you are close approaching the overall limit, to either re-negotiate the contract or to have those components ordered for your inventory directly to ensure availability of stock.
    Regards,
    Dakshesh

  • How to make email link with a button with AC2 in flash cs3?

    How to make email link with a button with AC2 in flash cs3?
    I wrote this, but it does not work:
    btn_emailinfo.on (release) {
    getURL("mailto:"[email protected]");
    }

    I am guessing you put that on a frame?
    If so, the syntax is as follows:
    btn_emailinfo.onRelease = function(){
    getURL("mailto:[email protected]");
    Though, if you are placing it directly on the button itself,
    the syntax is:
    on(release){
    getURL("mailto:[email protected]");
    }

  • A few weeks ago, I began to have problems getting links and buttons to work on varying websites. I've tried the help steps with no success. What gives?

    When I go to certain web sites, I cannot get some of their links or buttons to work. For example, I cannot "vote" and see results on MSN's homepage or sign in to my account on Ancestry.com's homepage. Some links work, but others do not. They do not work in IE either. I have tried all of the suggestions concerning plug-ins and extensions that Mozilla Support gives. I run Windows 8.1, have Java up to date as well as JavaScript. I have tried everything to figure out what is going on. Any help would be much appreciated!

    Ronmissy2008, this is Davec. I'm sorry to hear about you not being able to access certain links nor use the buttons to vote on issues or articles read.'''''' First of all, I would call your Internet Service Provider and have them check your router''''''. There is a possibility that it may need a firmware update, since you have upgraded to Windows 8.1. '''''Firmware''' is embedded software that implements network and security protocols for that specific model of hardware device.'' Most wired and wireless routers are designed to perform a firmware upgrade process. The manufacturer will be able to provide enhancements to your router. When I first got AT&T U-verse, my router upgraded its firmware which took about a few minutes to perform. Click on the link for more information about firmware upgrades:
    (http://compnetworking.about.com/od/wifihomenetworking/qt/firmwareupgrade.htm)
    If your Service provider is done with the router's firmware upgrade, then try updating your Windows 8.1 software.
    1.) '''Open Windows Update by swiping in from the right edge of the screen '''(or, if you're using a mouse, pointing to the lower-right corner of the screen and moving the mouse pointer up), '''tapping or clicking Settings''',''' tapping or clicking Change PC settings, and then tapping or clicking Update and recovery'''.
    2.) Tap or click Choose how updates get installed.
    3.) Under Important updates, choose the option that you want.
    4.) Under Recommended updates, select the Give me recommended updates the same way I receive important updates check box, and then click Apply.
    (http://windows.microsoft.com/en-us/windows-8/windows-update-faq)
    This is all I could think of for right now. Definitely call your Internet Service Provider and let them know you have upgraded to Windows 8.1 and that your router needs to be checked. Also, have them upgrade the firmware if needed. Then run Windows update. I'm going to perform more research into this matter. Let me know what results you receive after performing the firmware upgrade and the windows update.

  • How to check Radio buttons with Differfent button values

    Good Day,
    I am currently trying to write a script that would hide 5 of 6 radio buttons
    I have a radio button called "3. Transfer"
    with values of :
         Yes;
         Supp;
         Reg; and
         do_not_transfer
    as well I have a drop down called "REL.ITEM"
    with values of
              3(A);
              3(B);
              4(A);
              4(B); and
              4(C)
    I know how to get the value of the box and manipulate other fields
    like
    //START
    var transfer = getField("3. Transfer").value
    var relitem = getField("REL.ITEM").value
    if (transfer = "Yes" || transfer = "Supp") && (relitem == "4(C)" || relitem == "4(B)"))
         getField("a. recommend").checkThisBox(0,true);
         getField("a. recommend").display = display.visible
        getField("a. I do not recommend").checkThisBox(0,false);
        getField("a. I do not recommend").display = display.hidden
    else if (transfer = "do_not_transfer")
         getField("a. recommend").checkThisBox(0,false);
         getField("a. recommend").display = display.hidden
         getField("a. I do not recommend").checkThisBox(0,ftrue);
         getField("a. I do not recommend").display = display.visible
    //END
    I would like to make it so that if REL.ITEM != 4(A); 4(B); 4(C) that the radio box's with values of "Yes", "Supp" and "Reg" are hidden while "do_not_transfer" is still displayed and checked.
    I've been going through forums, google and acrobat documentation and I can't seem to find what I'm looking for.
    Thanks for your help in advance.

    if (transfer = "Yes" || transfer = "Supp") && (relitem == "4(C)" || relitem == "4(B)"))
    This should be:
    if ((transfer == "Yes" || transfer == "Supp") && (relitem == "4(C)" || relitem == "4(B)"))
    Similarly,
    else if (transfer = "do_not_transfer")
    should be:
    else if (transfer == "do_not_transfer")
    In order to work with an individual widgets of a form field, obtain an object that represents the widget using the getField method as specifically demonstrated in example #2 in the documentation: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.476.html

  • Attribute HR_NTF_EMBEDDED_REGION with value JSP:/OA_HTML/OA.jsp?OAFunc=-&HR

    Hi,
    Env:
    Oracle EBS :oracle11.5.10.2
    Oracle DB :9.2.0.8
    OS version :AIX 5.3
    we are getting below error in HR self service
    Attribute HR_NTF_EMBEDDED_REGION with value JSP:/OA_HTML/OA.jsp?OAFunc=-&HR_EMBEDDED_REGION-&NtfId=-&#NID- refers invalid framework URL.
    How can i fix the issue?
    Thanks

    Hi;
    It was working before? If yes what have been changed? Is there invalid object on your db? Is there any additional info at apache log?
    Regard
    Helios

  • Problem in linking button with videos in C6

    This is what I tried to do in Captivate 6…
    I created two separate video demos and saved them (ext *.cpvc). Let's call them as P1 and P2.
    I created a third project P3, which has a slide with two buttons on it. 
    Then I linked each button in P3 to P1 and P2 respectively.
    Next I published the project P3. After I published it I copied P1 and P2 in the callees folder of the published project P3, so that when I run the slide and click the buttons the respective video demos P1 and P2 should appear as per the settings.
    But, instead of P1 and P2 opening, I get an error message saying that, “The file not found in the specified location. Please check the path or internet location.”
    I had following doubts in my mind regarding this message…
    Are the video demos linked to the buttons with the correct extension? I have linked the *.cpvc files to the buttons.
    I copied the video demos to the callees folder. Is this the correct thing to do? Or is there any other place where I should have copied the two linked demos?
    Or is it not feasible at all to call a video demo using a button on a slide in captivate?
    I am in deadly hurry to knock this down. Please help me showing these videos.

    Although linking between normal cptx-files can be done by pointing to the cptx, I don't believe that is possible with cpvc files.
    My work flow should have been totally different: I would have created a recording slide both for P1 and P2 in the P3 file but that is now not possible anymore. You cannot insert a CPVC raw file in a CPTX-file (hope it will be possible in the future).
    Since you already have the cpvc-files, I am afraid that you'll have to publish to MP4 and link to the published files, or insert them as animations.
    Lilybiri

  • How can i change button's value with another button?

    You can see in file attach my problem.
    I'm trying change value of button with another button and two button can be off to. But buttons aren't it.
    Can you help me?
    Thanks.
    Attachments:
    Twobuttons.vi ‏27 KB

    Hola Carlos
    No tengo muy claro lo que quieres, pero te envio un ejemplo usando eventos, en que los 2 controles pueden estar a off a la vez pero no a on.
    Mira a ver si es lo que quieres. Usando eventos puedes hacer cualquiera logica.
    Espero que te sirva
    Saludos
    Alipio
    "Qod natura non dat, Salmantica non praestat"
    Attachments:
    Twobuttons.vi ‏31 KB

  • How to enable enter button on keyboard for action on jsp page with adf11g

    hello,
    i have a login page, when i press login button with mouse it is working.
    But i want to click 'enter' button on the keyboard when inputbox is focused.
    For example i entered user and i entered passsword and click 'enter' button on keyboard for login action. How can i do this easily with adf11g ?
    thanks for interests.

    i tried but on af:form we have not defaultAction. i saw, there has defaultCommand i tried this but not acceptable by warning that about, "no id or naming containers". We has an id on command but what is naming containers.
    Other question is,
    How to write javascript on the adf tools? We have not any, "onClick, onPressed vs..".
    Thanks for helps.

  • How to add custom link or button to task details page to open a different t

    Dear All
    In HumanTasks Workflow, On task details page, I want to add a custom link or button. Clicking on this link or button, should load a different task details page.
    The exact business usecase is like this:
    1. We have some human tasks with very detailed payload like about 100 attributes. When the task is submitted for Approval, we send notification emails. These emails shows the Task Details with all these 100 attributes along with standard Approve, Reject buttons etc. NOW in addition to this, we want to add extra custom button/link like Custom View. When we click on this buton or link, it should replace the task details page with the Custom task details page contents. The reason is most of the managers/approvers access their emails on smart phones like iphones. So in these phones, seeing full task details (100 attributes) is very tedious. So we want to provide a simplified view of same task with very minimum attributes like about 10 with Approve, Reject buttons. Now this compact view details will have a button called Detailed View on click on which it loads details page.
    So we want to have 2 pages for a task:
    taskDetails1.jspx -> Has all 100 attributes with a custom button/link called "Compact View". Click on Compact View switch to below page.
    taskCompact1.jspx -> Has only 10 attributes with a custom button/link called "Detailed View". Click on Detailed View switch to above page.
    1. I tried implementing this using the VacationRequest sample where the payload is like creator, startdate, enddate, reason. I already have taskDetails1.jspx page, which shows this information in the email body.
    2. I want to add another button to taskDetails1.jspx so that when I click on it, I want to load a different page like taskCompact.jspx which has only say creator, reason.
    I already added a link and gave the url with parameters like taskId, taskContext etc which I got from bindings, but nothing is displayed when I click on custom button. The taskId, context values are comming correctly in the url.
    So bottom line, what is the URL that I can provide in the task details page, to load a different task details page contents. I want to pass other taskdetails jsp details.
    Please let me know, if there is any other approach to implement this usecase.
    Thanks in advance
    Ravi Jegga

    Hi,
       I am not sure if you can add your own custom buttons to the application tool bar because your table control is in a sub screen area in a standard screen so the menu area would be controlled by the standard screen and not the subscreen , but along side the table control you can give buttons for scrolling and handle the same in the subscreen if you check the FM EXIT_SAPLMEREQ_002 it has a variable IM_UCOMM which would have the ucomm set in the subscreen so here you can handle your user command to scroll on the table control.
    Regards,
    Himanshu

Maybe you are looking for

  • Home Sharing no longer works between iTunes and Apple TV.

    I've been through all the forums, tried all the solutions provided and I have come to the conclusion that Home Sharing just no longer works between iTunes on a PC and my Apple TV.  Does anyone know if this issue will be addressed or should I list my

  • 10.8.2 Server: Ports not open

    Hello I try to configure a ML Server and want it to configured aas a mail server. So I configured DNS names, mail domains, Users and so on. Now when I try to configure a mail client to receive mails via IMAP the server won't respond. So I tested all

  • Opening macbook pro from sleep after some hours, login screen is blurry with progress bar?

    I just got my first 13'' MBP three days ago.  Both last night and the night before I closed the lid to put it to sleep overnight for about 7 hours whilst plugged into the AC as to not drain unnecessary power. In the morning when I opened the lid it w

  • Iphoto wouldn't open in yosemite! asking me for permission repair.

    I'm running Yosemite on an Note Book Pro 17" , 2.66 GHz Intel Core 2 Duo, 8 GB 1067 MHz DDR3 and updated iphoto to 9.6. When trying to open it, it tells me that the permissions for the library are not valid and that I have to repair permissions. I re

  • LMS 4.0 and EoS/EoL Hardware report not working..

    Hi guys, our LMS server has proxy access to the internet but running a EoS/EoL hardware report results in:- No data available in the report. The problem could be any one of the following: 1. No EoS/EoL hardware data available in the LMS database for