How to use Hyperlinks in a table

In my JSF application, I have a table that returns a list of customers. I want to have each link pull up the customer details page with the data for the row that the user clicked on. Is there an easy way to do this?
I have figured out how to replace a text field in a column with a hyperlink and have set it to display the correct text for each row but I have the following issues:
1) if I try to use the current row, it is always the first row displayed, not the row the user clicked on
2) I can construct the link url in such a way that it posts back to me with the customer Id, but then how do I obtain the information? From the request Bean?
For example my urls on 2 rows of the table are:
http://localhost:28080/TestApp/faces/Home.jsp?CustID=1
http://localhost:28080/TestApp/faces/Home.jsp?CustID=2
This is how I built the links:
<ui:tableColumn binding="#{Home.tableColumn2}" headerText="Customer ID" id="tableColumn2" sort="customer.customer_id">
<ui:hyperlink binding="#{Home.hlCustomer}" id="hlCustomer" target="_self"
text="#{currentRow.value['customer.customer_id']}" url="?#{currentRow.value['customer_url']}"/>
Any help apprechiated, as I am new at this.

I'm not sure if this is what you want to do, but I did something similar, allowing JSC to handle everything.
    public String hyperlinkClarifyCaseNum_action() {
        // Select the current case & go to editSev1
        TableRowDataProvider rowData = (TableRowDataProvider) getBean("currentRow");
        getRequestBean1().setClarifyCaseNum((Integer)rowData.getValue("espsev1.sev1ClarifyCaseNum"));
        getRequestBean1().setSev1ID((Integer)rowData.getValue("espsev1.sev1ID"));
        return "editSev1";
    }This saves the key (sev1ID) in a session bean, then goes to the page that will allow user to edit the sev1 entry. That page retrieves the key & does the query to populate the page.
I copied this from the JSC book available free on the website.
Very similar to 2) above ;-)

Similar Messages

  • How to use the item of table(ms access) in pl/sql

    I want to use oracle forms builer developer application with ms access database
    I don't know how to use the item of table in the pl/sql;please help me !

    MERGE INTO EmpDept Target
    Using (SELECT E.Address,
    e.Design,
    e.EmailId,
    e.EmpId,
    e.Ename,
    e.ManagerId,
    e.Salary,
    D.DeptId,
    D.DeptName,
    D.Location
    FROM Employee E
    INNER JOIN Dept D
    ON E.DeptId = D.DeptId) AS Source (Address, Design, EmailId, EmpId, EName, ManagerId, Salary, DeptId, DeptName, Location)
    ON Source.EmpId = Target.EmpId
    WHEN NOT matched THEN
    INSERT (Address,
    Design,
    EmailId,
    EmpId,
    Ename,
    ManagerId,
    Salary,
    DeptId,
    DeptName,
    Location)
    VALUES (Address,
    Design,
    EmailId,
    EmpId,
    EName,
    ManagerId,
    Salary,
    DeptId,
    DeptName,
    Location)
    WHEN matched THEN
    UPDATE SET Address = Source.Address,
    Design = Source.Design,
    EmailId = Source.EmailId,
    Ename = Source.Ename,
    ManagerId = Source.ManagerId,
    Salary = Source.Salary,
    DeptId = Source.DeptId,
    DeptName = Source.DeptName,
    Location = Source.Location;

  • How to use database look up table function in xsl mapping

    Can anybody tell me how to use database look up table function while mapping xsl between 2 nodes.
    I have an XML file coming in and depending on one of XML elements we need to decide which further path to take. But, using this XML element, we need to query database table, get metadata and accordingly take appropriate path. I have written lookup function which returns metadata value.
    Now, the issue is how do I pass the XML element valu as input to look up function? When I tried to drag it to the input node of lookup function, it throws an error like "Maximum number of parameters exceeded"
    Thanks,

    If the lookup table is always going to remain the same (e.g. a character generator or something similar) you can place the values in a 2D array constant on your diagram, with the input value as one column, the equivalent as the other. When you need to perform the lookup you use an index array to return all the values in the "input column", search it using "search 1D array" and use the resulting index number to index the other column's data. If the values may change, then it would probably be best to load an array control with your equivalent values from a file.
    P.M.
    Putnam
    Certified LabVIEW Developer
    Senior Test Engineer
    Currently using LV 6.1-LabVIEW 2012, RT8.5
    LabVIEW Champion

  • [HTML DB] How to use the existing database table?

    [HTML DB] How to use the existing database table?
    I installed Oracle 10g database in Computer A(Windows 2000), and I already create all the tables with data and the data size is about 300MB.
    In Computer B(Windows 2000), I installed HTML DB 1.6.
    How can I use /get the existing database table (in computer A) for HTML DB?
    Could anyone help me on this? I am newbie and I need some detail instructions. or Where can I find the examples.....
    Thanks

    Well I guess if you wish to retain that architecture, i.e. HTMLDB on one machine and your data on another, you will have to establish database links to access the data. Oracle documentation will describe how to achieve that.

  • How to Use Hyperlink in XI R2 need Screen Shots

    Hi All,
    Please  sent Screen Shots how to create Hyperlink in XI R2 step by step process i am new to this.
    Please help me on this.
    Thanks in advance

    Aravind,
    OpenDocument URL command syntax
    An example of the syntax to use when you want to create a hyperlink on a state object to open a document with sales details for the state appears below:
    ="<a href=""http://<server_name>:8080/OpenDocument/opendoc/openDocument.jsp?""&sType=wid""&sDocName=DetailedSalesReport""&lsSEnterState:="Replace(State;"";"%20") + "> "State""
    The below divides the example of syntax into understandable arguments, and provides an explanation for each argument.
    Note: Each of the syntax arguments are joined with a plus sign in the formula bar.
    Syntax argument ========================== Explanation
    "<a href=" ============= The opening HTML syntax for a hyperlink.
    http://<server_name>:8080/OpenDocument/opendoc/openDocument.jsp? =========== <server_name>:8080, used in this example, is
    specific to the BusinessObjects Enterprise server.You can find this name displayed in the address bar of your browser's address toolbar.
    Note: The port is 8080 for Tomcat web servers.
    "&sType=wid" ================ The type of document to be opened, in your case, a Web Intelligence document.
    "&sDocName=DetailedSales Report" =========== Your Document name(Report) Note that spaces in the name of the document are replaced with a + sign. %20 can be used in place of the +. %20 is the HTML encoding symbol for a space. This parameter can be substituted with the sDocID.
    "&lsSEnter_State:="+Replace( State;"";"%20") ==============
    The prompt parameter which will be passed to the document being opened.
    Notice that this argument has to match exactly with the prompt created in the first document. In this case, a single parameter is being passed (lsS).
    Additional parameters are available:
    u2022 lsM for multiple values
    u2022 lsR for a range of values
    The object name in brackets, State indicates the data from the main report to be passed to the linked report.
    The Replace command is used with the value to replace spaces in the value with the HTML symbol for a space.
    Multiple prompts can be listed in the code. You just continue to string them together with the + character to concatenate the pieces.
    t">"+ State ============= Required HTML encoding and the object name that indicates to the document which data to show in the table. Once you have formatted the column in the Web Intelligence table, the State values in this case appear as hyperlinks.
    "" ============= The closing HTML code for a hyperlink.
    Summerized :
    ="<a href =" + "http://webwasqwn1.ecorp.cat.com:8322/OpenDocument/opendoc/openDocument.jsp?sType=wid&sDocName=fsitem&lsSEnterItem Node Name:="Query 2.Item Node Name(If IsPromptAnswered("Enter FS Items") Then "&lsSEnterFS Items:="+URLEncode(UserResponse("Enter FS Items:"))) + Object + ""
    Hope it helps you!!
    Thank You!!
    Sent from iPhone

  • How to use create-default-dbms-tables in SQL Server 2000

    Hi everyone,
    I'm new in EJB development. I'm trying to deploy a CMP to Weblogic 8.1 SP1 using
    JBuilderX. I configured a ConnectionPool and DataSource to allow the CMP to access
    the SQL Server 2000. However, I cannot deploy the CMP if I didn't create the table
    in SQL Server manually. Does anyone know how to use the create-default-dbms-tables?

    Refer to
    http://e-docs.bea.com/wls/docs81/ejb/DDreference-cmp-jar.html#1162249
    "Keith" <[email protected]> wrote:
    >
    Hi everyone,
    I'm new in EJB development. I'm trying to deploy a CMP to Weblogic 8.1
    SP1 using
    JBuilderX. I configured a ConnectionPool and DataSource to allow the
    CMP to access
    the SQL Server 2000. However, I cannot deploy the CMP if I didn't create
    the table
    in SQL Server manually. Does anyone know how to use the create-default-dbms-tables?

  • How to use simple types for table column names ?

    Hi,
    can any one tell how to to use simple types for table column names?
    It is required in internationalizing of webdynpro applications.
    Regards,
    Rajesh

    Hi,
    1: define required column names in <SimpleType>
    2:use the following code to get those values
    3:bind 'text' property of Column headers to context attributes
    4:take a context attribute 'Value' as type of <SimpleType>
    5:set these values to context attributes
    IWDAttributeInfo objAttrInfo=wdContext.getNodeInfo().getAttribute(IPrivate<ViewName>View.IContextElement.VALUE);
    ISimpleTypeModifiable simple=objAttrInfo.getModifiableSimpleType();
    Map m=simple.getEnumerationTexts();
    Collection c=m.values();
    Iterator it=c.iterator();
    if(it.hasNext())
    wdContext.currentContextElement.set<att1>(it.next().toString);
    if(it.hasNext())
    wdContext.currentContextElement.set<att2>(it.next().toString);
    if(it.hasNext())
    wdContext.currentContextElement.set<att3>(it.next().toString);
    Regards
    LakshmiNarayana

  • How to used hyperlink

    Hi i do not really know how to use this options of hyperlink,  i would like to  call a pic from another pic, or maybe call a pic from tex, bur i do not know how to set all this.
    Thanks

    There is a Jabber SDK available here:
    http://www.cisco.com/en/US/products/ps11765/index.html
    Your other questions will need to be addressed to your Account Team, since we're not allowed to discuss Roadmap items on a public forum.

  • How to use non-default Alias Table in Analyzer report

    Hi,I defined many alias tables in Essbase. I would like to use a different alias table other than the "default" in Analyzer 6.5 report. In the on-line help, it said I can modify in "database connection properties" when first defining a new report to use a specific alias table. It tells me to do the following: Click the "New" toolbar button. Select a Display Type or Layout, and click OK. Right-click a database connection name in the "Select Database Connections" dialog box, and select Modify from the right-click menu.So I did this, but as I did the last-right click, there is no "Modify" option available. Only has "Add New..", "Database Connection Properties.." However, if I defined a new personal database connection using the login user, I can select to use other alias table. But this will go to personal database connection properties.Is it possible to specifically tell Analyzer to use other alias the global level in database connection? What I use to do is to have certain reports to use the default alias, and another to use another alias table. These reports should be able to share across all users.Sam

    In deed it is fix in the GA.Another way to set the alias table is to do it in the Admin client. If you add a connexion to a user there is a new 6.5 button "set alias" that allow you to set the default alias table for this specific user. But, it does not exit on a user group level.

  • How to use substr in external table defnition.

    Hi All,
    Im using oracle 11g. I have an external table which is reading data from a file. For one of the column, i need to get only the first 250 characters. My external table defnition looks like this
    create table tbl_substr
    ( col1 varchar2(20),
    col2 varchar2(250)
    organization external
    ( type oracle_loader
    default directory XXXX
    access parameters (
    records delimited by newline
    FIELDS TERMINATED BY '|'
    missing field values are null
    ( col1 ,
    col2 "substr(:col2,1,250)"
    ) ) location ('file.txt') )
    reject limit unlimited
    But this defnition gives an error when i do select * from tbl_substr
    I want to use substr in external table defnition its self and not in SELECT. Also i dont want to crete a view to solve this. If anyone has done this please help.

    You need to play with COLUMN_TRANSFORMS
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/et_params.htm#sthref1792
    BTW, i too got it from Google. I was not aware about this :)
    Amardeep Sidhu

  • How to use colspan in data table?

    I have a requiremnt like using colspan in data table.
    I heared it is possible with some javascripting code . I s it true.
    If possible pleese send that code.

    It's just free to use? Or are you violating the Apache license somehow?
    Well, the best solution turns out to create a custom component.
    You can also try to group/render a h:panelGrid in a h:column to simulate multiple columns. This might involve some rework with the layout (CSS should be sufficient tho) and the generated code would look like dirty. But this should work anyhow.

  • How to use filter for data tables? Important topic but no docs/examples.

    I was looking at the TableRowGroup APIs:
    http://developers.sun.com/prodtech/javatools/jscreator/reference/docs/apis/webui/index.html
    and looks like it has getTableDataFilter and setTableDataFilter methods. Sounds to me, that we can use TableDataFilter to filter rows that are displayed. For example, we can provide users with a drop down list of fields to choose from, and input field to enter the value of the selected field, so that they can narrow down the rows to search for specifics row(s) they are looking for.
    I have not seen any example, or enough documentation, to figure out how to use this filter. Since JSC is new, there are not too many resources out there or on web for such specific issues. Any gurus out there?
    Thanks

    Creator Team: Data filtering tutorial is over due now. This is something that will be useful to most developers. We all want to display users some data and want to provide user ability to filter it down based on some criteria, i.e. display rows within a date range, display all rows that have certain value or a field, etc. If there is a built-in filter in TableRowGroup, why not document it adequately along with some examples and a tutorial?
    This is one of the key elements of Microsoft/VS.NET market share -- provide tons of example/tutorials/advanced code/books/3rd party books, etc. Why can't other companies follow a well-proven success element? In spite of making a better product, the can end up loosing or not gaining enough share, because of this lack of attention.

  • How to put Hyperlink in the table column.

    HI,
    I want to put hyperlink(with underline) for the columns(column headers) of the table .I have created IWDAction for the column
    I want to put a underline for this hyperlink.
    I tried with IWDLinktoAction.But I am not getting the hyperlink with underline.
    Please suggest how to get the hyperlink with underline.

    Hi,
    U cant place a link to acction in headers.
    If you really need it you have to do it with some compromises by making use of either toolbar or a transparent container above your table.
    Regards
    Ayyapparaj

  • How to use %Type declaration with table residing in a different database

    How can I use the %TYPE declaration if the table is from a different database.
    E.g
    v_business_unit ps_jrnl.header.business_unit%TYPE;
    In the above declaration statement,the table 'ps_jrnl_header' resides in a different database(Database A) from the one I am currently in( Database B).(This is because data needs to be extracted from Database A into Database B).

    1. Create a database link to the other database (this probably already exists since your proc is interacting with that database)
    2. Create a synonym for the table in the other database
    create synonym foo for ps_jrnl.header@database_a;3. Reference the synonym in your variable declaration:
    v_business_unit  foo.business_unit%TYPE;

  • How can a hyperlink in a table load an image in a new page?

    Hello,
    I�m using Java Studion Creator 2 Update 1 an I have following problem:
    In my jsp-page (main.jsp) I have a table component with an image hyperlink (showOriginal) in the first column and a hyperlink to another page in the second. On this page is also a hyperlink, which refreshes the table.
    The hyperlink "showOriginal"should open an new browser window and display an image depending on the selected table row. I set the property "target" for the hyperlink to "new Window" and specified an event_method (showOriginal_action() ), which gets the image for the selected table row and returns a new jsp-page (originalView.jsp).
    OriginalView.jsp has only one image component. The url for this image is set by the event_method of the image-hyperlink of main.jsp. Everything works fine but if I press the refresh link on the main.jsp to refresh the table (after opening the new window with the image), the image is also loaded in the main.jsp and every other link causes the same problem. Even when I close the window with the image, the same happens. It seems to my like I`m still on the main.jsp and not on the originalView.jsp (after I included a </redirect> tag in navigation.xml, I can see in the browser address line that the OriginalView.jsp is loaded) and the main.jsp "thinks" that the current content of itself is the image?
    I changed the return value of showOriginal_action() to null (because of the target property I always get the originalView-page) and then I included an onClick-method for the imagehyperlink to open a new window with the image via javascript but this didn`t work because the onclick is performed first and at this time I don`t have the image url yet (because first I must know, which row was selected in the table).
    Am I doing something wrong or is this not the correct way to do this? I just want to click the link in the table and a new window/page should be opened, which displays the image, independent from anything else. and all the links in the main-page must still work properly.
    I appreciate any help & suggestions.
    thanks
    Message was edited by:
    dan_k

    hi,
    here the code of main.jsp (with your suggestions):
    <?xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:ui="http://www.sun.com/web/ui">
    <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
    <f:view>
    <ui:page binding="#{main.page1}" id="page1">
    <ui:html binding="#{main.html1}" id="html1">
    <ui:head binding="#{main.head1}" id="head1" title="SEWM">
    <ui:link binding="#{main.link1}" id="link1" url="/resources/stylesheet.css"/>
    <ui:script binding="#{main.script1}" id="script1" url="/resources/global.js"/>
    </ui:head>
    <ui:body binding="#{main.body1}" id="body1" style="background-color: rgb(255, 255, 255); -rave-layout: grid">
    <ui:form binding="#{main.formMain}" id="formMain" target="_self">
    <div id="main">
    <h:panelGrid binding="#{main.header}" id="header" styleClass="abc_header_bar">
    <ui:image binding="#{main.image1}" id="image1" styleClass="abc_header_logo" url="/resources/abc_logo.gif"/>
    <ui:image binding="#{main.imageLine1}" id="imageLine1" styleClass="abc_header_logoLine" url="/resources/amb_leiste.gif"/>
    <ui:staticText binding="#{main.staticText2}" id="staticText2" styleClass="abc_page_title" text="IWM Control"/>
    </h:panelGrid>
    <h:panelGrid binding="#{main.menu}" columns="1" id="menu" styleClass="abc_menu_wrapper">
    <ui:image align="middle" binding="#{main.imageLeon1}" height="81" id="imageLeon1" url="/resources/leon.gif"/>
    <h:panelGrid binding="#{main.gridPanel1}" id="gridPanel1" styleClass="abc_menu_box">
    <ui:hyperlink action="#{main.changePssw_action}" binding="#{main.hyperlinkChangePassword}" id="hyperlinkChangePassword"
    style="color:#990000" text="#{main.propertyResourceProvider1.value['changePassword']}"/>
    <ui:hyperlink action="#{main.refresh_action}" binding="#{main.hyperlinkRefresh}" id="hyperlinkRefresh"
    onClick="function test() {&#xa; this.formMain.target='_self';&#xa;}" style="color:#990000" text="#{main.propertyResourceProvider1.value['refresh']}"/>
    <ui:hyperlink binding="#{main.customerHelp1}" id="customerHelp1" immediate="true" style="color:#990000" styleClass=""
    target="_blank" text="Hilfe" url="/main.html"/>
    <ui:label binding="#{main.label2}" id="label2" styleClass="abc_lbplaceholder" text="_______________________"/>
    <ui:staticText binding="#{main.staticText108}" id="staticText108" styleClass="abc_tinfo" text="TEST Info" toolTip="#{SessionBean1.testSystemInfo}"/>
    </h:panelGrid>
    </h:panelGrid>
    <h:panelGrid binding="#{main.gridPanelUserInfo1}" columns="3" id="gridPanelUserInfo1" styleClass="abc_userinfo">
    <ui:staticText binding="#{main.staticText1}" id="staticText1" text="Sie sind angemeldet als "/>
    <ui:staticText binding="#{main.registeredUser1}" id="registeredUser1" text="#{SessionBean1.webFacade.user.uname}"/>
    <ui:hyperlink action="#{main.logout_action}" binding="#{main.logout1}" id="logout1" style="color: #ffffff" text="#{main.propertyResourceProvider1.value['logout']}"/>
    </h:panelGrid>
    <h:panelGrid binding="#{main.gridPanel86}" id="gridPanel86" styleClass="abc_page_content">
    <ui:label binding="#{main.label3}" id="label3" text="#{main.propertyResourceProvider1.value['sysmessages']}"/>
    <ui:messageGroup binding="#{main.outlineTableMessageGroup}" id="outlineTableMessageGroup" styleClass="abc_messagebox"/>
    <ui:tabSet binding="#{main.tabSet1}" id="tabSet1" lite="true" mini="true" selected="tab2">
    <ui:tab action="#{main.tab2_action}" binding="#{main.tab2}" id="tab2" text="#{main.propertyResourceProvider1.value['openProcesses']}">
    <ui:panelLayout binding="#{main.layoutPanel2}" id="layoutPanel2">
    <ui:table binding="#{main.table3}" id="table3" paginateButton="true" paginationControls="true"
    styleClass="abc_main_fulltable" title="Offene Vorg�nge" width="600">
    <script><![CDATA[
    /* ----- Functions for Table Preferences Panel ----- */
    * Toggle the table preferences panel open or closed
    function togglePreferencesPanel1() {
    var table = document.getElementById("form1:tabSet1:tab2:table3");
    table.toggleTblePreferencesPanel();
    /* ----- Functions for Filter Panel ----- */
    * Return true if the filter menu has actually changed,
    * so the corresponding event should be allowed to continue.
    function filterMenuChanged1() {
    var table = document.getElementById("form1:tabSet1:tab2:table3");
    return table.filterMenuChanged();
    * Toggle the custom filter panel (if any) open or closed.
    function toggleFilterPanel1() {
    var table = document.getElementById("form1:tabSet1:tab2:table3");
    return table.toggleTableFilterPanel();
    /* ----- Functions for Table Actions ----- */
    * Initialize all rows of the table when the state
    * of selected rows changes.
    function initAllRows1() {
    var table = document.getElementById("form1:tabSet1:tab2:table3");
    table.initAllRows();
    * Set the selected state for the given row groups
    * displayed in the table. This functionality requires
    * the 'selectId' of the tableColumn to be set.
    * @param rowGroupId HTML element id of the tableRowGroup component
    * @param selected Flag indicating whether components should be selected
    function selectGroupRows1(rowGroupId, selected) {
    var table = document.getElementById("form1:tabSet1:tab2:table3");
    table.selectGroupRows(rowGroupId, selected);
    * Disable all table actions if no rows have been selected.
    function disableActions1() {
    // Determine whether any rows are currently selected
    var table = document.getElementById("form1:tabSet1:tab2:table3");
    var disabled = (table.getAllSelectedRowsCount() > 0) ? false : true;
    // Set disabled state for top actions
    document.getElementById("form1:tabSet1:tab2:table3:tableActionsTop:deleteTop").setDisabled(disabled);
    // Set disabled state for bottom actions
    document.getElementById("form1:tabSet1:tab2:table3:tableActionsBottom:deleteBottom").setDisabled(disabled);
    }]]></script>
    <ui:tableRowGroup binding="#{main.tableRowGroup4}" emptyDataMsg="Keine Vorg�nge gefunden." id="tableRowGroup4"
    rows="20" sourceData="#{SessionBean1.openProcesses}" sourceVar="currentRowTable">
    <ui:tableColumn binding="#{main.tableColumn23}" embeddedActions="true" id="tableColumn23" noWrap="true">
    <ui:panelGroup binding="#{main.groupPanel13}" id="groupPanel13">
    <ui:imageHyperlink action="#{main.showOriginal_action}"
    alt="#{main.propertyResourceProvider1.value['ttShowOriginals']}"
    binding="#{main.imageHyperlink64}" id="imageHyperlink64"
    imageURL="/resources/original_small.gif" immediate="true" target="_blank" toolTip="#{main.propertyResourceProvider1.value['ttShowOriginals']}"/>
    </ui:panelGroup>
    </ui:tableColumn>
    <ui:tableColumn binding="#{main.tableColumn15}" headerText="Kreditor" id="tableColumn15" sort="vendorName">
    <ui:hyperlink action="#{main.edit_action}" binding="#{main.hyperlink1}" id="hyperlink1" text="#{currentRowTable.value['vendorName']}"/>
    </ui:tableColumn>
    <ui:tableColumn binding="#{main.tableColumn17}" headerText="Rechnungsnummer" id="tableColumn17" sort="refDocNo">
    <ui:staticText binding="#{main.staticText101}" id="staticText101" styleClass="abc_table_celltext" text="#{currentRowTable.value['refDocNo']}"/>
    </ui:tableColumn>
    <ui:tableColumn binding="#{main.tableColumn18}" headerText="Rechnungsdatum" id="tableColumn18" sort="docDate">
    <ui:staticText binding="#{main.staticText102}" converter="#{main.dateTimeConverter1}" id="staticText102"
    styleClass="abc_table_celltext" text="#{currentRowTable.value['docDate']}"/>
    </ui:tableColumn>
    <ui:tableColumn binding="#{main.tableColumn19}" headerText="F�lligkeit" id="tableColumn19" noWrap="true" sort="dueDate">
    <ui:staticText binding="#{main.staticText103}" converter="#{main.dateTimeConverter1}" id="staticText103"
    styleClass="abc_table_celltext" text="#{currentRowTable.value['dueDate']}"/>
    </ui:tableColumn>
    <ui:tableColumn binding="#{main.tableColumn21}" headerText="Zuordnung" id="tableColumn21" sort="stapleName">
    <ui:staticText binding="#{main.staticText105}" id="staticText105" styleClass="abc_table_celltext" text="#{currentRowTable.value['stapleName']}"/>
    </ui:tableColumn>
    </ui:tableRowGroup>
    <f:facet name="actionsBottom"/>
    </ui:table>
    </ui:panelLayout>
    </ui:tab>
    </ui:tabSet>
    </h:panelGrid>
    </div>
    <div id="wait" style="visibility: hidden;">
    <h:panelGrid binding="#{main.gridPanel8}" id="gridPanel8" styleClass="abc_wait_div">
    <ui:label binding="#{main.label1}" id="label1" styleClass="abc_labelwait_align" text="#{main.propertyResourceProvider1.value['loaddata']}"/>
    <ui:image binding="#{main.image15}" id="image15" url="/resources/loading.gif"/>
    </h:panelGrid>
    </div>
    </ui:form>
    </ui:body>
    </ui:html>
    </ui:page>
    </f:view>
    </jsp:root>
    originalView.jsp:
    <?xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:ui="http://www.sun.com/web/ui">
    <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
    <f:view>
    <ui:page binding="#{originalView.page1}" id="page1">
    <ui:html binding="#{originalView.html1}" id="html1">
    <ui:head binding="#{originalView.head1}" id="head1">
    <ui:link binding="#{originalView.link1}" id="link1" url="/resources/stylesheet.css"/>
    </ui:head>
    <ui:body binding="#{originalView.body1}" id="body1" style="-rave-layout: grid">
    <ui:form binding="#{originalView.form1}" id="form1">
    <ui:image binding="#{originalView.image1}" height="#{SessionBean1.archiveObjectsFileDataProvider.value['height']}" id="image1"
    style="left: 120px; top: 48px; position: absolute" url="#{SessionBean1.archiveObjectsFileDataProvider.value['url']}" width="#{SessionBean1.archiveObjectsFileDataProvider.value['width']}"/>
    </ui:form>
    </ui:body>
    </ui:html>
    </ui:page>
    </f:view>
    </jsp:root>
    and java-methods:
    public String showOriginal_action() {
    getSelectedRowFromMainTable();
         setSelectedImage(); // the image url ist then available via session bean
    return "originalView"; // displays the image using the url in the session bean
    public String refresh_action() {
    try {
    getSessionBean1().getOpenProcessTable();
    //hier I tried
    //getHyperlinkRefresh().setTarget("_self");
    //or getFormMain().setTarget("_self");
    catch(Exception ex) {
    error(ex.getMessage());
    return null;
    }

Maybe you are looking for

  • String comparision

    String a = "alpha"; String b = "xxxxalphayyyyyyy"; is there any method that returns true, if I had to check if String b contains a, otherwise false.....

  • I can't find the "Build This Not That!" pages

    At least three times in the last month I when't digging for a link to that poster.  If anyone knows or can find it Please, help a brother out with a link would you?  Thanks Jeff Solved! Go to Solution.

  • VENDOR GROUP in SRM 5.0

    Hello, A) Can anyone tell me what this vendor group is? What is it used for? B) A have a case (SRM SUS) where in a vendor X supply it to Y by procuring from number of sub-vendors (A, B, C) which are on SRM. Now is it possible for vendor X to check ve

  • SAP Cloud for Customer & SAP ECC/CRM OnPremise integration using WebServices!

    Hello All, I would like to ask if anyone has really created a working integration scenario between a Cloud Solution & an ECC/CRM OnPremise solution? We are trying to build some prototypes for this, however, due to connectivity errors/issues, unable t

  • Ipad not visible in itunes

    Installed the new OS on the ipad now restored but not visible in itunes which is up to date as is the Mac OS....???