Always show af:table detailStamp

Is there a way to cause the af:table to always show the detailStamp row and not display the "Show/Hide Details" column?
Thanks.

Since I couldn't find a better way, here's a hack to show all detailStamps for an af:table on page load. This works for Netscape 7.2 and IE 6 at least. I've only tested it with a single af:table. Put it after your closing </af:table> tag.
<!-- Javascript hack to open all the details on page load -->
<script type="text/javascript">
     function trimWhitespace(str) {
          return str.replace(/^\s+/,'').replace(/\s+$/,'');
     var atags = document.getElementsByTagName("a");
     for(var i = 0; i < atags.length; i++) {
          var atag = atags[ i ];
          var onclickAttr = atag.getAttribute("onclick");
          if(onclickAttr != null) {
               var text = onclickAttr.toString();
               // IE returns a function, not a string, get the actual code
               if(text.indexOf("function") == 0) {
                    text = text.substring(text.indexOf("{") + 1);
                    text = text.substring(0, text.lastIndexOf("}"));
                    text = trimWhitespace(text);
               if(text.indexOf("return _submitHideShow") == 0) {
                    // remove the "return " and execute
                    setTimeout(text.substring("return ".length), 0);
</script>

Similar Messages

  • I want Preview to always show the thumbnails view!!!!!

    Latest build of preview, Mountain lion OS X
    When I open a PDF in Preview, it shows the Table of Contents view. I want Preview to always show the thumbnails view! Is there a way to change this to the default setting? (And dont say goto view - thumbnails, that's not a default option)Every time I pick a photo or PDF it starts with the Table of Contents view every time!

    This works but only when opening the same document. Other documents just default to the plain view.
    Big oversight - particularly when merging lots pdfs and each one has to be manually changed to thumbnail view. All becomes very cumbersome

  • Af:chooseDate always shows wrong selection (today's date)

    Hi,
    I'm using 10.1.3.3. I think that the af:chooseDate component has a serious usability problem: it's always showing today's date as currently selected, although the related af:selectInputDate component is refreshed correctly. This is true even:
    - after any number of clicks (selections),
    - after changing the month back and forth,
    - when using different types (Date, Calendar, String) of bound variables (e.g. in a session bean),
    - when the bound variable has a default value,
    - when triggering additional PPR refresh event for the component (just to be sure that it's refreshed).
    Does anybody have any ideas how to make it work correctly? This behaviour is very confusing for the users and I really need to use this component instead of a popup window offered by af:selectInputDate.
    Thanks in advance,
    Patrik

    Frank, I think that's just another description of the problem. Though it does not have a state, it knows about the input field - so the selection should be refreshed via PPR or JavaScript. In case anybody is interested, here is the JS i wrote to solve this.
    // Mark clicked day as selected in an af:chooseDate component
    function markClickedDayAsSelected(e) {
        var eventSourceElement;
        if(e==null) {
            eventSourceElement = event.srcElement; //IE
        else {
            eventSourceElement = e.target; //FF
        if (eventSourceElement.className != "x4r" && eventSourceElement.nodeName == "A") {
            var days = document.getElementById("formId:chooseDateId").getElementsByTagName("tbody")[0].getElementsByTagName("tr")[1].
    getElementsByTagName("td")[0].getElementsByTagName("table")[0].getElementsByTagName("tbody")[0].getElementsByTagName("span");
            for (var i=0; i<days.length; i++) {
                var d = days;
    if (d.className=="x4r") {
    // Move innerHTML outside of SPAN.x4r (into A) and remove SPAN.x4r
    var newInner = d.innerHTML;
    var appendToNode = d.parentNode;
    appendToNode.innerHTML=newInner;
    break;
    // Move innerHTML into a new SPAN.x4r inside A
    var newSpan = document.createElement("span");
    newSpan.className="x4r";
    var inner = eventSourceElement.innerHTML;
    newSpan.innerHTML=inner;
    eventSourceElement.innerHTML="";
    eventSourceElement.appendChild(newSpan);
    Regards,
    Patrik

  • "description" text always show

    dear all expert.
    i have a little problem with my alv
    in subtotal why always show "description" in my field catalog i don't write "description"
    i don't know how to remove it, i just want to show the real fieldcat without "description"
    here is the screen shoot
    [IMG]http://i40.photobucket.com/albums/e227/indra_jale/shootdescription.jpg[/IMG]
    please help me to remove the "description"

    Hi
    Check this code that how to change sub-total test
    REPORT  zfi006_positive_pay_file NO STANDARD PAGE HEADING.
    DATA:  gt_bdcdata    TYPE STANDARD TABLE OF bdcdata,
           gt_bdcmsgcoll TYPE STANDARD TABLE OF bdcmsgcoll,
           gs_bdcdata    TYPE bdcdata,
           gv_src_dir    TYPE char80s,
           gv_tgt_dir    TYPE char80s,
           gv_filename   TYPE char80s,
           gv_stat       TYPE success_flag,
           gv_command    TYPE char05,
           gv_cnt     TYPE i,
           gv_flag    TYPE c.
    Variables declaration
    DATA : gs_reclist    TYPE somlreci1,
           gs_t042i      TYPE typ_t042i.
    DATA: gt_alv_fieldcat   TYPE slis_t_fieldcat_alv,
          gs_alv_layout     TYPE slis_layout_alv,
          gt_alv_sort       TYPE slis_t_sortinfo_alv,
          gt_alv_events     TYPE slis_t_event,
          gs_alv_print      TYPE slis_print_alv,
    layout set before selection-screen
      PERFORM get_default_variant USING 'NORM'
                                  CHANGING gs_alv_variant p_vari.
    START-OF-SELECTION event
    START-OF-SELECTION.
    Do validation
      PERFORM do_filepath_validation.
    Refresh all global data
      PERFORM refresh_global_data.
    Collect data
      PERFORM collect_data_from_t042i.
    Process table gt_t042i and calling standard RFCHKE00 program
      PERFORM process_data_to_rfchke00.
    Processing report display into alv list
      PERFORM report_data_to_final.
    Alv Field Cata-log declaration
      PERFORM set_field  CHANGING gt_alv_fieldcat.
      PERFORM set_layout CHANGING gs_alv_layout.
      PERFORM set_sort   CHANGING gt_alv_sort.
      PERFORM set_event  CHANGING gt_alv_events.
    Calling the ALV list display FM by passing the values
      PERFORM process_alvlistdata_to_spool.
    Sending an email attachment to paramount accounts payable
      PERFORM listoutput_to_mail.
    *&      Form  SET_FIELD
        Define fieldcat of Final table
    FORM set_field  CHANGING p_alv_fieldcat TYPE slis_t_fieldcat_alv.
    Define fieldcat of Final table
      DATA ls_fieldcat TYPE slis_fieldcat_alv.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'UBHKT'.
      ls_fieldcat-tabname      = gc_tab_final.
      ls_fieldcat-outputlen    = 14.
      ls_fieldcat-seltext_l    = ls_fieldcat-seltext_m = text-003.
      ls_fieldcat-reptext_ddic = text-003.
      APPEND ls_fieldcat TO p_alv_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'UBHKT1'.
      ls_fieldcat-tabname      = gc_tab_final.
      ls_fieldcat-outputlen    = 14.
      ls_fieldcat-no_out       = 'X'.
      ls_fieldcat-seltext_l    = ls_fieldcat-seltext_m = text-003.
      ls_fieldcat-reptext_ddic = text-003.
      APPEND ls_fieldcat TO p_alv_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'UBHKT2'.
      ls_fieldcat-tabname      = gc_tab_final.
      ls_fieldcat-outputlen    = 14.
      ls_fieldcat-no_out       = 'X'.
      ls_fieldcat-seltext_l    = ls_fieldcat-seltext_m = text-003.
      ls_fieldcat-reptext_ddic = text-003.
      APPEND ls_fieldcat TO p_alv_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'CHECT'.
      ls_fieldcat-tabname      = gc_tab_final.
      ls_fieldcat-outputlen    = 13.
      ls_fieldcat-seltext_l    = ls_fieldcat-seltext_m = text-004.
      ls_fieldcat-reptext_ddic = text-004.
      APPEND ls_fieldcat TO p_alv_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'ZALDT'.
      ls_fieldcat-tabname      = gc_tab_final.
      ls_fieldcat-outputlen    = 10.
      ls_fieldcat-seltext_l    = ls_fieldcat-seltext_m = text-005.
      ls_fieldcat-reptext_ddic = text-005.
      APPEND ls_fieldcat TO p_alv_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'CHK_SEQ'.
      ls_fieldcat-tabname      = gc_tab_final.
      ls_fieldcat-outputlen    = 7.
      ls_fieldcat-no_out       = 'X'.
      ls_fieldcat-seltext_l    = ls_fieldcat-seltext_m = text-018.
      ls_fieldcat-reptext_ddic = text-018.
      APPEND ls_fieldcat TO p_alv_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'RWBTR'.
      ls_fieldcat-tabname      = gc_tab_final.
      ls_fieldcat-outputlen    = 18.
      ls_fieldcat-do_sum       = 'X'.
      ls_fieldcat-seltext_l    = ls_fieldcat-seltext_m = text-006.
      ls_fieldcat-reptext_ddic = text-006.
      APPEND ls_fieldcat TO p_alv_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'VOIDD'.
      ls_fieldcat-tabname      = gc_tab_final.
      ls_fieldcat-outputlen    = 6.
      ls_fieldcat-seltext_l    = ls_fieldcat-seltext_m = text-007.
      ls_fieldcat-reptext_ddic = text-007.
      APPEND ls_fieldcat TO p_alv_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'ZNME1'.
      ls_fieldcat-tabname      = gc_tab_final.
      ls_fieldcat-outputlen    = 35.
      ls_fieldcat-seltext_l    = ls_fieldcat-seltext_m = text-008.
      ls_fieldcat-reptext_ddic = text-008.
      APPEND ls_fieldcat TO p_alv_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'ZBUKR'.
      ls_fieldcat-tabname      = gc_tab_final.
      ls_fieldcat-outputlen    = 12.
      ls_fieldcat-seltext_l    = ls_fieldcat-seltext_m = text-009.
      ls_fieldcat-reptext_ddic = text-009.
      APPEND ls_fieldcat TO p_alv_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'LIFNR'.
      ls_fieldcat-tabname      = gc_tab_final.
      ls_fieldcat-outputlen    = 10.
      ls_fieldcat-seltext_l    = ls_fieldcat-seltext_m = text-010.
      ls_fieldcat-reptext_ddic = text-010.
      APPEND ls_fieldcat TO p_alv_fieldcat.
      CLEAR ls_fieldcat.
      ls_fieldcat-fieldname    = 'COUNT'.
      ls_fieldcat-tabname      = gc_tab_final.
      ls_fieldcat-outputlen    = 15.
      ls_fieldcat-do_sum       = 'X'.
      ls_fieldcat-seltext_l    = ls_fieldcat-seltext_m = text-s03.
      ls_fieldcat-reptext_ddic = text-s03.
      APPEND ls_fieldcat TO p_alv_fieldcat.
      gv_repid = sy-repid.
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          i_program_name     = gv_repid
          i_internal_tabname = gc_tab_final
          i_structure_name   = ' '
        CHANGING
          ct_fieldcat        = p_alv_fieldcat[].
    ENDFORM.                    " SET_FIELD
    *&      Form  SET_LAYOUT
    FORM set_layout  CHANGING p_alv_layout TYPE  slis_layout_alv.
      p_alv_layout-zebra             = ' '.
      p_alv_layout-detail_popup      = 'X'.
      p_alv_layout-group_change_edit = 'X'.
    ENDFORM.                    " SET_LAYOUT
    *&      Form  SET_SORT
       Sorting ALV data based on fields
    FORM set_sort  CHANGING p_alv_sort TYPE slis_t_sortinfo_alv.
      DATA : ls_hlp_sort TYPE slis_sortinfo_alv.
      ADD 1 TO   ls_hlp_sort-spos .
      ls_hlp_sort-fieldname = 'UBHKT1'.
      ls_hlp_sort-tabname = 'GT_FINAL'.
      ls_hlp_sort-subtot    = 'X'.
      ls_hlp_sort-up        = 'X'.
      APPEND ls_hlp_sort TO p_alv_sort.
      ADD 1 TO   ls_hlp_sort-spos .
      ls_hlp_sort-fieldname = 'CHK_SEQ'.
      ls_hlp_sort-tabname = 'GT_FINAL'.
      ls_hlp_sort-subtot    = 'X'.
      ls_hlp_sort-up        = 'X'.
      APPEND ls_hlp_sort TO p_alv_sort.
    ENDFORM.                    " SET_SORT
    *&      Form  SET_EVENT
       Events passing to ALV Function module parameters
    FORM set_event  CHANGING p_alv_events TYPE slis_t_event.
      DATA ls_events TYPE slis_alv_event .
      REFRESH p_alv_events.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 4
        IMPORTING
          et_events       = p_alv_events
        EXCEPTIONS
          list_type_wrong = 0
          OTHERS          = 0.
      READ TABLE p_alv_events  INTO ls_events
                        WITH KEY name = slis_ev_top_of_page.
      IF sy-subrc = 0.
        MOVE gc_top_of_page TO ls_events-form.
        MODIFY p_alv_events FROM ls_events INDEX sy-tabix.
      ENDIF.
      READ TABLE p_alv_events  INTO ls_events
                        WITH KEY name = slis_ev_subtotal_text.
      IF sy-subrc = 0.
        MOVE gc_formname_subtotal_text TO ls_events-form.
        MODIFY p_alv_events FROM ls_events INDEX sy-tabix.
      ENDIF.
      READ TABLE p_alv_events  INTO ls_events
                         WITH KEY name = slis_ev_after_line_output.
      IF sy-subrc = 0.
        MOVE gc_after_line_output TO ls_events-form.
        MODIFY p_alv_events FROM ls_events INDEX sy-tabix.
      ENDIF.
    ENDFORM.                    " SET_EVENT
    *&      Form  subtotal_text
          Build subtotal text
          P_total  Total
          p_subtot_text Subtotal text info
    FORM subtotal_text CHANGING
                   p_total TYPE any
                   p_subtot_text TYPE slis_subtot_text.
    Check_seq level sub total
      IF p_subtot_text-criteria = 'CHK_SEQ'.
        p_subtot_text-display_text_for_subtotal
        = '                        CHK-SEQ TOTAL'(s01).
      ENDIF.
    Account number level sub total
      IF p_subtot_text-criteria = 'UBHKT1'.
        p_subtot_text-display_text_for_subtotal
        = '                           ACCT TOTAL'(s02).
      ENDIF.
    ENDFORM.                    "subtotal_text
    *&      Form  AFTER_LINE_OUTPUT
      ALV The actual subtotalu2019s output is created using
       the WRITE and FORMAT statements.
    FORM after_line_output
      USING p_rs_lineinfo TYPE slis_lineinfo.
    Declaration of local variables
      DATA: lv_total_amount TYPE wrbtr,     "Total For Successful Entries
            lv_count   TYPE i,
            lv_lines   TYPE i.
    Getting No. of Lines in the table GT_FINAL
      DESCRIBE TABLE gt_final LINES lv_lines.
    Displaying the totals after the last record of the internal
    table T_OUTPUT
      IF p_rs_lineinfo-tabindex = lv_lines.
        gv_flag  = 'X'.
      ENDIF.
      IF gv_flag = 'X'.
        IF gv_cnt <> '3'.
          gv_cnt = gv_cnt + 1.
        ENDIF.
        IF gv_cnt = '3'.
          LOOP AT gt_final INTO gs_final.
            lv_total_amount =    lv_total_amount + gs_final-rwbtr.
            lv_count = lv_count + 1.
          ENDLOOP.
      Set format for the total line display
          ULINE AT (p_rs_lineinfo-linsz).        "Dynamic Line Size
          FORMAT INTENSIFIED COLOR COL_TOTAL ON. "Setting the color
          "For the total row
          "As Yellow
          WRITE : /    sy-vline,                 "Vertical Line
                       text-s04,                 "Caption For Total
                       33 lv_total_amount.       "Total Of
          POSITION     p_rs_lineinfo-linsz.      "Dynamic Line Size
          WRITE :      sy-vline.                 "Vertical Line
          ULINE AT     (p_rs_lineinfo-linsz).    "Dynamic Line Size
          WRITE : /    sy-vline ,                "Vertical Line
                       text-s05,                 "Caption For Total
                       33 lv_count.
          POSITION     p_rs_lineinfo-linsz.      "Dynamic Line Size
          WRITE :      sy-vline.                 "Vertical Line
          FORMAT COLOR OFF.                      "Color Setting Off
        ENDIF.
      ENDIF.
    ENDFORM.                    "AFTER_LINE_OUTPUT
    Display output
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          i_callback_program = gv_repid
          is_layout          = gs_alv_layout
          is_variant         = gs_alv_variant
          it_fieldcat        = gt_alv_fieldcat
          it_sort            = gt_alv_sort
          it_events          = gt_alv_events
        TABLES
          t_outtab           = gt_final[]
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " LISTOUTPUT_TO_MAIL

  • How to always show rulers in Photoshop CS5 and other problems

    Does anyone know how to make Photoshop CS5 always show rulers in mac? I have not have this issue with any other PS. I need the rulers to drag guides contantly, but photoshop cs5 would not show the rulers automatically. Everytime I have to go to View --> Show rulers or the shortcut command + R. Is there a way to instruct Photoshop to always show rules with any file I open or create?
    I have many other issues with Photoshop CS5 that CS2, 3, and 4 had out of the box... It is very frustrating that I spent all this money and instead of working, I have been on the phone with Adobe for hours... I am very disappointed so far.
    I have had CS5 Master's Collection for 2 months now on Mac 10.6.7. I have reinstalled Photoshop 3 times as some shortcuts were not working like shift plus scroll to inscrease to 100%, 200%, etc.
    The other thing that still does not work and Adobe has not offered a solution is that my Photoshop would not append extensions. Regardless of the Preferences settings, all my files get saved as JPG instead of jpg... I wonder if any of you out there have this issue as well?
    Thank you.

    I believe my computer and its account are healthy. I just bought the mac pro with solid state and the only programs I have installed are the Master Collection CS5.
    I have good news though - After two months of waiting, I was finally able to speak with Adobe specialists yesterday and they changed the shortcut for Save As that Photoshop ships with from Command + Alt + S to Command + Shift + S - and miraculously now Photoshop appends extensions!!!
    However, my question about always displaying rulers remains. We got disconnected and I didn't have a chance to ask them (I was on hold for an hour and a half!)

  • Windows always shows lock screen when idle, ignores setting

    On Windows 8, I had my computer set up so that the screen would turn off after a period of inactivity. When I would move the mouse or press a key, it would resume without asking me to log in. After upgrading to Windows 8.1, it is now always showing me the
    lock screen when resuming from idle. In the lock screen settings, I found a new option named "When my PC is inactive, show the locks screen instead of turning off the screen". I have disabled this setting, but my computer still locks every time the
    screen turns off.
    How can I get my computer to stop locking when it is idle?

    Hi,
    What about the settings in Screen Saver? Please check the Option "On resume, display logon screen" is unchecked.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • SMF service always shows offline even when it is up and running

    I have added a service to SMF under /var/svc/manifest/application and am successful in starting it, but state always shows offline. How can I get it to show up as "online"?
    Output of svcs -l command:
    bash-3.00# svcs -l esm
    fmri svc:/application/esm:default
    enabled true
    state offline
    next_state online
    state_time Fri 01 Jun 2007 11:02:47 AM PDT
    logfile /var/svc/log/application-esm:default.log
    restarter svc:/system/svc/restarter:default
    contract_id 1113
    dependency require_all/none svc:/system/filesystem/local (online)
    dependency require_all/none svc:/network/mysql (online)
    ouput of svcs -x command:
    bash-3.00# svcs -x esm
    svc:/application/esm:default (?)
    State: offline since Fri 01 Jun 2007 11:02:47 AM PDT
    Reason: Start method is running.
    See: http://sun.com/msg/SMF-8000-C4
    See: /var/svc/log/application-esm:default.log
    Impact: This service is not running.

    Turns out I just needed to launch the app as a background task (use & in my svc method file) and it works fine.

  • Cisco Jabber for Windows always shows "Away"

    Cisco Jabber for Windows (9.0.1, CUPS 8.6.4, UCM 8.6.2, Exchange 2010) always shows status as "Away" for one user. Others seem to be working correctly showing "one the phone", "in a meeting", etc. Tried reinstalling client with no change. If you manually change to "Available", it changes right back to "Away". Anyone have an idea where to look (registry, logs, etc.)?

    I am seeing the same problem.  I haven't tried a different user to login on the same machine, but I did try closing my client on my primary machine (exited) and then logged in on a different computer with a fresh Jabber for Windows install. 
    I am running Jabber for Windows Version 9.0.2 Build 9453 on windows 7 64bit primarily, and Windows XP as the second test.  Running CUPS 8.6.4 in HA over WAN cluster mode with CUCM 7.1.5 and Unity Connection 8.5.1 ES 16.
    Phone presence information does still flow through when I pick up my phone hand set my status changes from Away to On a Call.
    When I check the presence diagnostic test for my user, it also reports that I am away.

  • Messages status always shows "offline"

    I have only updated my mid 2009 macbook pro to Yosemite.
    I have synced to my iPhone ok.
    My Messages status always shows "offline" on the MBP even though I can chat on it.
    Many thanks for any help.

    At the bottom of the left New Message box, you can change it there.

  • HT5622 Hi, can you help me for my payment account? It's always show " Your payment method was declined..." How can I fix it? There's only 3 to choose fpr Visa, Master Card and Amex.. But doesn't have "None".. I can't download any apps from app store :(

    Hi, can you help me for my payment account? It's always show " Your payment method was declined..." How can I fix it? There's only 3 to choose fpr Visa, Master Card and Amex.. But doesn't have "None".. I can't download any apps from app store

    http://support.apple.com/kb/ht1918

  • Why is it that when I set the preference to always show the tab bar, it refuses to stay checked after I quit Firefox and restart it?

    Using Mac OSX10.6.7 and FF 4.0.1, I'm having a problem with the preference to always show the tab bar. I want it to always show. I check this in the Preferences under the "tab" window, and everything is fine until I quit FF and when I restart FF the tab bar is gone again. I go into preferences, and that option is now unchecked. How can I fix this so that my preference is saved?

    That hasn't helped the last ten times I tried. I posted before. I deleted the preferences file, I tried changing the preferences file, I went into about:config and changed the autoHide preference there. No dice. Firefox is not saving my preference for that one thing.

  • I SET UP THE HOME SHARING ON MY COMPUTER, AND i CAN STREAM MY PHOTOS AND SEE ALL THE VIDEOS AND LISTEN SONGS IN MY ITUNES, BUT CAN NOT DO HOME SHARING, ON THE TV, ALWAYS SHOWS "TURN ON HOME SHARING ON YOUR OMPUTER WITH YOUR ID WHICH I DID BUT NOTHING HELP

    I just bought my apple tv yesterday and SET UP THE HOME SHARING ON MY COMPUTER, I CAN STREAM MY PHOTOS AND SEE ALL THE VIDEOS AND LISTEN SONGS IN MY ITUNES, BUT CAN NOT DO HOME SHARING, ON THE TV, ALWAYS SHOWS "TURN ON HOME SHARING ON YOUR OMPUTER WITH YOUR ID WHICH I DID BUT NOTHING HAPPEN. WHAT'S WRONG? WHAT SHALL I DO NOW?

    I have found with AppleTV that it is the IPV6 on the computer you want to access is the problem.  The issue is that Homegroup on Win 7 or Win 8 requires IPV6 to work, but AppleTV won't work with IPV6.  (So maybe double check you have IPV6 turned off)
    So you have to make a choice - Homegroup or AppleTV.... but you can't have both, until Apple brings ATV up to date. (crazy that it does not recognise IPV6 - c'mon Apple!)
    You can set up sharing individually in Win 7 or 8 and have the ATV access files that way.
    Having said that, there is always the exception.. I have an old HP home server running Win8 and it services ATV - but is part of the Homegroup... have no idea why it works on both, but no other machine on the home network will talk to both ATV and Homegroup at the same time!

  • How to show a table in Excel as it is.. in Siena? PLZZ ANSWER!

    My Excel sheet has a table named 'Compliance' with 5 columns....'S. No.' , 'Specifications', ....(so on).... , 'Remarks' and data entered in rows.
    Now.. I want to show this table as it is in my Siena App. How do I do this??
    Also.. I want to add another column(6th) in the app which contains checkboxes ...such that I can Check some of the rows (from Compliance table in app) I want, and add them to a separate Collection that can be viewed on another screen.
    Please Help!!!!

    Just a quick example if needed.
    Create a Custom Gallery (Visuals < Galleries < Custom Gallery (choose the one on the right).
    Move the Gallery to wherever you want it on the page.
    Change the following:
    Design < Template Size: 40
    Design < Template Padding: 5
    Data < Items: Compliance
    Assuming you selected the Custom Gallery on thr right, Template Size refers to the height of the Template, I just used 40 as a quick example.
    The Temnplate Padding refers to the empty space between each template, and the space between the templates and the Gallery.
    Click inside the top template on the Gallery:
    Add a Label: Visuals < Label
    Set its Text to 'S. No.'
    Data < Text: ThisItem!'S. No.'
    Assuming you clicked inside the top template in the Gallery, you will see the lable repeated in each of the templates below it.   If it didn't, delete it, then re click inside the template, ad add it.
    Adjust the width of the label to the widest useage expected, as it will not grow automatically.
    Add another Label: Visuals < Label
    Set its Text to Specifications
    Data < Text: ThisItem!Specifications
    Notice the difference between the two data sources.  Since S. No contains a space, you have to put a set of ' around it.   The other does not have a space, so it soesn't use the '
    Drag the Label to the right of the first label.
    Repeat for the remaining fields.
    After all of the fields are in the Gallery, add a CheckBox:
    Visuals < CheckBox
    Change the text next to the TextBox with its Text property.
    To use the CheckBox to Collect that specific record to Collection2, use:
    Behavior < OnChecked: Collect(Collection2, ThisItem)
    It is usually usefull to also remove the item if UnChecked:
    Behavior < OnUnChecked: Remove(Collection2, ThisItem)
    -Bruton

  • I have a iPhone 5 and I am not able to toggle between the show my caller Id option on and off. How can I do that ??? It always shows greyed out and also because of which I am not able to make outgoing calls. So please help

    I have a iPhone 5 and I am not able to toggle between the show my caller Id option on and off. How can I do that ??? It always shows greyed out and also because of which I am not able to make outgoing calls. So please help

    Not all carriers allow that to be set using preferences in the phone. Contact your carrier.

  • Is there a way to default the monthly calendar display so that the current day always shows on top?

    Is there a way to default the monthly calendar display
    so that the current day always shows on top? ie, I want to always be able to see what's in the future 3-4 weeks, not what's in the past 3-4 weeks. The default monthly display is archaic--only allows you to see through the last day of the month. Suddenly today
    is Oct. 30th, and I have a ton of projects lined up in November, but because I haven't been scrolling down every day, I haven't been aware of them every day. I realize there are other tools in Microsoft to help me stay on task, such as reminders and such,
    but it would be helpful if I could always have the current day display on top of the monthly view so I can quickly scan what's coming up in the next few weeks. 

    Thank you!
    Right, I already have it in Month view. My question is a little more specific--I'd like for the current day to always display at the top. For example, today is Oct. 31st, so the current day is at the bottom of the calendar since it is the last day of the month.
    I can view everything in October that I've already completed. What I can't see are the future weeks because we haven't hit November yet. I'd like for the current day to always display at the top of my calendar so I can always see what's coming in the following
    three - four weeks (whether they're a part of that month or not). I've been to other forums trying to find the answer, and have come across the same exact question from frustrated users--but there seemed to be no solution. So I'm posing the question myself
    in this forum. Do you know if this is possible? What I found from other forums is that Outlook defaults to a physical 'desk' type calendar format--so just as I'd use a paper calendar at my desk, I wouldn't be able to see the following weeks unless I either
    flip the page to that month or I come to the first day of the next month, thereby tearing the the old month off and now only able to see the current month. That format is just so...paper...and archaic! Essentially I want the calendars to loop so it doesn't
    even really matter what month it is--I just always want to see what lies ahead without having to scroll down. With our being in the Technology Age, I'd assume this is a logical expectation, but we may be stuck with the replica version of the paper-desk-calendar
    format until Outlook programmers add this Technology Age feature in newer versions.  
    See, this month kind of messed me up because I have so many projects for November that start tomorrow and next week, but I haven't seen them until this week. I would have been better quipped--at least expecting them--had I been able to see all of those projects
    since last week or the week prior.  
    If there is no solution to this answer, would you know how I can contact Outlook to provide feedback? I'm guessing a newer version is on its way...
    Thanks again in advance!

Maybe you are looking for