JSTL checkbox persisting

I'm having problems with a checkbox always being checked. no matter if I have unchecked it or not when my form is returned to my action class the checkbox is always on. I have seen several threads mentioning this, but none seemed to give me the answer I was looking for. Can anyone look at this and tell me what they see wrong?
I basically need a way to change the value of the form while it is still on the jsp...
I have tried calling a function on the onclick event... but it won't even call the function?
Any help would be greatly appreciated.
<td><fmt:message key="VTFHLForm.crossPlan" />
      <INPUT type="checkbox" name="crossPlan"  
          <c:if test="${session.VTFHLForm.crossPlan eq on}">checked</c:if>/>          
</td>

ok I just changed the way I was doing this... may not be better but I was at witts end with it.... I have set it up to use 0 and 1 for the values of the check box... here is a piece of my jsp code.
<%!
String codeVal = null;
String chkBxVal = null;
%>
<table class="OmniDlgTable">
     <tr>
          <td>
          <table>
               <tr>
                    <td><INPUT type="submit" name="MoreUp" align="left"
                         value="<fmt:message key='Browse.moreup' />"
                         onclick="buttonClick(this);" /></td>
                    <td>
                         <fmt:message key="VTFHLForm.crossPlan" />
                         <%chkBxVal = VTFHLForm.getCrossPlan();%>
                         <INPUT type="hidden" name="crossPlan" value="<%=chkBxVal%>" />
                         <%=chkBxVal%>
                         <%if (chkBxVal != null && chkBxVal.equals("1")) {%>
                              <INPUT type="checkbox" checked name="crossPlan" onClick="return toggleCheckBoxValue(this);" /> 
                         <%} else {%>
                            <INPUT type="checkbox" name="crossPlan" onClick="return toggleCheckBoxValue(this);" /> 
                         <%}%>the function toggleCheckBoxValue just changes the value of chkBxVal to 0 or 1... it is being called.
but when I get back to the action class the crossPlan value is still 0 even after I have checked it.
here is my code for the function
<script LANGUAGE="JavaScript">
           function toggleCheckBoxValue(chkBox){
                alert("here");
             if(chkBox.checked == true){//was unchecked and is checked now, so set the value to 1
             alert("here1");
                chkBox.value= 1;       
             }else{          
             alert("here2"); 
                chkBox.value = 0;
     </script>I have the alerts in there just to verify that it is stepping in... and it is...

Similar Messages

  • Checkboxes persistance in PCR development

    Hello ALL,
    I am using checkbox group within JSP iView in the PCR development in MSS. Business package is 60.1.
    I am unable to persist the checkboxes data (if checked
    by user should remain checked after roundtrip.)
    What data element should be used for checkboxes while defining characteristics?
    What data is available in backend for checkboxes?
    The Development guide in section 7.6 says that checkboxes are never used in the PCR framework.
    Can anybody suggest on this by examples?

    Here is a workaround for the problem you are facing with checkboxes.
    The sample code below could be used for every checkbox on the PCR form. When the checkbox is checked, a values of 'X' is passed to R/3 and when left unchecked it's blank. In R/3, this should be handled appropriately.
    CHKBOX_CHKT_NAME is the name of the characteristic as defined in the scenario.
    <input type="hidden" id="CHKBOX_CHKT_NAME" name="CHKBOX_CHKT_NAME" value='<%= ISR.getValue("CHKBOX_CHKT_NAME") %>'>
    <% if ( ( ISR.getValue("CHKBOX_CHKT_NAME").equalsIgnoreCase("X")) ) { %>
                             <hbj:checkbox
                                     id="CHKBOX_CHKT_NAME"
                                     checked="true"
                                      />
    <% } else { %>
                             <hbj:checkbox
                                     id="CHKBOX_CHKT_NAME"
                                     checked="false" />
    <% } %>

  • Alternative data source for EO and VO

    It is usually the requirement to customize the Entity Objects and View Objects so that they can work with data sources different than database schema objects (tables, views,...), some examples are Web Service or Oracle Coherence cache.
    I have developed mini projects using both data sources mentioned, by overriding relevant methods in the implementation EO and VO classes. There is one limitation I realize when developing these projects. Although both the EO and VO rely directly and completely on the alternative data sources (Web Service and Coherence), still there must be a schema object existing in the local database to back the EO and VO. This is because I still have to call super methods from ViewObjImpl and EntityImpl, and these methods are still doing some operations with the schema objects, and without these objects, ORA-00942: table or view does not exist will be thrown.
    For example, after overriding executeQueryForCollection in ViewObjImpl to take data from web service, it is still necessary to call super.executeQueryForCollection so that data will actually appear on the web page, and without the schema objects, this method will throw ORA-00942.
    My question is, is there any way to completely eliminate the need of schema objects in EO and VO? I know the answer (if exist) will be complicated but I'm willing to explore.
    Thanks.

    Thanks Timo,
    I figured out how to achieve this.
    Basically when creating the EO, I did not specify the schema object in the first step, and for each attribute that I created in the wizard, I also unchecked the checkbox "persistent". I could then create VO based on this EO and override all the necessary methods in the EO and VO so they can do CRUD operations via Web Service.
    In the case of only creating an VO (read-only, for retrieving/reading data only), I could also mark each attribute as "transient" by checking a checkbox in the creation wizard.
    Edited by: nhd on May 7, 2013 8:01 PM

  • How to handle html:multibox in jsp with ADF Data Binding

    Hi,
    I like to use html:multibox feature in my jsp with ADF Data Binding. I am able to retrieve checked values in the DataForwardAction form. However, when the page is refreshed, the checkboxes are not persistent and yet an error showing
    "JBO-25009: unable to create object type ....oracle.jbo.domain.Array" appears.
    Here is my jsp code:
    <c:forEach var="type" items="${bindings.SystemTypeView1.rangeSet}">
    <c:if test="${Row['SystemGroup'] == type['SystemGroup']}">
    <br>
    <html:multibox property="selectedSystemType">
    <c:out value="${type.SystemType}"/>
    </html:multibox>
    <c:out value="${type.TypeDesc}"/>
    </c:if>
    </c:forEach>
    Can anyone tell me how to handle html:multibox with ADF Data Binding and make the checkboxes persistent.

    Generally this can be done.
    I see a problem with your use case, which has nothing to do with jdev or java:
    How do you identify the user when he comes back to finish the form?
    For this you can't use information like session cookie or IP address because they change.
    So you have to save some information about the user which lets you identify him when he comes back. All other requirements can be implemented by ADF.
    Timo

  • Problems with ADF auto submit.

    Hi,
    I am new to ADF application development and I face an issue while working with the auto submit attribute.Please help me if I am doing anything wrong. The scenario is as follows....
    I have a adf table where columns values needs to be entered by the user thorough LOV, inputtext box and checkboxes. For the sake off validation to occur while typing manually in the lov fields we have included auto submit in LOV field. We have set auto submit to true to other fields also to set the values as in while we change it since it was refreshing the values to it previous state/empty when the LOV field get loaded.
    Now the problem is that when I change value in a text field and without shifting the focus (the auto submit is not triggered yet), I click the check box (now auto submit is triggered for the input text box) to deselect/select. What happens is that the checkbox gets refreshed back to it previous state (since the change event for the input box is in progress when I clicked the checkbox).
    What I do have in my code when I debug is the getter setter methods in the viewRowImpl class for that table view object is called 5-6 times before it renders the page. I tried to figure it out by understanding the phases in the life cycle but I couldnt get it right......
    I like to add that i didnt implement any value change listener thinking it will increase complexity. Correct me if I am wrong.....
    So pls help me with these .
    1. how to make the checkbox persist even if I change it before the change event autoSubmit process is in progress for other fields.
    2. Why is the getter methods called 5-6 time before it get the page rendered ?.
    3. Is it a mistake I did implement the valueChangeListener to set the values.
    4. Finally is there any alternate way to implement the above scenario more efficiently.
    thank you.....

    Hi subu,
    I am sorry that have not got it right.... let me explain in with an example code.
    <af:table value="............"
    var="row"
    rows="..........."
    selectedRowKeys="........................."
    selectionListener="........................."
    rowSelection="single" id="t1" styleClass="SimpleTable"
    contentDelivery="immediate"
    columnSelection="none"
    disableColumnReordering="true"
    horizontalGridVisible="false"
    verticalGridVisible="false" dontPersist="ALL"
    partialTriggers="........................."
    autoHeightRows="5"
    binding=".........................">
    <af:column headerText="..............................." id="c6" width="45">
    <af:inputListOfValues id="bankTypeId" value="......" required="......" columns="...." autoSubmit="true">
    <f:validator binding="..............................."/>
    </af:inputListOfValues>
    </af:column>
    <af:column sortProperty="....," sortable="false" id="c3" width="75">
    <af:inputText value="....." required="....." autoSubmit="true" id="it23" >
    <f:validator binding="...."/>
    </af:inputText>
    </af:column>
    <af:column sortProperty="PayableByBacs" sortable="false" headerText="......." id="c7" width="60" align="center">
    <af:selectBooleanCheckbox value="...." autoSubmit="true" id="sbc2"/>
    </af:column>
    </af:table>
    Now the when I change value in 'bankTypeId' (LOV) the other pre-entered values gets refreshed even though they have no partial trigger. So I have included the autosubmit to the checkbox and text field too.....
    Now the value stays when I change the LOV field value. But When I enter a new value in the text field (it23) and without shifting the focus I change the selectBooleanCheckbox value. It load for a second and the value gets changed to previous value.
    I think now I made myself little bit more clearer.... Pls do tell if there needs any more clarity.
    Thank you.......

  • My Threads Takes 90 secs to Complete or Timeout

    Occasionally works in a few seconds, but 80% of the time very, very slow or it times out.  When it works, it is for a few days, then it goes back to the slow/fail mode.
    Browser IE 11.
    Am I doing anything wrong?
    Thanks.
    Kalman Toth Database & OLAP Architect
    SELECT Video Tutorials 4 Hours
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

    no way to filter down to say one month.
    I don't have any Alerts any more but I imagine that they have an RSS feed?  You could have more control over them that way.
    Press a link which would take me to my last page of alerts (currently this is not an options) then using say checkboxes mark them, press a button to unsubscribe.
    I thought that is what they do have--paged lists which you can only operate on one page at a time.  In that case there may be an implicit &page= variable in the URL you could try exploiting.  The most glaring deficiency in the UX about Alerts
    is that you can't toggle them from a message list, e.g. the My Threads list, where you can see the icon but do nothing with until you open the thread. 
    At one point there was a bug in here which made the Alert me checkbox persist no matter how hard I tried to keep it off.  I'm turning it on again now so I can see how it really works but I certainly hope it isn't as much work to undo as I remember.
    Robert Aldwinckle
    Edit:  no RSS feed for Alerts at least not with the URL that I constructed from the one for My Threads.  E.g. just overtype threads in that URL with alerts.  Result:  an apparent redirect to the normal Alerts page, ignoring all the parameters
    but leaving them in the Address bar.

  • JSTL test if checkbox is checked

    Hello all,
    I hope this question isn't too amateurish to answer, but it is something that has been troubling me.
    I have a table with two columns. In the first column i've got a form checkbox with id="myCheckbox" and in the second column I have a bit of text that I only want displayed if the checkbox is checked. I mostly had this working through a combination of a small javascript function that was set to the onclick parameter of the checkbox to toggle between hiding and displaying the text while having the text initialize to not be displayed (with style="display:none")...
    ...but the problem was that if there was an error being returned in the form, the page would reload with the text hidden, but the checkbox checked. Now I could get around this by re-initializing the checkbox to being unchecked... but that's not the solution i'm looking for. Ideally, if an error were returned and the page reloaded I would like the checkbox to be checked and the text to be displayed.
    I was hoping that perhaps I could use some JSTL magic to form a statement around the text... something to the effect of <c:if test="${myCheckbox.checked}"> display text </c:if> . But that isn't working for me. Am I close in my thinking? I think my thinking is mostly good, it's the implementation that is not good. Is there any way to perform such a test?
    Let me know if anyone can help... thanks,
    Skylar

    Hmm, that is helpful, but it doesn't get me quite there.
    I was unfamiliar with the "not empty param" test, so thank you. As I suspected after reading your post, however, the parameter is not set until the form is submitted. I think I may have to either use a combo of your suggestion along with my previous javascript function... or add additional functionality to my script to maintain state between page reloads.
    Does this make sense? Again, thanks evnafets.Let me know if you (or anyone else!) have any other ideas.

  • Persistent problem in checkboxes

    Hi,
    After selecting checkboxes in my basic alv list display, it will goes to detail list.
    when i come back to the basic alv list,the check boxes are still in checked mode.how could these check boxes can be made it to unselect mode automatically?
    Thanks

    hi bala
    whenever a checkbox is checked it will have 'X' corresponding to it in an internal table
    now loop at that internal table set that field to ' ' . this will uncheck it
    regards
    navjot
    reward accordingly

  • If statement in jstl

    I am new to jstl and I wrote the code for editing the information and i want the visible checkbox is checked if in the database it is visible or not checked in the checkbox if it is invisible but not working help me guys
    <div>
    <span class="label">Visible:</span>
    <input type="checkbox" name="visible"
    <c:if test="${ad.visible}">value="checked" </c:if>>
    </div>

    http://www.w3schools.com/tags/tag_input.asp
      <input type="checkbox" name="visible"
        <c:if test="${ad.visible}">checked="checked" </c:if>>

  • Jstl c:if test

    I have put a string in my request:
    pageContext.getRequest().setAttribute("photoAccountmanager", "SUCCESS");
    How can I retrieve the string in jstl? The next statement doesn't work:
    <c:if test="${request.photoAccountmanager == 'SUCCESS'}" >
    </c:if>

    The proper EL way of retrieving from a particular scope is to use the Scope's map (requestScope for requests, sessionScope for sessions, applicationScope for application).
    <c:if test="${requestScope.photoAccountmanager == \"SUCCESS\"}">
    Note, that as long as there is no fear of having a variable of the same name in a different scope, specifying the scope is not necessary:
    <c:if test="${photoAccountmanager == \"SUCCESS\"}">
    Also not the escaped double quotes rather than single quotes. Not positive this is necessary, but I think it is the correct way to do it.
    Finally, if trouble still persists, try using
    <c:if test="${requestScope.photoAccountmanager eq \"SUCCESS\"}">

  • Adding the Checkbox for each row in classic report

    Hello,
    I have created classic report with checkboxes in each row and added the On-Submit process, BUTTON CONDITIONAL, to determine the behavior of the checkboxes. The PL/SQL process is suppose to delete the selected row from database.
    I am getting the Success message, but When I check the database, the row still persist in the database.
    PLSQL CODE:
    FOR i IN 1..apex_application.g_f01.count LOOP
    DELETE 
    FROM
      registry 
    WHERE
      reg_id = apex_application.g_f01(i);END LOOP;
    ORACLE APEX: 4.2
    Thank you

    Hi ApexNewLearner,
    Try this
    DECLARE
    j number;
    BEGIN
    FOR i IN 1..apex_application.g_f01.count LOOP
      j := apex_application.g_f01(i);
      DELETE FROM  registry
      WHERE  reg_id = apex_application.g_f01(j);
    END LOOP;
    END;
    or better try to replicate your issue on apex.oracle.com , that is easy for users to investigate the issue and give you appropriate solution.
    Hope this helps you,
    Regards,
    Jitendra

  • How to submit a form with checkboxes in a page flow?

    I'm having some trouble with a form that contains several checkboxes, and
    how to submit this form within a page flow...
    I have a JSP page containing a form with N checkboxes. The value and
    checked/unchecked status of each checkbox is generated from parsing an XML
    document. Here is the (simplified) code:
    <%@ taglib uri="http://java.sun.com/jstl/xml" prefix="x" %>
    <netui:form action="doUpdate">
    <x:forEach select="...">
    <input type="checkbox" name="id"
    <x:if ...>checked</x:if> value="<x:out ... />">
    </x:forEach>
    <netui:anchor formSubmit="true" action="doUpdate">Submit</netui:anchor>
    <netui:anchor action="doCancel">Cancel</netui:anchor>
    </netui:form>
    When this form is submitted, the checkbox values are lost -- the following
    code (in the action) produces an empty array:
    String[] prefs = this.getRequest().getParameterValues("id");
    I looked at the <netui:checkbox> tag, but it does not appear to give me a
    way to set the state and value (unless I've missed something).
    Can I submit a form without using a form bean? If I do use a form bean, can
    I set the state and value from my JSP?
    Any suggestions on how to do this (or insights into what I'm doing wrong)
    are welcome...
    -- Craig

    I am new to this, but I think this may solve your problem:
    I am not sure if this is what you are looking for, but you can create a LinkedHashMap
    with the req key/value pairs in the page-calling action in the pageflow and then
    pass that via a getRequest().setAttribute("myCheckboxes",myCheckboxHashMap);
    You can then access it in code using the optionsDataSource portion of the netui:checkBoxGroup
    - ie
    <netui:checkBoxGroup dataSource="{actionForm.thisCheckbox}" optionsDataSource="{request.myCheckboxes}">
    Hope this helps!
    m
    "Craig Coffin" <craig+1268fbec@nfld-dot-com> wrote:
    I'm having some trouble with a form that contains several checkboxes,
    and
    how to submit this form within a page flow...
    I have a JSP page containing a form with N checkboxes. The value and
    checked/unchecked status of each checkbox is generated from parsing an
    XML
    document. Here is the (simplified) code:
    <%@ taglib uri="http://java.sun.com/jstl/xml" prefix="x" %>
    <netui:form action="doUpdate">
    <x:forEach select="...">
    <input type="checkbox" name="id"
    <x:if ...>checked</x:if> value="<x:out ... />">
    </x:forEach>
    <netui:anchor formSubmit="true" action="doUpdate">Submit</netui:anchor>
    <netui:anchor action="doCancel">Cancel</netui:anchor>
    </netui:form>
    When this form is submitted, the checkbox values are lost -- the following
    code (in the action) produces an empty array:
    String[] prefs = this.getRequest().getParameterValues("id");
    I looked at the <netui:checkbox> tag, but it does not appear to give
    me a
    way to set the state and value (unless I've missed something).
    Can I submit a form without using a form bean? If I do use a form bean,
    can
    I set the state and value from my JSP?
    Any suggestions on how to do this (or insights into what I'm doing wrong)
    are welcome...
    -- Craig

  • Printing to Adobe PDF Changes Checkbox Selection in Document

    Hi,
    We have a PDF that we got from a client from their financial institution. One page has sets of checkboxes on it.
    If we do File - Save As and save it as another PDF, the checkboxes stay as is.
    If we print the file to our digital copier, the checkboxes stay as is.
    However, if we print the PDF to the Adobe PDF print driver, the values of the checkboxes change.
    Before print to Adobe PDF:
    Yes
    Yes
    <no response>
    After print to Adobe PDF:
    No
    No
    Yes and No
    It's as if the printed copy gets the photo negative values of the checkboxes that were actually checked on the original.
    I've tried all of the different options in the Adobe PDF printer preferences, like unchecking "Rely on system fonts only; do not use document fonts" as well as all of the "Comments and Markup" dropdown box settings and the Page Sizing options doesn't seem to matter either.
    Has anyone seen anything like this before? I've tried it on both Acrobat Standard 11.0.0 and 10.1.6
    Thanks in advance,
    John

    Is the ESR version of Mozilla Firefox?  If not, then try that version to see if the issue persists. 
    BTW the ESR version of Mozilla Firefox IS the supported version of Mozilla Firefox.
    http://www.adobe.com/products/acrobatpro/tech-specs.html
    Internet Explorer 7, 8, 9, or 10; Firefox Extended Support Release; or Chrome

  • Print issue: "Print on both sides..." checkbox not present in V10.1.2 under Win XP SP3

    Since upgrading to Adobe Reader 10.1.2 (wish I never had), my "Print on both sides" option is evidently ON (by default), but I cannot turn it off because the check box to do so is not present in the Print dialog:
    The checkbox should be underneath the "Choose papre source" box, but it's not. Hence the advice in http://kb2.adobe.com/cps/928/cpsid_92870.html is useless. I have done a Control Panel > Programs > Change/repair, still the same problem. Also have tried Adobe Reader > Edit > Preferences > General > uncheck "Enable protected mode at start-up" (suggested in another thread), problem persists. (Re-enabled Protected mode). 
    Using Win XP Pro SP3.
    This is a real pain....every print job brings the dreaded "Print on both sides instructions", with wasted paper, prompting each page to print manually, etc.  I have seen this scenario reported by others...Adobe, please fix this!

    Hi Johann,
    You printer driver doesn's support duplex printing, because of which you are not able to see that checkbox.
    You can try the following to disable duplex printing through registry:
    1. Go to : Start-> Run-> type Regedit-> click OK.
    2. It open registry editior. Locate the registry:
    [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\10.0\AVGeneral]
    3. Find the existing DWORD value which is named :
    "iDuplexMode"=dword:00000001".
    Set the value either as:
    1 = no duplex
    0 (or key does not exist) = duplex

  • One JSP Coded in JSTL with an Action Link and a Form

    My JSP written in JSTL with an action link works fine. The checkboxes are well recognized ( I have a "form" specified in both the action mapping and form bean).
    <%@ page import="......common.pojo.user.User" %>
    <!-- Create a variable in scope called userRows from the Users object -->
    <c:set var="userRows" value="${requestScope.Users}" />
    <c:choose>
         <c:when test="${not empty userRows}">
              <!-- create a "user" object for each element in the userRows -->               
              <c:forEach var="user" items="${userRows}" varStatus="idx">
                      <c:choose>
                              <c:when test="${( idx.count+1 )%2==0}">
                                 <tr class="contentCell1">
                              </c:when>
                              <c:otherwise>
                                 <tr class="contentCell2">
                              </c:otherwise>
                      </c:choose>
                                           <td align="center">
                                                              <html-el:checkbox property="selectedUsers[${idx.index}].selected" />
                                                              <html-el:hidden property="selectedUsers[${idx.index}].id" value="${user.id}"/>
                                           </td>
                                           <td align="center"><c:out value="${user.createdByUserID}" /></td>
                                           <td align="center"><c:out value="${user.firstName}" /></td>
                                           <td align="center"><c:out value="${user.lastName}" /></td>
                             </tr>
              </c:forEach>
                        <tr>
                             <td colspan="6" align="left">
                                      <html-el:link action="/admin/selectUsers.do">Edit Selected Users</html-el:link>
                             </td>
                           </tr>
                   </table>
              </c:when>
              <c:otherwise>
                   <center><H1>No User Found.</H1></center>
              </c:otherwise>
         </c:choose>
    ......But, if I add another form (form B) with some textfield(s) and a submit button in between the opening <c:when ...> and <c:forEach ... > tag, I get the "runtime" JSP error: "cannot find bean: "org.apache.struts.taglib.html.BEAN" in any scope".
    The form B also works well. And varStatus="idx" and var="user" still work. The complaint points specifically to the <html-el:checkbox property="selectedUsers[${idx.index}].selected" />. The getter method for selectedUsers[0].selected can no longer be recognized:
    <%@ page import="......common.pojo.user.User" %>
    <!-- Create a variable in scope called userRows from the Users object -->
    <c:set var="userRows" value="${requestScope.Users}" />
    <c:choose>
         <c:when test="${not empty userRows}">
                                    <html-el:form action="/admin/findUsers.do">
                                               // many textfields and a submit button
                                    </html-el:form>
              <!-- create a "user" object for each element in the userRows -->               
              <c:forEach var="user" items="${userRows}" varStatus="idx">
                      <c:choose>
                              <c:when test="${( idx.count+1 )%2==0}">
                                 <tr class="contentCell1">
                              </c:when>
                              <c:otherwise>
                                 <tr class="contentCell2">
                              </c:otherwise>
                      </c:choose>
                                           <td align="center">
                                                              <html-el:checkbox property="selectedUsers[${idx.index}].selected" />
                                                              <html-el:hidden property="selectedUsers[${idx.index}].id" value="${user.id}"/>
                                           </td>
                                           <td align="center"><c:out value="${user.createdByUserID}" /></td>
                                           <td align="center"><c:out value="${user.firstName}" /></td>
                                           <td align="center"><c:out value="${user.lastName}" /></td>
                             </tr>
              </c:forEach>
                        <tr>
                             <td colspan="6" align="left">
                                      <html-el:link action="/admin/selectUsers.do">Edit Selected Users</html-el:link>
                             </td>
                           </tr>
                   </table>
              </c:when>
              <c:otherwise>
                   <center><H1>No User Found.</H1></center>
              </c:otherwise>
         </c:choose>
    ......

    Hi,
    your strtus config file looks like
    <form-beans >
    <form-bean name="manageAuditFindingsForm" type="com.lib.struts.form.ManageAuditFindingsForm" />
    </form-beans >
    <action
          attribute="manageAuditFindingsForm"
          input="/New.jsp"
          name="manageAuditFindingsForm"
          path="/manageauditfindings"
          scope="request"
          type="com.lib.struts.action.ManageAuditFindingsAction">
          <forward name="success" path="/AuditFindings.jsp" />
        </action>Thanks
    Edward

Maybe you are looking for

  • I spilled a jar of water on my macbook

    Okay. So I know there are a thousand posts about this but I cannot seem to find one that describes this situation. I spilled a large glass of water on my macbook keyboard. After just staring in absolute shock for a second or two the screen turned int

  • Will the rocketfish mini display port to hdmi adapter work with a mid 2012 macbook pro?

    I want to buy it but im not sure if it will work.

  • Vendor Text must be copied into PO texts.

    Hi Experts I assume that both "Purchasing Memo" and "Purchase Order Text" should be copied from the vendor master. When testing, only the "Purchase Order Text" is getting copied into the Purchase order. However i want the purchasing memo to also appe

  • OCIEnvNlsCreate()

    Hi, I am wondering if anyone can help with this OCIEnvNlsCreate() error. I installed Oracle Client, PHP 5.1.4 into Linux with OCI8 enabled. However, I cannot connect PHP with Oracle, I got OCIEnvNlsCreate() error. I tried a couple of workaround, but

  • KM Storage

    Hello Experts, Could any one tell me where to find the KM Documents on the physical path of the server. For example: If a upload a document name a.doc. Is there a path on my server where I could find this document /usr/.../KM/documents/a.doc Or how i