Text buttons in a data list?

Is it possible to create a series of text links in a datalist? If not explicitly in the UI, can this even be emulated by creating text buttons and attaching them to the datalist?
In either case, I'm not able to achieve this. For example, when I create a text button and add it as an item to be included in the repeating objects, the editable text column in the datalist disappears (which I suppose I can understand) but the end result is a repeated button whose label is exactly the same every time it's repeated. In other words, when I change the text of one, all of them change.
I'm trying to create a data list where different headlines are hyperlinks with hover states. This seems rudimentary... I must be missing something?

It's not yet possible to draw links from a data collection using the Catalyst UI.  The closest solution I was able to come up with for Fc is to set a "Go to URL" interaction on items in a list, so:
Select your list, then
Add interaction > On Select > Go to URL > Enter your url > When a specific item is selected > then chose the corresponding item #.
Of course, that solution is better for fixed content or prototyping.  For full data binding and support of dynamic sources, Flash Builder is the best solution.
--Nate

Similar Messages

  • Adding button in the secondary list and alv grid

    Hi all ,
                i have devloped an alv grid interactive report as below, my problem is i want to add some button in the secondary list and do some interactions. but i dont know how to do that. i m sending u my code below ,,, plzz suggest what can be done do add that.
    <code>
    *& Report  Z_demo_SALESDOC
    REPORT  z_demo_salesdoc.
    TABLES: vbak, vbap.
    TYPE-POOLS:slis.
    DATA: BEGIN OF it_vbak OCCURS 0,
           vbeln TYPE vbak-vbeln,
           ernam TYPE vbak-ernam,
           erdat TYPE vbak-erdat,
           auart TYPE vbak-auart,
           END OF it_vbak.
    DATA: BEGIN OF it_vbap OCCURS 0,
           vbeln TYPE vbap-vbeln,
           posnr TYPE vbap-vbeln,
           matnr TYPE vbap-matnr,
           zmeng TYPE vbap-zmeng,
           netwr TYPE vbap-netwr,
           END OF it_vbap.
    DATA:it_event TYPE slis_t_event.
    DATA: t_field TYPE slis_t_fieldcat_alv,
          w_field TYPE slis_fieldcat_alv,
          t_field1 TYPE slis_t_fieldcat_alv,
          w_field1 TYPE slis_fieldcat_alv,
          w_layout TYPE slis_layout_alv,
          t_sort TYPE slis_t_sortinfo_alv,
          w_sort TYPE slis_sortinfo_alv.
    CONSTANTS: c_top_of_page  TYPE slis_formname VALUE 'TOP_OF_PAGE',
               c_usercommand  TYPE slis_formname VALUE 'USER_COMMAND'.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS: s_vbeln FOR vbak-vbeln MODIF ID m1,
                    s_erdat FOR vbak-erdat MODIF ID m2.
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-001.
    PARAMETERS:rb1 RADIOBUTTON GROUP g1 USER-COMMAND us1,
               rb2 RADIOBUTTON GROUP g1 DEFAULT 'X'.
    SELECTION-SCREEN END OF BLOCK B2.
    AT SELECTION-SCREEN OUTPUT.
      IF rb1 = 'X'.
        LOOP AT SCREEN.
          IF screen-group1    = 'M1'.
         IF screen-name    CS 'S_VBELN'.
            screen-active    = '0'.
           screen-input     = '0'.
          screen-output    = '0'.
          screen-invisible = '1'.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
      IF rb2 = 'X'.
        LOOP AT SCREEN.
          IF screen-group1    = 'M2'.
            screen-active    = '0'.
           screen-input     = '0'.
          screen-output    = '0'.
          screen-invisible = '0'.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
    AT SELECTION-SCREEN.
      DATA: v_vbeln LIKE vbak-vbeln.
      SELECT SINGLE vbeln
                      FROM vbak
                      INTO (v_vbeln)
                      WHERE vbeln IN s_vbeln .
      IF sy-subrc <> 0.
        MESSAGE e001(q) WITH 'Invalid Sales document'.
      ENDIF.
      DATA: v_erdat LIKE vbak-erdat.
      SELECT SINGLE erdat
                      FROM vbak
                      INTO (v_erdat)
                      WHERE erdat IN s_erdat.
      IF sy-subrc <> 0.
        MESSAGE e001(q) WITH 'No document available with given date'.
      ENDIF.
    START-OF-SELECTION.
      PERFORM get_data_vbak.
      PERFORM build_field_catalog.
    PERFORM fill_event.
      PERFORM print_data_vbak.
    END-OF-SELECTION.
    *&      Form  get_data_vbak
          text
    -->  p1        text
    <--  p2        text
    FORM get_data_vbak .
      SELECT vbeln ernam erdat auart
                                FROM vbak
                                INTO TABLE it_vbak
                                WHERE vbeln IN s_vbeln AND erdat IN s_erdat.
    ENDFORM.                    " get_data_vbak
    *&      Form  build_field_catalog
          text
    -->  p1        text
    <--  p2        text
    FORM build_field_catalog .
      w_field-col_pos = 1.
      w_field-fieldname = 'VBELN'.
      w_field-tabname = 'IT_VBAK'.
      w_field-seltext_m = 'Sales Order'.
      w_field-emphasize = 'C710'.
      APPEND w_field TO t_field.
      CLEAR w_field.
      w_field-col_pos = 2.
      w_field-fieldname = 'ERNAM'.
      w_field-tabname = 'IT_VBAK'.
      w_field-seltext_m = 'Created by'.
      w_field-emphasize = 'C710'.
      APPEND w_field TO t_field.
      CLEAR w_field.
      w_field-col_pos = 3.
      w_field-fieldname = 'ERDAT'.
      w_field-tabname = 'IT_VBAK'.
      w_field-seltext_m = 'Created Date'.
      w_field-emphasize = 'C710'.
      APPEND w_field TO t_field.
      CLEAR w_field.
      w_field-col_pos = 4.
      w_field-fieldname = 'AUART'.
      w_field-tabname = 'IT_VBAK'.
      w_field-seltext_m = 'Order type'.
      w_field-emphasize = 'C710'.
      APPEND w_field TO t_field.
      CLEAR w_field.
      w_sort-spos = 1.
      w_sort-fieldname = 'VBELN'.
      w_sort-up = 'X'.
      APPEND w_sort TO t_sort.
      w_layout-colwidth_optimize = 'X'.
    ENDFORM.                    " build_field_catalog
    *&      Form  user_command
          text
         -->RF_UCOMM     text
         -->RS_SELFIELD  text
    FORM user_command USING rf_ucomm    TYPE sy-ucomm
                            rs_selfield TYPE slis_selfield.
      CASE rf_ucomm.
        WHEN '&IC1'.
          IF rs_selfield-fieldname = 'VBELN'.
            READ TABLE it_vbak INDEX rs_selfield-tabindex.
            IF sy-subrc = 0.
              PERFORM get_data_vbap.
              PERFORM build_field_catalog2.
              PERFORM print_field_data.
            ENDIF.
          ENDIF.
      ENDCASE.
    ENDFORM.                    "user_command
    *&      Form  print_data_vbak
          text
    -->  p1        text
    <--  p2        text
    FORM print_data_vbak .
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
         i_callback_program                = sy-repid
      I_CALLBACK_PF_STATUS_SET          = ' '
       i_callback_user_command           = 'USER_COMMAND'
      I_CALLBACK_TOP_OF_PAGE            = ' '
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  = I_STRUCTURE_NAME
      I_BACKGROUND_ID                   = ' '
      I_GRID_TITLE                      = I_GRID_TITLE
      I_GRID_SETTINGS                   = I_GRID_SETTINGS
         is_layout                         = w_layout
       it_fieldcat                       = t_field[]
      IT_EXCLUDING                      = IT_EXCLUDING
      IT_SPECIAL_GROUPS                 = IT_SPECIAL_GROUPS
       it_sort                           = t_sort
      IT_FILTER                         = IT_FILTER
      IS_SEL_HIDE                       = IS_SEL_HIDE
      I_DEFAULT                         = 'X'
      I_SAVE                            = ' '
      IS_VARIANT                        = IS_VARIANT
      it_events                         = it_event[]
      IT_EVENT_EXIT                     = IT_EVENT_EXIT
      IS_PRINT                          = IS_PRINT
      IS_REPREP_ID                      = IS_REPREP_ID
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      I_HTML_HEIGHT_TOP                 = 0
      I_HTML_HEIGHT_END                 = 0
      IT_ALV_GRAPHICS                   = IT_ALV_GRAPHICS
      IT_HYPERLINK                      = IT_HYPERLINK
      IT_ADD_FIELDCAT                   = IT_ADD_FIELDCAT
      IT_EXCEPT_QINFO                   = IT_EXCEPT_QINFO
      IR_SALV_FULLSCREEN_ADAPTER        = IR_SALV_FULLSCREEN_ADAPTER
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           = E_EXIT_CAUSED_BY_CALLER
      ES_EXIT_CAUSED_BY_USER            = ES_EXIT_CAUSED_BY_USER
        TABLES
          t_outtab                          = it_vbak
    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.                    " print_data_vbak
    *&      Form  fill_event
          text
    FORM fill_event .
      DATA : st_event TYPE slis_alv_event.
    *- Clear.
      CLEAR : st_event, it_event[].
    *- Local variable
      DATA : l_tabix TYPE sy-tabix.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          i_list_type     = 0
        IMPORTING
          et_events       = it_event
        EXCEPTIONS
          list_type_wrong = 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.
    *- Read event table
      READ TABLE it_event WITH KEY name = slis_ev_user_command
                           INTO st_event.
    *- Clear
      CLEAR l_tabix.
      l_tabix = sy-tabix.
    *- Check subrc
      IF sy-subrc = 0.
        st_event-form = c_usercommand.
    *- Modify
        MODIFY it_event FROM st_event INDEX l_tabix.
    *- Clear
        CLEAR st_event.
      ENDIF.
    ENDFORM.                    " fill_event
    *&      Form  get_data_vbap
          text
    FORM get_data_vbap .
      IF NOT it_vbak[] IS INITIAL.
        SELECT vbeln
               posnr
               matnr
               zmeng
               netwr
            FROM vbap
            INTO TABLE it_vbap
            WHERE vbeln = it_vbak-vbeln.
        IF sy-subrc = 0.
          SORT it_vbap BY vbeln.
        ENDIF.
      ENDIF.
    ENDFORM.                    " get_data_vbap
    *&      Form  build_field_catalog2
          text
    FORM build_field_catalog2 .
      CLEAR:t_field1,w_field1.
      w_field1-col_pos = 1.
      w_field1-fieldname = 'VBELN'.
      w_field1-tabname = 'IT_VBAP'.
      w_field1-seltext_m = 'Sales Order'.
      w_field1-emphasize = 'C710'.
      APPEND w_field1 TO t_field1.
      CLEAR w_field1.
      w_field1-col_pos = 2.
      w_field1-fieldname = 'POSNR'.
      w_field1-tabname = 'IT_VBAP'.
      w_field1-seltext_m = 'Sales Doc Item'.
      w_field1-emphasize = 'C710'.
      APPEND w_field1 TO t_field1.
      CLEAR w_field1.
      w_field1-col_pos = 3.
      w_field1-fieldname = 'MATNR'.
      w_field1-tabname = 'IT_VBAP'.
      w_field1-seltext_m = 'Material No'.
      w_field1-emphasize = 'C710'.
      APPEND w_field1 TO t_field1.
      CLEAR w_field1.
      w_field1-col_pos = 4.
      w_field1-fieldname = 'ZMENG'.
      w_field1-tabname = 'IT_VBAP'.
      w_field1-seltext_m = 'Target quan units'.
      w_field1-emphasize = 'C710'.
      APPEND w_field1 TO t_field1.
      CLEAR w_field1.
      w_field1-col_pos = 5.
      w_field1-fieldname = 'NETWR'.
      w_field1-tabname = 'IT_VBAP'.
      w_field1-seltext_m = 'Net value dc cu'.
      w_field1-emphasize = 'C710'.
      APPEND w_field1 TO t_field1.
      CLEAR w_field1.
    ENDFORM.                    " build_field_catalog2
    *&      Form  print_field_data
          text
    FORM print_field_data .
    SET PF-STATUS 'VBAP'.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                = ' '
      I_BUFFER_ACTIVE                   = ' '
         i_callback_program                = sy-repid
      I_CALLBACK_PF_STATUS_SET          = ' '
      I_CALLBACK_USER_COMMAND           = ' '
      I_CALLBACK_TOP_OF_PAGE            = ' '
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  = I_STRUCTURE_NAME
      I_BACKGROUND_ID                   = ' '
         i_grid_title                      = 'VBAP DETAILS'
      I_GRID_SETTINGS                   = I_GRID_SETTINGS
      IS_LAYOUT                         = IS_LAYOUT
         it_fieldcat                       = t_field1[]
      IT_EXCLUDING                      = IT_EXCLUDING
      IT_SPECIAL_GROUPS                 = IT_SPECIAL_GROUPS
      IT_SORT                           = IT_SORT
      IT_FILTER                         = IT_FILTER
      IS_SEL_HIDE                       = IS_SEL_HIDE
      I_DEFAULT                         = 'X'
      I_SAVE                            = ' '
      IS_VARIANT                        = IS_VARIANT
      IT_EVENTS                         = IT_EVENTS
      IT_EVENT_EXIT                     = IT_EVENT_EXIT
      IS_PRINT                          = IS_PRINT
      IS_REPREP_ID                      = IS_REPREP_ID
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      I_HTML_HEIGHT_TOP                 = 0
      I_HTML_HEIGHT_END                 = 0
      IT_ALV_GRAPHICS                   = IT_ALV_GRAPHICS
      IT_HYPERLINK                      = IT_HYPERLINK
      IT_ADD_FIELDCAT                   = IT_ADD_FIELDCAT
      IT_EXCEPT_QINFO                   = IT_EXCEPT_QINFO
      IR_SALV_FULLSCREEN_ADAPTER        = IR_SALV_FULLSCREEN_ADAPTER
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           = E_EXIT_CAUSED_BY_CALLER
      ES_EXIT_CAUSED_BY_USER            = ES_EXIT_CAUSED_BY_USER
        TABLES
          t_outtab                          = it_vbap
       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.                    " print_field_data
    </code>

    Hi Satya..
    This is the Sample code...
    DATA : V_FORM_GUI TYPE SLIS_FORMNAME VALUE 'F_GUI'.  "Form name
    **Secondary List
    FORM print_field_data .
    SET PF-STATUS 'VBAP'.  "This statement will not work for ALV
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
    I_INTERFACE_CHECK = ' '
    I_BYPASSING_BUFFER = ' '
    I_BUFFER_ACTIVE = ' '
    i_callback_program = sy-repid
    <b> I_CALLBACK_PF_STATUS_SET = V_FORM_GUI  
                                                      "Subroutine in which GUI status is called</b>
    I_CALLBACK_USER_COMMAND = 'F_USER_COMMAND'   "To handle GUI
    I_CALLBACK_TOP_OF_PAGE = ' '
    I_CALLBACK_HTML_TOP_OF_PAGE = ' '
    I_CALLBACK_HTML_END_OF_LIST = ' '
    I_STRUCTURE_NAME = I_STRUCTURE_NAME
    I_BACKGROUND_ID = ' '
    i_grid_title = 'VBAP DETAILS'
    I_GRID_SETTINGS = I_GRID_SETTINGS
    IS_LAYOUT = IS_LAYOUT
    it_fieldcat = t_field1[]
    IT_EXCLUDING = IT_EXCLUDING
    IT_SPECIAL_GROUPS = IT_SPECIAL_GROUPS
    IT_SORT = IT_SORT
    IT_FILTER = IT_FILTER
    IS_SEL_HIDE = IS_SEL_HIDE
    I_DEFAULT = 'X'
    I_SAVE = ' '
    IS_VARIANT = IS_VARIANT
    IT_EVENTS = IT_EVENTS
    IT_EVENT_EXIT = IT_EVENT_EXIT
    IS_PRINT = IS_PRINT
    IS_REPREP_ID = IS_REPREP_ID
    I_SCREEN_START_COLUMN = 0
    I_SCREEN_START_LINE = 0
    I_SCREEN_END_COLUMN = 0
    I_SCREEN_END_LINE = 0
    I_HTML_HEIGHT_TOP = 0
    I_HTML_HEIGHT_END = 0
    IT_ALV_GRAPHICS = IT_ALV_GRAPHICS
    IT_HYPERLINK = IT_HYPERLINK
    IT_ADD_FIELDCAT = IT_ADD_FIELDCAT
    IT_EXCEPT_QINFO = IT_EXCEPT_QINFO
    IR_SALV_FULLSCREEN_ADAPTER = IR_SALV_FULLSCREEN_ADAPTER
    IMPORTING
    E_EXIT_CAUSED_BY_CALLER = E_EXIT_CAUSED_BY_CALLER
    ES_EXIT_CAUSED_BY_USER = ES_EXIT_CAUSED_BY_USER
    TABLES
    t_outtab = it_vbap
    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. " print_field_data
    FORM F_GUI USING rt_extab TYPE slis_t_extab.
    SET PF-STATUS 'GUI_1'.  "Double click and Create this GUI status and add buttons
    ENDFORM.
    <b><REMOVED BY MODERATOR></b>
    Message was edited by:
            Alvaro Tejada Galindo

  • Creating right/left click scroll with a data list and being able to click indiv.item from data list?

    I've created a data list that contains a photo with text. I'd like to be able to right click the horizontal list instead of a scrolling bar. Could you please direct me on this?
    I'd also like to select each individual box from the scrolling data list and click to their website or to a menu... not sure on how to do that either??
    I've attached an ai file of what i'm trying to achieve.
    Thanks for your help!

    Funny, I was in the middle of writing an article on how to do this. The simple answer is you create a standard scrollbar with all four parts: track, thumb, increment button, and decrement button. Attach it to your data list, then make the opacity of the track and thumb = 0.
    To make each item in your data list do something different, use the interactions panel and add a On Click interaction. You should notice there is an option toward the bottom of that panel to change from "When any item is selected" to "When a specific item is selected". Remember, programmers like to start counting from 0, so your first item in your data list i 0.
    Note: In the attached example on the first two items are selectable.
    Hope this helps,
    Chris Griffith

  • Assets Master Data List

    Hi All,
    I have created all the assets and need to extract the report of master data list which show descripation 1, descripation2, serial number, capitalized etc appear as per below screen shot. Please advise how i extract this type of report.
    Description          COMPUTER
                         UD367- LCD, 14.1 XG, VESA, SMSNG
    Asset main no. text  COMPUTER
    Acct determination   ITHW       IT Assets Hardware
    Serial number
    Inventory number
    Quantity             5                   EA    each
    Last inventory on
    Inventory note
    Capitalized on       12.03.2009              Deactivation on
    First acquisition on 12.03.2009              Plnd. retirement on
    Acquisition year     2008 012
    Thanks & Regards,
    Pankaj

    Hi,
    Please check the below thread.
    [capitalization asset report.;
    And follow the procedure as i was explained to her.
    Thanks,
    Srinu

  • Is this a data list photo gallery?

    http://www.heathrowe.com/other/fc2/main.html (click to the gallery page)
    Someone posted this in the show your Catylst project thread. Is this done with the Data list method? It's late, and I am beat, but I can't seem to get rollover functionality in my thumbnails. Except to fade it out from whatever opacity it starts at.
    Is there a way to change the start point of a page, or can you just control the transitions of things as they apear differently from you start page to the final end point on the finish page/state? Does that make sense or am I too exauhsted to make sense anymore? Guess I'll see in the AM when I get up and re-read this looking to see if anyone responded.

    i don't know if you still need the answers, but if you do, i hope this helps.
    i'm not sure if the gallery in this example is a data list (if you're talking about the thumbs..), but i did the same thing just putting up the buttons and aligning them and giving them some attributes on rollover etc. it's an even easier way than doing a data list for something simple like that.
    to change the start point of a page you need to do one "blank page" before your first homepage (or a duplicate) and then in the transition between them asign the items on your homepage different transitions.. on that "zero" page you can also move some items out of the box and give them a move transition to the homepage etc.
    hope it helped!
    best,
    Jelena

  • Web form doesn't allow text entries and showing smart lists

    Hi,
    I am using Hyp 11.1.2 and facing 2 issues with webforms .
    One of them is a cell under Account dimension should accept Text Value , which is allowing numeric only. I am able to enter text but not getting saved , showing an error msg that invalid entry..etc. Also I found everymember in outline is numeric. Even if I refreshed the Text type member with data type Text , it is still showing numeric in Outline.
    Second one is even If defined a smart list on another member under Account, the cell is not showing it.
    Is it relevant setting Evaluation Order or any thing else?
    suggestions appreciated
    Thanks in advance

    The Text member like Smart List will be based on the evaluation order which for Classic is set by carrying out the following - http://docs.oracle.com/cd/E17236_01/epm.1112/planning_admin_11122300/enum_dim.html for EPMA - http://docs.oracle.com/cd/E17236_01/epm.1112/epma_admin/epma_data_type_eval.html
    Checking the Essbase outline is not an option because the text information is all stored in the planning relational repository (table HSP_TEXT_CELL_VALUE) and the numerical value associated with it is stored in essbase.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • After system restore to back up have lost texts, photos and app data

    Speakers not working on iphone all of a sudden and volume switches not working (just the volume comes up but no bars at the bottom).  So did system restore and more problems.
    After I did this restore (to my backup done today) to my iphone 4s, I now have no text messages on my phone, no photos and no data on my nike running app (6months of records of runs).  Have searched through these forums and still stuck.
    I think I'm going to have to take my iphone somewhere for the speaker issue, but have no idea where as optus sent it out to me directly via mai l(Adelaide, Australia).  
    In the meantime, I really want my texts, photos and app data back on my phone.
    any help HUGELY appreciated..

    thanks for your reply.  I am trying the restore again now.
    But no, I still have no sound, so it was all for naught.  Its fine if I have headphones in, and fine if its in a dock or connected to bluetooth, the phone also rings and I can hear people on the phone:  the only sound that doesnt work is music playing through the speaker, and video.  Also when I press the volume up and down buttons, nothing works.  I suspect there is something wrong with the docking connection as far as I can see from other peoples questions on here.
    But the loss of texts and app data is just the icing on the cake

  • 3 buttons and 2 select lists in a single line

    Hi,
    I have an application which has 3 region buttons ( say, b_1, b_2, b_3) and 2 selects lists (say, sl_1, sl_2). I want to display all the five buttons and items in a single line in the following order:
    b_1 b_2 sl_1 b_3 sl_2
    I have set Begin on new line = no
    and Begin on new field = no, for both the two select lists.
    But it does not seem to work.
    Do anyone have any idea, how to sort out this issue?
    A quick reply would really be appreciated.
    Regards,
    AM

    Hi Vikas,
    Please have a look into the application at
    http://apex.oracle.com/pls/otn/f?p=34363:1:6206621111100168:::::
    I have created two select lists P1_X and P1_Y. These items are hidden on page load event. When the associated button is clicked the list should appear on the page.
    Written the following code in 'Pre element text' for each of the items:
    P1_X :: <input type="button" value="X" onclick="f_X();" class="t17Button" />
    P1_Y:: <input type="button" value="Y" onclick="f_Y();" class="t17Button" />
    Where, f_X() and f_Y() are displaying the select lists.
    As you can see, the select lists are appearing just below the html buttons, which I want side by side with the buttons.
    Could you please figure out the issue?
    If you want I can share my login details.
    Regards,
    AM

  • Function of text buttons in Video browse pane???

    This has been driving me crazy. What is the function of the set of text buttons above the 3 video browse lists in iTunes? Specifically, the one to the right of the vertical bar. The ones to the left seem to filter the list of videos when selected (All, Movies, Music Videos, Podcasts, TV Shows), but the other one to the right don't seem to do anything, other than change based on what is selected to the left. Anyone know what these things are for?

    Amygdaloid,
    I think those buttons determine how the search function behaves.
    In other words, whatever you have selected is the field that will be searched.
    Matt

  • Edit TableCell in TableView right after it has been added to the data list

    Hi all
    I'm trying to make my table view editable by keyboard. So far I can edit the currently selected cell with a press of 'E'. That works without any problems:
    table.edit(selectedRow, tableColumns.get(0));Now I want to add functionality for adding a new row with the press of 'N'. So when pressing 'N' I add a new Object to my data list and try to get into editing mode the same way I do it when pressing 'E', but it won't work.
    My first try was like this:
    data.add(new Task("", "0"));
    table.edit(data.size() - 1, tableColumns.get(0));The new row gets created but I won't get the edit text field. That's why I tried to focus and select the newly created cell. The focus and selection work, but I won't get an edit field.
    int lastRow = data.size() - 1;
    data.add(new Task("", "0"));
    table.getFocusModel().focus(lastRow);
    table.getSelectionModel().select(lastRow, tableColumns.get(0));
    table.edit(lastRow, tableColumns.get(0));It may have something to do with the fact that the new row just got inserted... I don't know :/
    I'd appreciate some hints on this :)
    Thx

    Does the video no longer show up under the Photos tab? You should be able to edit it there. You can't edit within albums.

  • 30EA3 - 2.1.* : Drop-down button missing in Data tab filter

    Hi,
    1.5 introduced the very useful drop-down list with remembered filters in the Data tab.
    2.1 fixed some bugs in the area and made it easier to write new ones.
    However, the actual button to open the list (on the far right of the field) is missing, so you're forced to write something before the list opens. Can this be bugged please?
    Thanks,
    K.

    Hi K,
    I have logged an enhancement
    Bug 9201543 - FORUM: DATA FILTER HISTORY BUTTON
    Regards,
    Dermot.

  • How to disply the input text box when the data in the table is empty

    Hi,
    I m using JDeveloper 11g 5.1.1.1 : How to display the Input text box when the data in the table is empty or by using the dual table.
    Since there is no record in the table, screen is displying only the lable. not displying the Input text box.? Any property is there to enable?.
    One more case i tried by using dual (eg Select '0' as name from dual) created one view object and dragged in the JSF screen as input combo box with list of values.
    In this case also it is not displaying the combo box.Just displaying the Lable name and 0 only.
    Regards
    Bijesh K

    Hi,
    I didn,t get you.Could you please explain. I am not choosing the ADF table. Selecting and dragging ADF form only.
    Regards
    Bijesh K

  • Calling FLV's in xml data list

    Hi All, Total n00b here. I have been building for the first time using spry and this is what i'm trying to do.
    Have a thumbnail with description, plus some body text and then the flv video that goes with the story.
    I have had success with the html data list but I would like to be able to do this with xml so I can update the xml on the fly.
    Can anyone tell me if you can call flv's with an xml spry list and if you can any help on how would be just fantastic
    Cheers all
    Laz

    Not sure if this is what you are trying to do, but I would suggest having an XML file with the name the FLV and then you read the XMLDataset and display it in an html data region.
    Then a javascript onClick method should forward the name of the file to your FLV player. Something like this <a href="" onClick="loadVideo('{filename}')" /> Video 1</a>
    So your HTML should have:
    <html>
    <script>Spry stuff</script>
    <script>FLV player embed</script>
    <body>
        <div> Video Player</div>
         <div>
         Video 1
         Video 2
         </div>
    </body>
    </html>
    And your XML should be:
    <playlist>
         <item>
              <filename>path to FLV video</filename>
         </item>
    </plsylist>
    You can look at the Spry XML Dataset examples to load the dataset.
    Hope this helps

  • Is there a way to remove or disable the "Clear List" button from the downloads list?

    Is there a way to remove or disable the "Clear List" button in the downloads list? I like to _keep_ my list populated with what I've downloaded but occasionally end up with it getting clicked on accident and lose the whole thing. Given that "Tools > Clear Recent History" dialog can accomplish the same thing I find Clear List to be irritating. So can I get rid of it in any way?
    == This happened ==
    Just once or twice
    == my brain lapsed on me ==
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.70 Safari/533.4

    Hello Chris.
    # go into ''Help > Troubleshooting Information...''
    # click ''Open Containing Folder''
    # in the folder that appears (new windo in windows explorer), go into the folder ''chrome''
    # open the file ''userChrome.css'' with a text editor
    # at the end of the file, in a new line, add the following code:
    <code>
    button#clearListButton
    </code>
    I haven't tested this, but it should work flawlessly. You can always erase this line if you want the button back. This will only work on your Firefox profile. If you want these changes to span across all Firefox users on your computer, please tell me.

  • BCS Business Data List data HTML Formatting data

    I have a Business Data List webpart in Sharepoint Online (2013) which pulls data from a BCS List. This data contains HTML which is not rendering as HTML but the HTML text.
    I've modified the data to HTML format the data, no joy (example: &lt; img src="/)
    I've modified the data to spit out the native html, no joy (example: <img src="/)
    I've modified the XSLT of the webpart using the Data View Properties (when editing the webpart in Sharepoint) to output the text from the list as below, which didn't work:
    <xsl:value-of select="@ArticleBody" disable-output-escaping="yes" ddwrt:nbsp-preserve="yes"/>
    and also this hasn't worked:
    <xsl:value-of select="@ArticleBody" disable-output-escaping="yes"/>
    I'm now at a loss as to how I can get the data to show with the html text being rendered as actual HTML on page

    found, the issue - there was a section further down the XSLT file that needed the disable-output-escaping adding to (below is the original section) - once updated it worked like a charm - thanks
    <xsl:template name="_LFtoBRloop">
        <xsl:param name="input" />
        <xsl:variable name="beforeText" select="substring-before($input, '&#xA;')" />
        <xsl:choose>
          <xsl:when test="string-length($beforeText) = 0 and substring($input, 1, 1) != '&#xA;'">
            <xsl:value-of select="$input" />
          </xsl:when>
          <xsl:otherwise>
            <xsl:value-of select="$beforeText" />
            <br />
            <xsl:call-template name="_LFtoBRloop">
              <xsl:with-param name="input" select="substring($input, string-length($beforeText)+2)" />
            </xsl:call-template>
          </xsl:otherwise>
        </xsl:choose>
      </xsl:template>

Maybe you are looking for