Can I use Struts Validator Plugin's html:javascript tag?

Hi:
Is it possible to incorporate the client-side validation using Struts Validator
Plugin's tag <html:javascript>?
i.e.
1) Insert the following tag to A.jsp and define a taglib:
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
<html:javascript formName="aForm" staticJavascript="true"/>
2) Define validation.xml as follows:
<form-validation>
<formset>
<form name="aForm">
<field property="aField"
depends="required">
<msg name="required" key="FieldMissingError"/>
</field>
</form>
</formset>
</form-validation>
3) Insert the onSubmit event in aForm:
<netui:form action="SubmitAForm" style="border-width:1px;" onSubmit="validateAForm(this)">

Instead of writing something like this -
<p class="logos">Logo1<a href="...></a></p>
<p class="logos">Logo2<a href="...></a></p>
<p class="logos">Logo3<a href="...></a></p>
<p class="logos">Logo4<a href="...></a></p>
<p class="logos">Logo5<a href="...></a></p>
<p class="logos">Logo6<a href="...></a></p>
Why not have something like this -
<div id="logodiv">
<p>Logo1<a href="...></a></p>
<p>Logo2<a href="...></a></p>
<p>Logo3<a href="...></a></p>
<p>Logo4<a href="...></a></p>
<p>Logo5<a href="...></a></p>
<p>Logo6<a href="...></a></p>
</div>
with CSS like this -
#logodiv p { ... }

Similar Messages

  • I uploaded a mp4, but I can't use the URL in a HTML video-tag

    I uploaded a mp4 video via the portal to my trial version Azure account.  I then published it.  I then encoded it.  This produced an output file.  I then published that output file.  Then I copied the URL, and tried to play it in
    my browser by pasting it in the address bar.  I got an error that I can't explain - can you?:
    <?xml version="1.0" encoding="UTF-8"?>
    -<Error><Code>AuthenticationFailed</Code><Message>Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature. RequestId:1190a24a-860d-4c26-9948-6334393e4e9a Time:2013-10-07T19:41:29.5702692Z</Message><AuthenticationErrorDetail>Signature fields not well formed.</AuthenticationErrorDetail></Error>

    I found out what is happening.  When my website asks the user for his URL, which can be a YouTube URL, or a URL of a video / audio on a server, it checks that the URL is valid, and there really is a video or audio at that address.   This does
    not work with Azure. 
    Public Function UrlExists(ByVal url As String, ByRef Explanation As String) As Boolean
    Dim URLReq As HttpWebRequest
    Dim URLRes As HttpWebResponse
    Explanation = ""
    Try
    URLReq = CType(WebRequest.Create(url), HttpWebRequest)
    URLRes = CType(URLReq.GetResponse(), HttpWebResponse)
    If (URLRes.StatusCode = HttpStatusCode.OK) Then
    Return True
    End If
    Catch ex As Exception
    Explanation = ex.Message
    Return False
    End Try
    Return (False)
    End Function
    The code gives the (403) forbidden error in that case. I can suppress this test whenever the input is an Azure URL, but it does raise a question - is there any way to test that the azure URL that the user is using is real?
    On another topic, my website also plays audio mp3 files, but Azure Media Services doesn't seem to be able to cope with those.
    Thanks,
    Gideon

  • Can i using Adobe Reader plugin to generate signature in Reader X?

    I noticed that user can add annotation in Reader X, so i want to know if i can add signature or custom annotation in Reader X by my plug in?
    Thanks in advance.

    If the PDF is Reader Extended, yes.
    From: Adobe Forums <[email protected]<mailto:[email protected]>>
    Reply-To: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Date: Thu, 3 Nov 2011 05:48:36 -0700
    To: Leonard Rosenthol <[email protected]<mailto:[email protected]>>
    Subject: Can i using Adobe Reader plugin to generate signature in Reader X?
    Can i using Adobe Reader plugin to generate signature in Reader X?
    created by ChromeUser<http://forums.adobe.com/people/ChromeUser> in Acrobat SDK - View the full discussion<http://forums.adobe.com/message/4005332#4005332

  • Validate integer with a comma thousands seperator using struts Validator

    Using struts validator.
    have to validate the user entered value.
    The value entered should be a positive integer with a comma thousands seperator. the number need not be in thousands.
    I have as below to check for positive integer without comma seperator. but not sure how to validate if the user entered value with a comma seperator?
    i.e value like 25,349 // how to validate this?
    <field property="hrs" depends="integer,validwhen">
    <msg name="integer" key="errors.notvalid"/>
    <msg name="validwhen" key="errors.notvalid"/>
    <var>
    <var-name>test</var-name>
    <var-value>(*this* >= 0)</var-value>
    </var>
    </field>
    how to validate the user entered value with a comma seperator? Thanks.

    Found this in Struts' Building View Components section: Note: If your required form property is one of the Java object representations of primitive types (ie. java.lang.Integer), you must set the ActionServlet's convertNull init. parameter to true. Failing to do this will result in the required validation not being performed on that field because it will default to 0. This seems to be part of my problem. With it turned on, Validator picks up that the value is required. Now to figure out the issue with putting in a double value instead of an Integer.

  • Can I use Struts with Oracle9i AS?

    I am not using Tomcat, so I am wondering can I use Struts with Oracle9i AS instead of Tomcat?
    Thanks for your help!

    Struts can be used with any J2EE compliant app server. It's not Tomcat specific in any way. You just have to deploy it properly.

  • Can't get Struts validator to work with ADF 10.1.3.36.73 in Jdev 10.1.3.0.4

    I am attempting to use the "How to Use the Struts Validator Plug-in with JDeveloper 10g" written by Duncan in a JDeveloper 10.1.3.0.4 application with standard model/ViewController projects. I am using JSP/Struts/ADF technologies.
    I have performed the below:
    Struts Config:
    <form-bean name="surveyDataForm" type="oracle.adf.controller.v2.struts.forms.BindingContainerValidationForm" className="oracle.adf.controller.struts.forms.BindingContainerValidationFormConfig"/>
    <plug-in className="org.apache.struts.validator.ValidatorPlugIn">
    <set-property property="pathnames" value="/WEB-INF/validator-rules.xml,/WEB-INF/validation.xml"/>
    </plug-in>
    In the validation.xml:
    <!DOCTYPE form-validation
    PUBLIC "-//Apache Software Foundation//
    DTD Commons Validator Rules
    Configuration 1.0//EN"
    "http://jakarta.apache.org/
    commons/dtds/validator_1_0.dtd">
    <form-validations>
    <formset>
    <form name="surveyDataForm">
    <field property="EmpName" depends="required">
    <arg0 key="survey.name"/>
    </field>
    <field property="DateOfService" depends="required">
    <arg0 key="survey.service.date"/>
    </field>
    <field property="ReloContractor" depends="required">
    <arg0 key="survey.relo.contract"/>
    </field>
    </form>
    </formset>
    </form-validations>
    And in my JSP, I have:
    <script type="text/javascript">
    <html:javascript formName="surveyDataForm"/>
    </script>
    <html:form action="/survey.do" onsubmit="return validateSurveyDataForm(this)">
    (The validation-rules.xml was copied from the JDev install jakarta-struts folder).
    I can now see the Javascript showing up in my JSP page, but I don't have a method generated for validateSurveyDataForm or any form like this. I didn't think I had to create this. Also, even without the Javascript, the validator is not called because the JBO errors for required are still showing up. The only thing I have not done is included the modelReference in the Form Bean definition in the struts-config.xml. I'm not sure this will work, or even what to populate this with, as the UIModel.xml is replaced by PageDef.xml and DataBindings.cpx changes.
    Anyone have any ideas?
    Shay

    Only have one network; wireless. On it's own, the MacBook can use wifi to surf the net and Apple TV can watch movie previews from Apple via wifi.
    It did work about two months ago. I haven't used it since then for home sharing but have used the Apple TV on its own.
    I read the Troubleshooting page on Apple Support. It involves turning various things on and off, which I did

  • Lost Locale problem with Struts/Validator Plugin client side validation

    Has anyone else had problems losing the locale in the generated javascript ?
    With the following tiles def and layout (nmLayout.jsp) I can get the locale from the browser OK with
    <html:html locale="true"> and it works ok for imported text (picking up the enCA properties file. But when the javascript executes in the provisionCustomer.jsp the locale reverts to the default property file.
    The Strruts Validator loses the locale of the containing html page. (I do a show source.) I've tried an explicit <fmt:setLocale value="en_CA" scope="session"/> but this has no effect either.
    Thanks
    Bruce
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE tiles-definitions PUBLIC
    "-//Apache Software Foundation//DTD Tiles Configuration 1.1//EN"
    "http://jakarta.apache.org/struts/dtds/tiles-config_1_1.dtd">
    <!--
    Tiles definition file
    -->
    <tiles-definitions>
    <definition name="nm.MainMenu" path="/nmLayout.jsp">
    <put name="pageTitle" value="Distibutel Network Management" />
    <put name="header" value="header.jsp" />
    <put name="body" value="mainMenuBody.jsp" />
    <put name="footer" value="footer.jsp" />
    </definition>
    <definition name="nm.customer" path="/nmLayout.jsp">
    <put name="pageTitle" value="Distibutel Network Management -- Provision Customer" />
    <put name="header" value="header.jsp" />
    <put name="body" value="provisionCustomer.jsp" />
    <put name="footer" value="footer.jsp" />
    </definition>
    <!-- sample tiles definitions
    <definition name=".mainLayout" path="/common/layouts/classicLayout.jsp">
    <put name="title" value="Sample Page Title" />
    <put name="header" value="/common/header.jsp" />
    <put name="menu" value=".mainMenu" />
    <put name="footer" value="/common/footer.jsp" />
    <put name="body" value=".portal.body" />
    </definition>
    <definition name=".mainMenu" path="/common/layouts/vboxLayout.jsp" >
    <putList name="list" >
    <add value=".menu.links" />
    <add value=".menu.taglib.references" />
    <add value=".menu.printer.friendly" />
    <add value=".menu.old.documents" />
    </putList>
    </definition>
    <definition name="aPage" extends=".mainLayout">
    <put name="title" value="Another Title" />
    <put name="body" value=".aPage.body" />
    </definition>
    end samples -->
    <definition name="${YOUR_DEFINITION_HERE}">
    </definition>
    </tiles-definitions>
    nmLayout.jsp :
    <%@ page contentType="text/html; charset=UTF-8" %>
    <%@ taglib uri="/WEB-INF/struts-tiles.tld" prefix="tiles"%>
    <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
    <%@ taglib uri="http://struts-menu.sf.net/tag" prefix="menu" %>
    <%@ taglib uri="http://struts-menu.sf.net/tag-el" prefix="menu-el" %>
    <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
    <%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt" %>
    <%@ taglib uri="http://java.sun.com/jstl/sql" prefix="sql" %>
    <html:html locale="true">
    <head>
    <title><tiles:getAsString name="pageTitle"/></title>
    <link rel="stylesheet" type="text/css" media="screen"
    href="styles/global.css" />
    <meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
    <style type="text/css">
    body { background: AliceBlue; }
    #appcontent {
                             position:absolute;
                             top: 300px;
                             left: 200px;
                   h1 {color: red;}
                   h2 {color: green;}
    </style>
    </head>
    <body topmargin="0" leftmargin="0">
    <!--
         <fmt:setBundle basename="ApplicationResources"/>
         <fmt:setLocale value="en_CA" scope="session"/>
    -->     
         <script type="text/javascript" src="./scripts/coolmenus3.js"></script>
         <!-- Custom config for this example -->
         <script type="text/javascript" src="./scripts/coolmenu2-config.js"></script>
         <menu:useMenuDisplayer name="CoolMenu"
         bundle="org.apache.struts.action.MESSAGE">
         <menu:displayMenu name="ToDoListMenuProvision"/>
         </menu:useMenuDisplayer>
    <table>
    <tr>
    <td><tiles:insert attribute="header"/></td>
    </tr>
    <tr>
    <td><div id="appcontent"><tiles:insert attribute="body"/></div></td>
    </tr>
    <tr>
    <td><tiles:insert attribute="footer"/></td>
    </tr>
    </table>
    </body>
    </html:html>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt" %>
    <html:javascript formName="customerForm" />
    <html:errors/>
    <h1><fmt:message key="ProvisionCustomer.title"/></h1>
    <html:form action="/saveCustomer"
    onsubmit="return validateCustomerForm(this)" >
    <table>
    <tr>
    <td><h2><fmt:message key="ProvisionCustomer.TenantName"/>:</h2></td><td> <html:text property="tenantName"/></td>
    </tr>
    <tr>
    <td><h2><fmt:message key="ProvisionCustomer.TenantID"/>:</h2></td><td> <html:text property="tenantID"/></td>
    </tr>
    <tr>
    <td><h2><fmt:message key="ProvisionCustomer.CustomerID"/>:</h2></td><td> <html:text property="customerID"/></td>
    <td></td><td><input type="submit" value=<fmt:message key="ProvisionCustomer.insert"/>></td>
    </tr>
    </table>
    </html:form>

    you can always get the locale from the request like so....
    <html>
    <%
    request.getLocale().toString();
    %>
    </html>
    you can even stuff it into javascript like so....
    <html>
    <head>
    <script>
    function foo() {
    var locale = '<%=request.getLocale().toString()%>';
    </script>
    </head>
    </html>
    then you can have access to it in javascript code.

  • Can we use Struts 1.2.8 with Oracle AS 10.1.2?

    Hi all,
    May I know whether we can use Struts 1.2.8 under Oracle AS 10.1.2? Does it conflict with any library used by Oracle AS 10.1.2 already?
    Thanks and regards,
    William

    Hi William,
    I am using Struts 1.2.8 in Oracle JDeveloper 10.1.2. I face no problems with it. But make sure that yor are not adding the Library called Struts Runtime provided by JDeveloper to your project. Just add the Srtuts 1.2.8 jar files to you Project Additional Classpath or go to Tools --> Manage Libraries and add these Struts 1.2.8 jar files there and use this in your Project Libraries.
    Hope it helps,
    Cheers,
    Aravind.

  • Use of titleKey attribute in html:select tag

    Hi,
    There is one "titleKey" attribute to create mouse over pop-up texts taking key values from property files in case of i18n. It works for every struts specific tag like <html:text titleKey="help.rmc.name"/> or <html:checkbox titleKey="help.rmc.name"/> except for <html:select> tag which is used for creating combo box or list box. But this tag contains the titleKey attribute.
    Please give me some suggestions how to implement this mouse over pop-up texts in case of <html:select> tag

    Hi,
    There is one "titleKey" attribute to create mouse over pop-up texts taking key values from property files in case of i18n. It works for every struts specific tag like <html:text titleKey="help.rmc.name"/> or <html:checkbox titleKey="help.rmc.name"/> except for <html:select> tag which is used for creating combo box or list box. But this tag contains the titleKey attribute.
    Please give me some suggestions how to implement this mouse over pop-up texts in case of <html:select> tag

  • When to use Flex Or Flash Or HTML-Javascript

    I am Experimenting with Adobe AIR. I know AIR Applications
    can be developed either using Html-Javascript Or Flex Or Flash.
    But can anybody HELP me understand when do i exactly use Flex
    or HTML-JS.
    Well i know one of the reason to use Flex is to build
    RIA's.What are the other Possible reasons ?? can i draw a Decision
    Boundry between them??

    The best reason to choose one tool over the other is that you
    have something working in that language already, and are just
    extending it into the AIR world.
    If you're starting a new project, you then have to balance
    tools you have and know how to use against the strengths of the
    tools. A tool you don't know has to have some pretty compelling
    strengths to make you take the time to learn it, unless you're just
    doing it for fun. If not for fun, the effort has to pay off, yes?
    Very generally speaking, here are the strengths of the tools,
    as I see it.
    For HTML + Javascript, just look at what you see on the web
    today. People are pushing browsers pretty hard these days with web
    apps, so that gives you a good first-order idea of the power of
    this tool set. The AIR environment does give you some more power,
    not just in the AIR APIs, but also in having a single modern
    browser to develop for, so you don't have to limit yourself to IE6
    compatible code. Still, it's not yet the equal of the other tools
    in some areas.
    Flash's main advantage over the others is in applications
    with lots of graphics and animation. The reason for this is purely
    because that's what the Flash authoring environment is geared to
    produce. It's not got a very good ActionScript editor, and as a
    consequence there's a practical limit on how much code you want to
    write in a given project. It's not a question of whether you
    can write a 20,000 line ActionScript program within the
    Flash environment, it's a question of whether it's better done in
    another tool.
    One of the best "other tools" when you end up with lots of
    code is Flex. With the "Builder", you get Ecipse, and without, you
    are presumably using some other worthy programming environment.
    But, you give up the graphic and animation tools from Flash, and
    you give up a lot of the simplicity of HTML + Javascript.
    You can combine them, of course. You could build a whizzy GUI
    control in Flash to use in a Flex application which is hosted
    inside a web page, for instance.

  • How can I use my iRig plugin for guitar/keyboard in garageband 10.0.2??

    Hey,
    I'm having A LOT of trouble with the newest version of garageband. I recently updated it so I now have version 10.0.2, starting of with a loooot of trouble getting it to finish downloading/installing. I kept saying that it couldn't finish because I had no internet connection, although I did. SO, now it's finally succesfully downloaded but I seem to have trouble getting my iRig connected - I've used it a lot in the old version of garageband, and never had any problems with it here. I have the iRig adapter with a 3,5 mm jack in one end (that goes into my Macbook computer) and in the other end i simply put in the cable and connect it with my guitar/keyboard. It does not seem to work though - does anyone have the same problems or can anyone tell me how to make it work? :-( I've tried to both make a "real sound track" and a "guitar track" but neither works..

    Please see http://www.oracle.com/technology/products/forms/htdocs/10g/clientsod_forms10g.html
    while you MAY get it to work this is not certified or supported to run 1.1.8 Jinit.
    Thanks
    Grant Ronald
    Oracle Product Management

  • How can I use an ISAPI plugin with iPlanet?

    I understand that the iPlanet web server does not directly support ISAPI. I would consider rewriting the ISAPI module using NSAPI if I had access to the module's source code, but that is not currently feasible.
    Does any kind of NSAPI plugin currently exist that can act as a wrapper for ISAPI? Are there any third-party solutions, perhaps an ISAPI emulator of some sort? Are there other possibilities or resources that might be helpful?
    Thanks for any assistance you might be able to offer!

    <http://support.apple.com/kb/HT2803>
    <http://www.ebay.com/bhp/apple-cinema-display-90w-power-adapter>

  • Can I use Flash Player plugin version 11.2.202.228 with my Firefox ESR 10.0.7 instead of the most current Flash Player plugin?

    I am trying the Tor web browser software pack and it comes with Firefox ESR 10.0.7.
    Right now, I'm trying to install a Flash Player plugin because it doesn't have one in this Firefox ESR 10.0.7 already, or this browser just doesn't see the slightly older Flash Player 11.2.202.228 plugin that I already have already installed on this machine.
    '''Is there a way to make this Firefox ESR 10.0.7 browser see the Flash Player plugin 11.2.202.228 that I already have installed on this machine without installing the newest, possibly problematic Flash Player plugin?'''
    I already have the Flash Player 11.2.202.228 plugin installed on this machine, a PC with Windows 7 ULT, because the most current versions of the Flash Player plugin had some problems and they wouldn't allow Flash content to play at all, so I reverted back to a slightly older version of the Flash Player that was reliable, crash free, and most importantly, it works.
    But when I try to play any Flash content in this Tor-Firefox ESR 10.0.7 browser it tells me I don't have a Flash Player on this machine, or installed as a browser plugin or add-on, and it wants me to install the most current Flash Player on this machine, which I DO NOT want to do for the reasons I stated above.
    My other Firefox browser, along with Google's newest Chrome browser and a newer version of the Safari browser for Windows, plus an older Internet Explorer 8, all WORK JUST FINE with the Flash Player 11.2.202.228 that I have installed on this computer and Google Chrome and Safari didn't even require having newer Flash Player plugins installed at all... they just see the Flash Player 11.2.202.228 plugin that I already have on this machine and they play all Flash content perfectly.
    So can I just make this Tor-Firefox ESR 10.0.7 browser see the existing Flash Player 11.2.202.228 plugin that I already have on this machine?... and if so, how do I do that?
    Thanks for any help.
    Also, I'm not able to find an actual community help forum for Tor, even via their "Torproject.org" website... is there one?
    Thanks,
    numetro

    You should actually be using Flash 10.3 (11.2 is insecure).[[Flash 11.3 doesn't load video in Firefox#w_solution-2-downgrade-flash|Solution 2: Downgrade Flash]].
    Also, is there a reason you are using Firefox ESR? It's mean for organizations, and doesn't include all the security and stability fixes that Firefox latest (15.0.1) has.

  • Can I use RH to create an HTML newsletter?

    My company produces a periodic electronic newsletter, which
    is mailed to subscribers as an HTML file embedded in an e-mail
    message. The content is typically written by an employee in Word,
    after which I edit the document and transfer the contents to the
    HTML file, which I edit in Macromedia HomeSite+.
    Because some of these newsletters are long, the product
    manager suggested reducing each article to a short introductory
    blurb followed by a "click here" link that would reveal the rest of
    the story. (We all recognize this a a drop-down text hotspot, of
    course.) I got the bright idea that I'd try to create this
    functionality in RoboHelp. Not only could I include the hotspots,
    but I'd be able to edit content in a WYSIWYG interface rather than
    HomeSite's code view, which makes cutting and pasting laborious,
    given the inline formatting I typically need to apply.
    Well, I managed to create a nice template for the newsletter,
    and I defined all the styles I needed, and I created the necessary
    hotspots. When I generated WebHelp and viewed the results, the file
    looked great. But when I attempted to send the HTM file to myself
    via Outlook Express (Message | New Message Using | Web Page...), I
    ran into two problems:
    1. The styles I had defined were not used.
    2. The hotspots didn't work.
    I fixed the first problem by pasting the contents of the CSS
    file into the HTM file. But I can't get the hotspots to work in the
    e-mail message: when I click a hotspot, my browser attempts to open
    the information in a new window, which doesn't work.
    So:
    1. Has anyone tried to use RoboHelp like this?
    2. Can anyone fix the hotspot problem for me?
    3. If RH isn't a good tool for the job, can anyone point me
    in a different direction?
    Thanks.

    Probably you need some javascripts that appear in the WebHelp
    output folder. You'd have to zip up and send the entire package,
    and the reader would have to unzip and extract it before opening
    the topic.
    You could send the WebHelp output html page file alone. It
    can't have any graphics or require other external resources. That
    means your dropdowns won't work, unless you embed the appropriate
    javascripts in the file, which would be a hard thing to do.
    As you discovered, you must embed the style sheet within the
    file, or at least enough of it to take care of styles you applied.
    Another angle would be to make all text Normal style and
    apply in-line or embedded styles for variations. The RH help topics
    talk about this. It probably will read OK, depending on the
    reader's browser.
    Here's a way to do it without dropdowns or popups:
    Put headlines only, or the first few paragraphs at the
    beginning of the newsletter. You could use the template to organize
    them. Insert a bookmark (anchor) with each item (explained later).
    Add the "more info" sections -- call them "jumps" -- after
    all the headlines, or after the template, with a bookmark at the
    beginning of each one.
    With each headline include a "Read more" text link to the
    appropriate bookmark below. At the end of each jump, insert a "Back
    to top" text link to a the appropriate bookmark.
    Hope this helps.
    Harvey

  • Why i can not use f:param inside an html form?

    Hi
    Thank you for reading my post
    what is wrong with the following code ?
    <form action="https://www.3rdpartyWeb.com/CardServices/controller"
    method="GET" enctype="multipart/form-data"
                           name="submissionform">
        <f:param value="#{Session.MID}" name="MID" id="MID"/>
        <f:param value="#{ButtonsActionListener.reservationNumber}"
    name="ResNum" id="ResNum"/>
        <f:param value="#{Session.redirectURL}" name="RedirectURL"
    id="RedirectURL"/>
        <f:param value="#{ButtonsActionListener.total_price}" name="Amount"
    id="Amount"/>
                           </form>
        <SCRIPT type="text/javascript">
    document.forms["submissionform"].submit();
    </SCRIPT>while both ButtonsActionListener , Session are managed beans ,
    my question is , does the above form will post correctly to the named
    url along with parameters ?
    if not , how i can make this possible , i should say that i submit the
    form using javascript and no user interaction should be involved.
    do i used a correct design for this ?
    I should say that : i used some java script to show a progress bar in
    this page until the page submit to 3rd party web site.
    thanks

    Hi,
    you are mixing technologies here. You have a html form element that you want a JSF element to provide the input for.
    Frank

Maybe you are looking for

  • Change history of the customer master

    Hi Gurus, need help. We have a customer requirement where a customer was assigned to multiple sales areas before, but the customer assignment to one of the sales areas is deleted. Where is the place where we can see the relavant change history for th

  • Yosemite thumbnail icons missing

    Since upgrading to Yosemite in my early-2013 MBP 13" Retina, most of the identifying icons on my desktop thumbnails (the row of open desktops arranged at the top of the screen when three-finger sweeping up on the touchpad) are missing, even for Apple

  • /src/core/pkg is missing

    Im trying to install Arch Linux, In the installation process, during step one i am selecting the source. it says 'package directory /src/core/pkg is missing´. what does that mean? the installation then fails. what´s the problem?

  • Can I play Unreal Tournament 2003?

    So I have a macbook (2 GHz Intel Core Duo, 2gig Ram), and I just installed windows. Now I want to play unreal tournament 2003. I looked at the system requirements and it says it need 64mb of video ram and 128 system ram. I am wondering about the macb

  • Disappearing playlists on iPhone 5

    I'm not sure if it's the iOS 6 or the iPhone 5, per say, but I have uploaded my entire music collection to a 64G iPhone 5 many times now, and after syncing it all seems to vanish off the phone.  Not every day.  Just randomly.  This happened with anot