Sort in Display Tag

Hi,
I am using display Tag to paginate a table. I am sorting the columns in the table by giving
Sort="list" in display:table and
sortable="true" in display:column
Now i am facing problems in sorting a few columns as the values in the columns are numbers like Date (DD-MM-YYYY HH:MM:SS) and not string.
How can these be sorted?
Please help,
Thank you.

If it's the same display:table component I'm thinking of, then....
If the actual object is a Comparable object (like Date) then it can be.
Otherwise, there is a column attribute called sortByProperty, whereby you can create a method in a decorator class for this property that should return a Comparable object that will be used...
<display:column property="prop" title="title" sort="true" sortByProperty="comparable" />
     public Comparable getComparable() {
          // create some Comparable object, maybe a string representation of the object for the column
          // or some other object that implements that interface....
     }

Similar Messages

  • Display image with display tag

    Hi,
    I am using display tag but I don't know how to display the image in the display tag....let me explain how I fetched data and what I want to display..
    1. I kept all the images in the folder "userfiles" on the server and saved the url in the table(database).
    2. I fetched all the rows from table using the select statement and saved it into bean class and then to the list as....
    while(rs.next()) {
    String a="../userfiles/"+rs.getString(4)+"";
    System.out.println(a);
    list.add(new newsFetchBean(rs.getInt(1),rs.getString(2),rs.getString(3),a));
    everything is working fine and I am able to show data in the display tag on my jsp page using ...
    <display-el:table id="table1" pagesize="20" cellpadding="0" cellspacing="1px" name="newsList" requestURI="" class="displayTag" sort="list" export="true">
    <display-el:caption style="font: bold 1em Arial, Sans-Serif;padding: 15px 0 0 0;color:#009933;">Inquiries Received From Latest To Old</display-el:caption>
    <display-el:column title="Heading" property="vnews_heading" sortable="true" headerClass="sortable"></display-el:column>
    <display-el:column title="News Content" property="vnews_content" sortable="true" style="width:200px;" headerClass="sortable"></display-el:column>
    Problem: I need to show images form "userfiles" folder for whom URL is being fetched from the database as...
    String a="../userfiles/"+rs.getString(4)+"";
    System.out.println(a);
    list.add(new newsFetchBean(rs.getInt(1),rs.getString(2),rs.getString(3),a));
    in the upper statements....
    Please tell me how to show images....
    I tried .....
    <display-el:column title="Image" sortable="true" style="width:250px;" headerClass="sortable" ><img src="<c:out value="#{table1.vnews_imageURL}"/>"></display-el:column>
    but no success and I searched a lot for it....may be I am wrong in my search but please help......

    Open the page in your browser.
    View the generated HTML source.
    Take a look at the <img> element.
    Does its 'src' attribute point to a valid URL? Can you request that URL independently?

  • Auto sort in display:table?

    Hi, I hope im in the right forum... Here is my question, can I auto sort a display:table tag? Or can I call the sorting of a table without clicking tha table name? Thx...

    For calculating column level total, you can get the handle to the row that you have tabbed out. Check the following code
    In CO
    else if ("calculate".equals(pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM))){
    //get the Unique Row Reference for the Row on which the Even has been
    //generated.
    String lineRefId = (String)pageContext.getParameter(OAWebBeanConstants.EVENT_SOURCE_ROW_REFERENCE);
    Serializable [] param={lineRefId};
    //Call the AM method deleteInvoiceLine to delete the Invoice Lines
    am.invokeMethod("calculate",param);
    IN AM
    public void calculate(String lineRefId){
    //Fid the VORowImpl using the Unique Row
    // Reference
    LineVORowImpl lineRow = (LineVORowImpl)findRowByRef(lineRefId);
    //Now you can get the various attributes of this row
    xxx= lineRow.getXXX(); //Please take care of the Type casting
    yyy=lineRow.getYYY(); //Please take care of the Type casting
    //do the calculations and then set the values for the respective attributes.
    lineRow.setZZZ(abc);
    }

  • Problem with display tags (not accepting inner tags)

    Hi guys ,
    I am using display tags which is fine but i had a problem with anchor tag and the jsp display tag.
    <display:column title="Row_Id" >
    ' target="-blank" onclick=""><c:out value="${row_rowNum}"/>
    </display:column>
    here i got the exception:
    The value of attribute "href" associated with an element type "a" must not contain the '<' character.
    here if jstl is not used then how to put my value in anchor tag
    please help me.

    Can you use EL directly:
    <a href="example.jsp?id=${row.id"/"></a>

  • Error message: when downloading data from 2nd display tag table

    I am using disaply tag to display data in jsp page. I am using three different section to display the data with three display tag table. The data is displaying correctlly. The display tag downlod excel sheet is working for first display tag table. When i am trying to download data from 2nd and 3rd display tag table i am getting following error:
    Exception: [.TableTag] Unable to reset response before returning exported data. You are not using an export filter. Be sure that no other jsp tags are used before display:table or refer to the displaytag documentation on how to configure the export filter (requires j2ee 1.3).
         at org.displaytag.tags.TableTag.writeExport(TableTag.java:1438)
         at org.displaytag.tags.TableTag.doExport(TableTag.java:1364)
         at org.displaytag.tags.TableTag.doEndTag(TableTag.java:1215)
         at org.apache.jsp.InstalBase_005fReport_jsp._jspService(InstalBase_005fReport_jsp.java:974)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:595)
    As per the Exception i don't have any jsp tag before the display tag.
    Please help me if any body has any solution for the above exception.
    Thanks in advance.
    Smruti..

    See also http://helpx.adobe.com/acrobat/kb/pdf-browser-plugin-configuration.html

  • How to USE Display Tag in my jsp pageInMy JDBC program in NetBeans 5

    I want my program 2 fetch Data from the database and display in the nice format provided by the Display Tags.. I have simple JSP pages, without using any Beans. I m running netBeans 5.
    What is the Solution to display my Table data in JSP display Tags facility.
    reply soon ...
    tht help me a lot

    Hello,
    I am not sure how far you got with this display tag. I had issues added the displaytag lib and the dependencies to my library. On the right-hand side of Netbeans, under Project, under the war directory of the application, I was able to add the libraries to my project. It stop some errors I have been having for so long.
    Still, I am not able to display my data using display. How far this you did with this project? Have you resolve the problem so far. I know it's been a long time.
    Thanks
    eve

  • Using display tag library

    Hi,
    I am new to JSP. I am using display-tags for pagination purpose. I have checkboxes for each row. When I select some rows and go to next page and come back to the old page, the status of selected rows is lost. Is there any way to store the status of selected rows when I navigate to other pages? I am using struts framework.
    Another question, can I use javascript along with the display-tag? If I can, then how can I use it.
    Is there any other tags for pagination, that may solve my problem?
    Regards
    --Vaishakh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Can you please tell me how did you pass it thru session?
    What I mean is, when the user clicks on the next page, control is not transferred to our code (which would have allowed me to store selected items in session), instead the displaytag code is being called behind the scenes.
    Thanks.

  • Other apps don't respect Contact Sort and Display order

    I just noticed this on my iPhone 4 and am wondering if anyone else has seen that the Map and Mail apps do not respect the 'Sort Order' and Display Order' settings that are chosen in 'Settings'.
    I'm referring to when you get access to your contacts list when inside these apps (when you are composing a new email in Mail and use the '+' icon in the 'To:' & also when in Maps when using the 'contacts icon' to load an address in the 'Search' or 'Direction' fields.
    On my iPhone 4 these two apps have the Sort and Display order apparently hardwired in that they don't change the ordering when it is changed in 'Settings'. It used to be that the contact list would always update everywhere to respect the odering chosen in 'Settings'. I thought that this must be an OS issue but for some strange reason on my old iPhone 3G that also has iOS 4 on it, I don't see this seemingly incorrect behavior....so at least in my case it is hardware specific.

    1. I have a simlar problem with my new iPhone.
    2. Settings configured to be "Last, First" (both sort&display).
    2a. The Contacts app does not following this setting, but...
    2b. The Phone app contact list correctly follows the setting.
    3. In Settings app, configured to be "First, Last" (both sort& display).
    3a. The Contacts app follows this setting
    3b. The Phone app contact list follows this setting.
    4. Could be that the Contacts app does not depend on the Settings (hard-coded?).

  • Display Tag use with JSF Data Tables

    Has Anyone got to work the Display tag with JSF
    I have got soo far to display the table by using Display tag with JSF dataTables but unable to have a link or command button to navigate
    Theirs a online hack available for the same .....But i am unable to get to run it
    Has anybody got the solution for the same

    Hi ,
    I am trying to do the same but I have no success.
    My code is
    <html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
         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:c="urn:jsptld:http://java.sun.com/jstl/core"
         xmlns:display="urn:jsptld:http://displaytag.sf.net">
    <jsp:directive.page contentType="text/html; charset=UTF-8" />
    <jsp:directive.page import="fi.tavutaito.hibernate.User,java.util.*,org.displaytag.tags.TableTag" />
         <h:dataTable value="#{sessionScope.users}" var="user" style=""/>
         <display:table name="sessionScope.users" class="" id="user">
              <display:column property="username"/>
              </display:table>
    </html>
    where users is a List Obj in the session. In output I receive just this page.
    <html xmlns="http://www.w3.org/1999/xhtml" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:c="urn:jsptld:http://java.sun.com/jstl/core" xmlns:display="urn:jsptld:http://displaytag.sf.net">
    <jsp:directive.page contentType="text/html; charset=UTF-8"></jsp:directive.page>
    <jsp:directive.page import="fi.tavutaito.hibernate.User,java.util.*,org.displaytag.tags.TableTag"></jsp:directive.page><table style="">
    <tbody>
    <tr>
    </tr>
    <tr>
    </tr>
    </tbody>
    </table>
         <display:table name="sessionScope.users" id="user">
              <display:column property="username"></display:column>
              </display:table>
    </html>
    It seems to that display tags are not parsed...
    Do zou have an idea?
    Thanks a lot in advance
    beppoz

  • Display Tag for JDeveloper 10g. "Nothing found to Display"

    Hello everyone. I am currently using JDeveloper 10g. I already add the display tag in the library but when I try to use it always shows nothing to display.
    Can someone help me?
    this is my code
    <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
    <%@page import="java.sql.*"%>
    <%@page import="java.util.*"%>
    <%@ taglib uri="http://displaytag.sf.net" prefix="display"%>
    <%@ page contentType="text/html;charset=windows-1252"%>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>untitled</title>
    </head>
    <body>
    <%
    String method = request.getParameter("method");
    if (method == null) {
    List testData = new ArrayList();
    Map map1 = new TreeMap();
    map1.put("id","1");
    map1.put("firstName","Bill");
    map1.put("lastName","Gates");
    testData.add(map1);
    Map map2 = new TreeMap();
    map2.put("id","2");
    map2.put("firstName","Scott");
    map2.put("lastName","McNealy");
    testData.add(map2);
    Map map3 = new TreeMap();
    map3.put("id","3");
    map3.put("firstName","Bill");
    map3.put("lastName","Joy");
    testData.add(map3);
    session.setAttribute( "test", testData);
    } else {
    // grab the testDate from the session
    List testData = (List) session.getAttribute("test");
    String useMe = request.getParameter("id");
    if (useMe != null && method.equals("Delete")) {
    // figure out which object it is and delete it
    for (int i=0; i < testData.size(); i++) {
    Map m = (TreeMap) testData.get(i);
    String id = m.get("id").toString();
    if (useMe.equals(id)) {
    testData.remove(m);
    %><div class="message">Delete succeeded!</div><%
    break;
    } else if (method.equals("Save")) {
    // figure out which object it is and update it
    for (int i=0; i < testData.size(); i++) {
    Map m = (TreeMap) testData.get(i);
    String id = m.get("id").toString();
    if (useMe.equals(id)) {
    m.put("firstName", request.getParameter("firstName"));
    m.put("lastName", request.getParameter("lastName"));
    testData.set(i, m);
    %><div class="message"><h2>
    <b><c:out value=" "/></b> updated successfully!
    </h2></div><%
    break;
    } else if (method.equals("Add")) {
    Map map4 = new TreeMap();
    // generate a random number
    Random generator = new Random();
    String id = String.valueOf(generator.nextInt());
    pageContext.setAttribute("id", id);
    map4.put("id", id);
    map4.put("firstName", "");
    map4.put("lastName", "");
    testData.add(map4);
    %><c:redirect url="request.jsp">
    <c:param name="id" value=""/>
    <c:param name="method" value="Edit"/>
    </c:redirect>
    <%
    session.setAttribute( "test", testData);
    %>
    <c:set var="checkAll">
    <input type="checkbox" name="allbox" onclick="checkAll(this.form)" style="margin: 0 0 0 4px" />
    </c:set>
    <form name="editForm" action="request.jsp">
    <c:if test="false">
    <input type="button" onclick="location.href='request.jsp'" class="button"
    value="Reset List" />
    </c:if>
    <c:if test="false">
    <input type="submit" name="method" value="Save" class="button" />
    </c:if>
    <input type="submit" name="method" value="Edit" class="button"/>
    <input type="button" name="method" value="Add" class="button" onclick="location.href='?method=Add'" />
    <input type="submit" name="method" value="Delete" class="button" />
    <display:table name="{firstName=Bill, id=3, lastName=Joy}" id="test" class="list">
    <display:column style="width: 5%" title="checkbox">
    <input type="checkbox" name="id" value="<c:out value='${test.id}'/>" <c:if test="${param.id==test.id and param.method!='Save'}">checked="checked"</c:if> style="margin: 0 0 0 4px" onclick="radio(this)" />
    </display:column>
    <display:column title="First Name">
    <c:choose>
    <c:when test="${param.method == 'Edit' and param.id == test.id}">
    <input type="text" name="firstName" style="padding: 0"
    value="<c:out value="${test.firstName}"/>" />
    </c:when>
    <c:otherwise><c:out value="${test.firstName}"/></c:otherwise>
    </c:choose>
    </display:column>
    <display:column title="Last Name">
    <c:choose>
    <c:when test="${param.method == 'Edit' and param.id == test.id}">
    <input type="text" name="lastName" style="padding: 0"
    value="<c:out value="${test.lastName}"/>" />
    </c:when>
    <c:otherwise><c:out value="${test.lastName}"/></c:otherwise>
    </c:choose>
    </display:column>
    </display:table>
    </form>
    <table>
    <c:forEach items="${test}" var="test" >
    <tr>
    <td>
    <c:out value="${test.id}"/>     
    <c:out value="${test.firstName}"/>
    <c:out value="${test.lastName}"/>
    </td>
    </tr>
    </c:forEach>     
    </table>
    </body>
    </html>
    Edited by: 856423 on May 3, 2011 11:48 PM
    Edited by: 856423 on May 4, 2011 12:07 AM

    thanks for your reply.
    I am pretty sure that the list where I get the data contains values. I tried it by outputting the in ordinary table as shown here:
    <table>
    <c:forEach items="${test}" var="test" >
    <tr>
    <td>
    <c:out value="${test.id}"/>     
    <c:out value="${test.firstName}"/>
    <c:out value="${test.lastName}"/>
    </td>
    </tr>
    </c:forEach>     
    </table>
    It outputs properly but when I tried this, it just output NOTHING FOUND TO DISPLAY.
    <display:table name="{firstName=Bill, id=3, lastName=Joy}" id="test" class="list">
    <display:column style="width: 5%" title="checkbox">
    <input type="checkbox" name="id" value="<c:out value='${test.id}'/>" <c:if test="${param.id==test.id and param.method!='Save'}">checked="checked"</c:if> style="margin: 0 0 0 4px" onclick="radio(this)" />
    </display:column>
    <display:column title="First Name">
    <c:choose>
    <c:when test="${param.method == 'Edit' and param.id == test.id}">
    <input type="text" name="firstName" style="padding: 0"
    value="<c:out value="${test.firstName}"/>" />
    </c:when>
    <c:otherwise><c:out value="${test.firstName}"/></c:otherwise>
    </c:choose>
    </display:column>
    <display:column title="Last Name">
    <c:choose>
    <c:when test="${param.method == 'Edit' and param.id == test.id}">
    <input type="text" name="lastName" style="padding: 0"
    value="<c:out value="${test.lastName}"/>" />
    </c:when>
    <c:otherwise><c:out value="${test.lastName}"/></c:otherwise>
    </c:choose>
    </display:column>
    </display:table>

  • How to call javascript function with dynamic data in display tag

    Hi,
    Iam new to pagination concept. Iam using display tag to display rows in jsp by strtus.
    I have a problem when calling the javascript function using ahref in attribute in display tag.
    <bean:define name="form1" property="EditDetails.List" id="ListDisplay"/>
    <display:table name="pageScope.ListDisplay" cellpadding="0" cellspacing="1" pagesize="10" partialList="false" size="listSize" requestURI="">
    <display:column property="poNo" href='javascript:searchEditDetails("./submitOrder.do? actionID=getMISLoadEdit&poNumberSel=<%=((com.po.bean.EditDetails)poListDisplay).getNo()%>&statusIdSelected=<%=((com.po.bean.EditDetails)ListDisplay).getStatusId()%>")'
    title="Number"/>                         
    <display:column property="strDate"title="Date" />
    <display:column property="orderValue"title="Order Value(INR)"/>
    <display:column property="stringRequestedDeliveryDate"title="Suggested Delivery Date"/>
    <display:column property="statusDescription" title="Status" />
    </display:table>
    The above code display the data in row format is working fine when I click the No It thow javascript error and its not redirecting to the other page.
    When I try this with ordinary struts its working fine the code is:
    <logic:iterate id="polist" name="Form1" property="EditDetails.List" indexId="i" type="com.bean.EditDetails">
    <tr>
    <td ><a href="javascript:searchEditDetails("./submitOrder.do?actionID=getMISLoadEdit&NumberSel=<%=((com.bean.EditDetails)polist).getNo()%>&statusIdSelected=<%=((com.bean.EditDetails)polist).getStatusId()%>")"><html:hidden name="polist" property="No" write="true" /></a>     </td>
    <td><html:hidden name="polist" property="strDate" write="true" /></td>
    <td><html:hidden name="polist" property="orderValue" write="true" /></td>
    <td><html:hidden name="polist" property="stringRequestedDeliveryDate" write="true" />     </td>
    <td><html:hidden name="polist" property="statusDescription" write="true" /></td>
    </tr>
    </logic:iterate>
    Please help me how to call javascript with dynamic data.
    Thanks in advance

    The ADF Mobile Container Utilities API may be used from JavaScript or Java.
    Application Container APIs - 11g Release 2 (11.1.2.4.0)

  • Display:tag and excel formatting

    I am using the display:tag (http://displaytag.sourceforge.net/) code currently. I have a separate jsp for my excel dumps. However, when I export to excel, any leading zero's I have are shaved and dropped off by excel formatting. Is there a way to keep these leading zeros when going to excel??
    I wasn't sure to format something in my css, then apply the class? Or to put something inside of the <display:column> tag itself.
    thx in advance

    I believe that is the problem. I have tried putting in quotes, but only get errors. Here is the exact field I need the code on:
    <display:column property="ACCTG_LOC_CD7" title="Location" align="right" /><td/>

  • Struts display tag

    Link within display tag for edit operation

    Where you are facing the problem.
    Next time onwards post web related doubt in Web Tier APIs topic.

  • Editable tabel :display:tag

    Does anyone ever implemented editable display tag, if yes, can you please give an example, how to im0plement Editable table.
    Thanks,
    RD

    Thanks for your reply.
    Editable table means, I have a table with,say, 10 rows, there will be a button in each row, and if user wants to modify a particular row, user can click on that button and modify that particular rows data which will be updated in the database.
    If you have got any sample, please put here which will really help me.
    Thanks.

  • Using Display tag library - sorting and Paging

    I have generated a grid using this tag library which has number of in built features. Out of which on is grid sorting and pagination. But this sorts the grid in one page only, not complete grid. Does any one have solution for this? I am trying to get the source code which does this. If any one has solution then please help me..
    Thanks!

    In this case you have to do external sorting insted of defalutsorting provided by dispaly Tag Library. find sample code for External Sorting.
    Follow the Steps:
    <display:table name="testList" {color:#ff0000}sort="external"{color} defaultsort="1" id="empTable">
    <display:column property="id" title="ID" sortable="true" {color:#ff0000}sortName="id"{color} />
    <display:column property="firstName" sortable="true" title="First Name" />
    <display:column property="lastName" sortable="true" title="Last Name" />
    <display:column property="address" sortable="true" title="Email Address"/>
    </display:table>
    To determine the request parameter name for column(like ID) sorting you can do :
    String studenid = request.getParameter((new ParamEncoder("empTable")).encodeParameterName(TableTagParameters.PARAMETER_SORT))
    fire a query in DAO Class using request parameter to get sorted list and map a resultset to table.
    Thanks,
    thagelapally
    Edited by: Thagelapally on Jul 22, 2009 4:29 AM
    Edited by: Thagelapally on Jul 22, 2009 4:32 AM

Maybe you are looking for

  • The alias "Harddisk" can't be opened because the original item can't be fou

    Hello all, I have a very scary problem. My external 1.5 Tb Toshiba does not connect anymore. I used to have it connect to my MacBookPro through the Airport Extreme USB connection. Then I wanted to delete a folder, earlier today, and ever since, the h

  • Photos do not appear properly on MyWay homepage.

    When I do a restart of my laptop and open Firefox, my homepage (MyWay.com) opens properly showing photos. See attachment. After closing Firefox, and then reopening it, the photo do not appear, and the wheel in the upper left hand corner goes round an

  • How do i save pictures to icloud

    My current I phone 4s is defective.  I have received a new one as a replacement.  I cannot figure out how to get my old pictures on my new phone.  Can I?

  • Slow File I/O with newer compilers (SPARCompiler 5 and gcc 3)

    Well it's more like slow File I, as I'm only really testing Input, but anyway, here goes... I have a simple program that takes a file of about 250mb and simply loops through the file reading it in chunks of 8,192 bytes. Basically I'm timing the read

  • How to set autotrace to explain plan ONLY

    Hi, I would like to see explain plan for a long running statement. Now if I do following: set autotrace on explain UPDATE ......-- my statement I get the plan, but the rows are updated also :-( Is there a way to tell ORACLE, please show me the explai