Design issue for Download Results!

Hi All,
In my application, i am calling two download links which has two different process as shown below:
htp.p{'table border=1'};
htp.p{'tr td b a href="f?p=&APP_ID.:70:&SESSION.::NO:YES:P70_DFILE:WXZ">{ Download Results}</a></td></tr>'};
htp.p{'tr td b a href="f?p=&APP_ID.:70:&SESSION.::NO:YES:P70_DFILE:customer"> {Customer Version Results}</a></td></tr>'};
htp.p{'/table '};
When i run this page you will find the download links one benit the other like as shown below:
Download Results
Customer version results
Now there are asking me to change UI design for downloads in such a way that
Download Results Customer Version results
I mean they main intension is to have both in single a line having borders separtely and also space between them
Hope you have understnad my problem, since i was not able to show you with borders, so i have shown as dotted lines.
Thanks,
Anoo..
Edited by: Anoo on Dec 16, 2009 9:28 PM
Edited by: Anoo on Dec 16, 2009 9:29 PM
Edited by: Anoo on Dec 16, 2009 9:29 PM
Edited by: Anoo on Dec 16, 2009 9:30 PM
Edited by: Anoo on Dec 16, 2009 9:30 PM
Edited by: Anoo on Dec 16, 2009 9:31 PM
Edited by: Anoo on Dec 16, 2009 9:38 PM

Anoo,
Looks like the forum software has messed-up your post. You should use code tags when you are posting any code. This improves the readability!
See 'Formatting options' in this link
Cheers,
Hari

Similar Messages

  • Download Assistant does not show Creative Suite 6 Design Standard for download.

    I've run this before on my Macbook Pro, so it meets/exceeds the specs.  I'm troubleshooting some problems with Photoshop CS 6 and I'm trying to do a fresh install.  I downloaded the Creative Suite 6 Design Standard trial a few weeks ago through the same manner and have since bought it.  Why isn't the Suite showing up now?
    Thanks

    This is correct Creative Suite 6 Design Standard is not available to download directly in the Adobe Download Assistant.  You will want to initiate the trial download from the download page at http://www.adobe.com/cfusion/tdrc/index.cfm?product=design_standard.  The download request will then be sent to the Adobe Download Assistant.  If this process is not working then please try a different web browser.
    If you purchased Design Standard from Adobe directly and choose the download option then there is no need to download the trials.  Please see http://forums.adobe.com/thread/1006208?tstart=0&promoid=KBHJQ for information on how to download your purchased software from your account.

  • Report design issue for discussion

    I'm going to generete several reports using JSP--session EJB,session bean
    retrieve database,return result to JSP and show in browser.
    I like resultset,but resultset is not Serializable, so can't send one across
    the wire.
    if I turn the ResultSet into a Vector,send vector to JSP,I'll have to build
    diffrent structure classes for each reports.I like the resultset becuse it
    seems "consolidate" for diffrent tables
    JDBC2.0 provides cachedrowset,but it seems only good for small set of
    data,for report,I need to return alot of data
    do you have any sugguestions

    Suggestion:
    Unless you have a good reason, don't use EJB for this.
    1) It is non-transactional (probably)
    2) It is not distributed (ejbs are probably local)
    3) Were it distributed, it would suck (high cost of transmission with
    report-scale data)
    4) You are fighting something ... if it doesn't seem natural, it probably
    aint.
    Peace,
    Cameron Purdy
    Tangosol Inc.
    << Tangosol Server: How Weblogic applications are customized >>
    << Download now from http://www.tangosol.com/download.jsp >>
    "John Zhang" <[email protected]> wrote in message
    news:3c080711$[email protected]..
    I'm going to generete several reports using JSP--session EJB,session bean
    retrieve database,return result to JSP and show in browser.
    I like resultset,but resultset is not Serializable, so can't send oneacross
    the wire.
    if I turn the ResultSet into a Vector,send vector to JSP,I'll have tobuild
    diffrent structure classes for each reports.I like the resultset becuse it
    seems "consolidate" for diffrent tables
    JDBC2.0 provides cachedrowset,but it seems only good for small set of
    data,for report,I need to return alot of data
    do you have any sugguestions

  • Rerendering issue for download operation

    I have the following requirement
    1. User clicks on a commandButton(Implemented using h:commandButton)
    2. User is presented with Save Dialog box to save an xml in the desired location.
    This works fine as expected in IE and Firefox.
    But I'm facing following issues:
    1. After this operation when i click any button to open a modal panel, it is not opening(Problem only in IE7 not Firefox)
    2. Also I want to display a success message after download operation. Due to page rendering it is not displayed.(Problem both in IE7 and Firefox)
    3. I have attached a status processing image with the h:commandButton but I think the h:commandButton does not have oncomplete
    event so even after Save Dialog Box is closed the status processing image is not closing (Problem both in IE7 and Firefox)
    Note:
    1) I tried using a4j:commandButton instead of h:commandButton, but the Save Dialog box was not displayed.
    2)I'm using tomcat 6.0.14 and richfaces 3.2.1
    3)The xhtml is actually embedded within frames. If i try accessing the xhtml directly without frames then the modal opening issue is not reproduced.
    Code:
    ManagedBean:
    FacesContext ctx = FacesContext.getCurrentInstance();
    if (!ctx.getResponseComplete()) {
        try{       
         String strMIME = "application/xml";
         HttpServletResponse response = (HttpServletResponse) ctx.getExternalContext().getResponse();
         response.setContentType( strMIME );
         response.setHeader( "Content-Disposition", "attachment;filename=\"" + "TestDAta.xml" + "\"" );
         ServletOutputStream out = response.getOutputStream();
         out.write("<xmlfile></xmlfile>".getBytes());
         out.flush();
         out.close();
         ctx.responseComplete();
        }catch(Exception e){  
         System.err.println("Finish read end of file...");  
    }xhtml:
    <h:form id="details">
         <h:panelGrid columns="1" >
              <h:commandButton  value="Open Save Dialog" action="#{saveDialog.openSaveDialog}" onclick="javascript: Richfaces.showModalPanel('downloadModalPanel',{left:'auto', top:'auto',height:'50px',width:'130px'});" oncomplete="javascript: Richfaces.hideModalPanel('downloadModalPanel');" />
         </h:panelGrid>
         <h:panelGrid columns="1">
              <a4j:commandButton  value="Open Modal" reRender="moviesModal" limitToList="true" onclick="Richfaces.showModalPanel('moviesPanel',{left:'auto', top:'auto',height:'100px',width:'100px'});" />
         </h:panelGrid>
    </h:form>Edited by: Leela.C on Apr 20, 2009 5:04 AM

    I think ctx.responseComplete() causes HTTP response for a request to complete
    without rendering the component tree.
    Note: Without ctx.responseComplete() I'm getting following exception on the page
    SEVERE: Error Rendering View[index.xhtml]
    java.lang.IllegalStateException: Servlet response already use stream, Writer not possible
         at org.ajax4jsf.webapp.FilterServletResponseWrapper.getWriter(FilterServletResponseWrapper.java:226)
         at com.sun.facelets.FaceletViewHandler.createResponseWriter(FaceletViewHandler.java:399)
         at com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.java:556)
         at org.ajax4jsf.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:108)
         at org.ajax4jsf.application.AjaxViewHandler.renderView(AjaxViewHandler.java:189)
         at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:110)
         at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100)
         at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:154)
         at org.ajax4jsf.webapp.BaseFilter.handleRequest(BaseFilter.java:260)
         at org.ajax4jsf.webapp.BaseFilter.processUploadsAndHandleRequest(BaseFilter.java:366)
         at org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:493)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:263)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:584)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
         at java.lang.Thread.run(Thread.java:595)

  • How to fix applepushservice.dll issues for downloading iTunes on Windows 7 64 bit

    I recently had iTunes crash on my home PC, Windows 7 64-bit.  I have tried several attempts to uninstall and reinstall the program and it still does not work and I receive error messages.  The latest:  The program can't start because ApplePushService.dll is missing from your computer.  Try reinstalling the program to fix the problem.  Problem is, the articles that I have seen state this is an Unknown source and my firewall will not allow it to be installed.  The original error was a Windows Error 7 (registry & .dll issues).  Any suggestions on how to fix this problem?

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • Design Issues for filtering a JTable

    Hi,
    I'm interested in any suggestions on how I should implement a JTable with filtering.
    I have a JTable, which also sorts, so it is associated with a FilterModel as well as a TableModel.
    I have a filter panel with a bunch of controls where a user can type in a name or date range or any number of other fields. This creates a Filter object and I pass this Filter object into my table model.
    Basically the way I thought would be best is if there are two collections within my tableModel. A Filtered collection and a Complete collection. When filtering the filtered collection is filtered and used to display.
    I just can't seem to get it to work yet.
    Does anyone have any ideas for a better approach, or is my approach the standard pattern for doing this kind of thing?
    cheers,
    Oliver

    actually I just had a thought. Within the panel code I could have two data models. One for the filtered stuff and one for the complete stuff :
    table.setModel(completeModel);
    //if user filters
    table.setModel(filteredModel);
    is that a better design?????????

  • RTF template design issue for header and body section

    Hi All,
    I have a RTF template having header and body sections.
    in header section i have order number, customer number etc.
    in body part i am displaying details for the respective order.
    But the problem is in header part my query is returning multiple row , so my requirement is for each row i.e order, i need to display the details accordingly.
    Ex: Header query returns order number : 1,2,3
    in my page i need below way:
    Order number :1
    a,b,c
    order number :2
    c,d,e
    order number :3
    g,h,g
    I tried to use loop in header section , but it is repeating only for header part not body part please help me on this.
    Thanks
    Deb

    Avinash thanks for your help,
    Actually in my requirement the header level and line level invoice numbers are different, in header level i have different invoices and for each invoice i need to display some other invoices along with some data.
    I have sent you the respective RTF file and Sample XML file to your mail, could you please help me on this, i am struggling whole day on this.
    the link between the header and line section is header_id.
    Thanks in advance
    Deb

  • Design issue for cube

    I have the 2 ODS having data like below
    ODS1:
    Customer                   Trans Type             quotation status
    1000          zuss          Approved
    1002          zuwq          Approved
    1003          zuss          Accepted
    ODS2:
    Customer                     Plan Date          
    1000          15.06. 2008
    1002          25.09.2008
    1003          30.12.2008
    If I stored into above two ODS data into basic cube, can I get below format or shall I get through for Multiprovider.
    Customer                   Trans Type               quotation status       Plan Date
    1000          zuss          Approved          15.06. 2008
    1002          zuwq          Approved          25.09.2008
    1003          zuss          Accepted          30.12.2008
    Thanks,
    Mannev

    Hi,
    If u laod both of these into a further ODS ..
    U will get that int format u specified..
    But with Cube,.U will have a separate entry for each record...
    SO In cube u may not be able to see that format..
    Multi provider will also show the way u wante..
    So go for Multi Provider or ODS..
    Hope this helps u..
    Best Regards,
    VVenkat...

  • Data mart from two DSOs to one - Loosing values - Design issue

    Dear BW experts,
    I´m dealing with a design issue for which I would really appreciate any help and suggestions.
    I will be as briefly as possible, and explain further based on the doubts , questions I received in order to make it easier go through this problem.
    I have two standard DSOs (DSO #1 and #2) feeding a third DSO (DSO #3), also standard.
    Each transformation DOES NOT include all fields, but only some of them.
    One of the source DSO (let´s call it DSO #1) is uploaded with a datasource that allows reverse type of records  (Record Mode = 'R'). Therefore some updates on DSO #1 comes with one entry with record mode 'R' and a 2nd entry with record mode = 'N' (new).
    Both feeds are delta mode, and not the same entries are updated through each of them, but the entries that are updated can differ (means an specific entry (unique key values)  could be update by one of the feeds, but no updates on the 2nd feed for that entry).
    Issue we have:  When a 'R' and 'N' entries happen in DSO #1 for any entry, that entry is also reversed and re created in the target DSO #3 (even being that not ALL fields are mapped in the transformation), and thefore we loose ALL the values that are exclusively updated through DSO #2, becoming blank.
    I don´t know it we are missing something in our design, or how should we fix this issue we have.
    Hope I was more or less clear with the description.
    ´d really appreciatted your feedback.
    Thanks!!
    Gustavo

    Hi Gustavo
    Two things I need to know.
    1. Do you have any End Routine in your DSO? If yes, what is the setting under "Update behavior of End Routine Display"....Option available right side of Delete Button ater End Rouine.
    2. Did you try with Full Load from DSO1 and DSO2 to DSO3? Do you face the same problem?
    Regards
    Anindya

  • Design issue using JFrame, JPanel, JLabel

    I have been working on this problems for several months now and I and nearly finished.
    I have a design question I hope others from this forum can provide some incite to the best approach.
    The problem space is a 8 X 8 Chessboard. I have designed a board using JPanels and JLables sitting inside a JFrame. In each square on the chessboard is a JLabel with an image. The "board" sits in the DEFAULT LAYER of a JLayeredPane. As the user clicks a specific square, a queen is placed in the square (8-queens problem). The only thing I do is swap out the image. All this works well--thanks to several of you from this forum. :-)
    When I add a new queen to the board, the application goes through the evaluation of attack positions. Next, the application should display the new chessboard with only the queens not threaten by other queens. I keep up with the chessboard using an boolean array internally. I build a second boolean array for the new or refreshed chessboard.
    What I want to do is build a second chessboard and "swap" it out with the one in the default layered pane. Can someone be so kind and shine some light on this design issue for me?
    Thank you for taking the time to read my post.

    I don't understand this approach. Swing is by default 'double buffered' and will not flicker. You will get this be default since this is one of the things the Swing painting model gives over AWT.
    You should look at just using JComponent and the paintComponent() method for drawing what you need.
    What I've done in the past is have a simple XML JDoM model. Have components that render themselves based on this model.
    Changing the model then I just issues a call to repaint() at the top level container.
    You can also add and remove items from the parent container. Then issue validate() or repaint(). Can't remember now but I think validate() hits the layout manager logic and then repaints.
    I'm pretty sure the Romain guy posted an example of how to easily draw a background chess board in a panel. ;-)
    The tree concept might really prove useful for a 'gaming tree' approach at the AI also.
    If you look at the Java3D API you will see they use a tree to represent what is rendered and the details about it. Really nice until you change something in the tree that cause the renderer to blow up. ;-)
    I guess the moral is always make small simple changes and test.
    Hope this is helpful.

  • Hi, i am a littl confused as I logged into creative cloud and bough the in design plan for a year but i cant seem to donwload it... there is a window that pops up and it says its downloading but its taking forever? any advice?

    hi, i am a littl confused as I logged into creative cloud and bough the in design plan for a year but i cant seem to donwload it... there is a window that pops up and it says its downloading but its taking forever? any advice?

    Hi Dima,
    Please refer to the help documents below:
    Troubleshoot Creative Cloud download and install issues
    Error downloading, installing, or updating Creative Cloud applications
    Regards,
    Sheena

  • How to sort out error downloading perpetual license of the CS6 Design Standard for MAC: JRun Servlet Error 413  Header Length too Large?

    How to sort out error downloading perpetual license of the CS6 Design Standard for MAC: JRun Servlet Error 413  Header Length too Large?
    Just bought the perpetual license online - student-teacher version. Received email confirming my eligibility and followed all instructions to a 't', but still got this 413 error message, and cannot continue.
    Would anyone be able to help me?
    Or how can I get in touch with Adobe themselves?
    How do you get to the chat? I bought it with their help, but cannot remember how to get there again. Took me ages to find the chat.
    Cheers!!! Thanks a million! Any help is welcome!!!!

    Make sure you have cookies enabled and clear your browser's cache before you try downloading.  If it continues to present that error try using a different browser.
    As far as getting to a chat link goes, it can be hit or miss...  Start Here  If after selecting relevant responses you are unable to find a solution, choose "Still need help? Contact us." and the chat contact option.

  • I purchased the design suite for PC but would like to install my second licensed download on a mac.  Can I do this?

    I purchased the design suite for PC but would like to install my second licensed download on a mac.  Can I do this?

    Your Windows license might only be installed on a Mac if you install Windows emulation software.
    While it might be possible to swap to the Mac platform, which depends on which version is involved, that means giving up the Windows license.

  • I am trying to download a trial version of Design Premium for Mac.  I download adobe assistant and t

    I am trying to download a trial version of Design Premium for Mac.
    I download adobe assistant and then nothing happens.
    Your site says to download assistant and then the software should download automatically. 
    Nothing is going on.
    Please help

    Can you try following the instructions in this document? Download, install trials

  • I purchased Creative Suite 6 Design Standard for windows, but I now have a MacBook, how can I download it onto my Mac - please tell me I don't need to spend another £1000!! :(

    I purchased Creative Suite 6 Design Standard for windows, but I now have a MacBook, how can I download it onto my Mac - please tell me I don't need to spend another £1000!!

    Change product platform or language
    You can swap languages/platforms for a latest version product (CS6 only) if you follow the instructions at the following link:
    http://helpx.adobe.com/x-productkb/policy-pricing/order-product-platform-language-swap.htm l
    Alternative: If you wish to continue using the software on the Windows machine as well then your only recourse without buying again would be to install a Windows emulator on the Mac so that it has the rght environment to install in

Maybe you are looking for

  • DVI to 22" Dell Display monitor question

    Hello, I would like to hook up my MBP 17" to a Dell 22" display and would like to know what cable I would need. DVI-D? DVI-A? DVI-I? This monitor accepts both DVI and VGA inputs. Your assistance would be appreciated. Thanks, Jordan

  • Extracting from PDF in Preview (bad quality)

    I have a huge PDF document, but need only a few of those pages, so I thought I'd extract the desired pages. Having the PDF file opened in Preview, and on the first page I wanted to save I went to "File"-"Save as" and chose a suitable format. The prob

  • Photoshop Elements 10 does not see newly added memory

    Hi, I have been using PSE 10 on my MacBook Pro with 4 GB memory (RAM). Today I upgraded to 16 GB but PSE still displays available memory as 3072 MB. What can I do to make it use the extra memory? Thanks for reading this.

  • Does the Beta * version work with Roboform,,, if not why not

    Why didn't you make Beta 8. work with Roboform, Skype, Yahoo Toolbar and others.

  • Can't Load 10.3 or higher

    I've preformed a fresh install after receiving my powerbook G4 from my father. It originally had 10.5 installed and now I am running 10.2.8. I tired in reload 10.5 as a fresh install and it gives me some msg about the kernel and not being able to ins