Disappearing content in a table

Hello All,
I have been adding to a course syllabus week by week in
Dreamweaver 8. The syllabus is in a table, centered, with a
repeating background image. Recently the bottom part of the
syllabus, along with the table including it, fluctuates between
being visible and invisible when in 100% design view. If I run the
mouse over the edge of the table, it will sometimes reveal content,
sometimes not. If I scroll up, the content reveals again, only to
disappear if I scroll back down. (If I jump up to 150% view,
everything shows as it regularly should.) It also appears fine in
several different browsers, both when I preview and when I upload
to my server and view live. I have tried cleaning up Word HTML, yet
the problem remains. It is WAY weird, particularly since the code
is all there, intact, yet you can't see all the content at 100%
view. I have tried copying and pasting into a new table in a new
file, without the repeating image, yet the bottom content is still
invisible in 100% view.
Any ideas?
-confused in Honolulu, and much appreciative of any insight .
. .

You are on a Mac, and your page is VERY long?
Try making your design view zoom setting 99% or 101% and see
what happens.
Better - break your very long page into several shorter ones.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"Kaimuki Kimo" <[email protected]> wrote in
message
news:eh1s8c$8c3$[email protected]..
> Hello All,
> I have been adding to a course syllabus week by week in
Dreamweaver 8.
> The
> syllabus is in a table, centered, with a repeating
background image.
> Recently
> the bottom part of the syllabus, along with the table
including it,
> fluctuates
> between being visible and invisible when in 100% design
view. If I run the
> mouse over the edge of the table, it will sometimes
reveal content,
> sometimes
> not. If I scroll up, the content reveals again, only to
disappear if I
> scroll
> back down. (If I jump up to 150% view, everything shows
as it regularly
> should.) It also appears fine in several different
browsers, both when I
> preview and when I upload to my server and view live. I
have tried
> cleaning up
> Word HTML, yet the problem remains. It is WAY weird,
particularly since
> the
> code is all there, intact, yet you can't see all the
content at 100% view.
> I
> have tried copying and pasting into a new table in a new
file, without the
> repeating image, yet the bottom content is still
invisible in 100% view.
> Any ideas?
> -confused in Honolulu, and much appreciative of any
insight . . .
>

Similar Messages

  • Problem in transporting contents of a table

    Hi All,
    I want to transport the contents of a table from development server to quality server.
    I used transaction SE16 and clicked on display entries. It gave a menu called transport entries where it gave a prompt for a workbench request. I created the workbench request for the table entries.
    When I was transporting the request, I checked the task under the request.  The request was in the modifiable task. It contained the entry for table contents namely R3TR TABU TABLENAME . After I released the task, I found that this entry for table contents namely R3TR TABU TABLENAME disappeared. Please could someone tell me why this is happening.
    Please could someone tell me if we should create a workbench request or a customizing request for  transporting the contents of a table.
    Apart fom SE16, which other method can we use to transport contents of a table ?
    Regards,
    Sushanth H.S.

    Hello Sushant
    >But even after doing so, when I clicked on SE16 and clicked on transport entries in the display menu of the >table, it was asking me for a workbench request and not a customizing request. Please could you tell me >the reason for the same.
    Based on this description your scenario looks like this:
    You have a z-table (now client-dependent) and maintain this table using a maintenance or table view.
    The only explanation I have for the behaviour of the system is that your client-dependent z-table has NOT delivery class = 'C' (Customizing) but probably 'A' (Application table instead).
    That's ok because I usually do define z-tables having delivery class = 'A' even if the table contents is used for some kind of customizing.
    Reason: I do no want to encounter all the restrictions for C-class tables in productive system.
    However, if your z-table contains very sensitive data you may explicitly choose delivery class = 'C'.
    Regards
       Uwe

  • How to delete the complete contents of database table ? should be empty !!

    Hi Guys,
    I have requirement where i have delete the contents of database table..i have make it empty (no records at all) and then i have to fill it with the records from the excel sheet.
    I can upload data from the excel sheet.
    Please tell me how to delete the complete contents of the database table ??
    Regards
    Rahul

    hi ,
    just write like this,
    delete from <database table>.
    commit work.
    sample code, here edpar is database table.
    delete from edpar." FROM TABLE g_tab_delete.
      call function 'DB_COMMIT'.
      loop at g_tab_edpar into g_wa_edpar.
        insert into edpar values g_wa_edpar.
        if sy-subrc  eq 0.
          move-corresponding g_wa_edpar to g_wa_edpar1.
          append g_wa_edpar1 to g_tab_edpar1.
        else.
          move-corresponding g_wa_edpar to g_wa_edpar2.
          append g_wa_edpar2 to g_tab_edpar2.
        endif.
      endloop.
    that's all it works.
    reward points if helpful.
    regards,
    seshu.

  • TCODE-to view the content of setuo table

    Hi Experts,
    Can anyone let me know is there any TCODE where we can view the content of setup table
    Regards,
    Meera

    Hi,
    Normally the tables r in the form of clustertables if u want to see there is no special tcode for this  go to the SE11 or SE16 give the table name as below
    if the datasource is 2lis_11_vahdr after filling setup tables for this datasource9for this application component)MC11va0hdrsetupin se11 in table u give that bold one and execute it u can see the setup tables.
    Thanks & regrds
    sathish
    Edited by: sathish kakumudi on Jan 30, 2009 2:22 PM
    Edited by: sathish kakumudi on Jan 30, 2009 2:24 PM

  • Deleting DB table contents using internal table

    Hi Gurus,
    I have a requirement of deleting DB table contents. Requirement is as follows,
    User will select the DB table description in the seletion screen using drop down list.
    Whichever description he selects,the corresponding table contents should be deleted and we should not hardcode the table name in if or case conditions.
    Is this possible?
    Regards,
    G.Srinivasan

    Hi,
    You can get the Table name from the desciption from table DD02T.
    Use the Key word DELETE to delete the contents of a table from program.
    PARAMETERS : p_ddtext type ddtext.
    select single * from dd02t into table db_tab where DDLANGUAGE = 'EN' and ddtext = p_ddtext.
    DELETE DB_TAB-TABNAME
    FROM ITAB. " Take F1 help on this Key word
    IMPORTANT --> Do not manually delete the contents of a DB table in SAP.
    The individual records only deleted through BDC or any other Acceptable Methods.
    Rest is left to you. Be careful about this activity. Take enough Authourizations/ Permissions or consult your BASIS or other team members.
    Cheerz
    Ram

  • HOW TO MAKE THE CONTENT OF THE TABLE PRINT IN A TABLE CONTROL SCREEN?

    Can any one tell me how to make the content of the table control print in a table control screen!!?
    Please help!!
    I have to make the contents of a table in the table control screen print ? any idea
    Regards,
    Vj

    Please refer to Demo Program,
    DEMO_DYNPRO_TABCONT_LOOP
    Its very clear.
    Shreekant

  • Remove the contents of the table container in workflow

    hi,
    i want remove the contents of the table container in a method in workflow.
      how can i doit. anyone pls send me the syntax.
    after removing the old contents then i want to insert new values to that table.
    Thanks
    Sankar

    hi,
    i want to refresh the container in workflow.
    anyone pls tell me.
    Thanksin advance.
    sankar.

  • Copy contents of one table to another

    Hi,
    Can anyone will give me the code copying the contents of one table to another...
    Need an urgetn help..
    Thanks

    Thanks for everyones reply...
    But here the problem
    I to copy the content based on the length of the content
    Eg:
    If the content key code has 3 characteristics then where ever the last 2 characters are similar i need to copy the rrest content
    EG:-
    234
    236
    278
    299
    288
    that means i need to take the last two characteristic and copy the rest data ...
    another option
    23411
    23412
    23413
    23414
    in this i need to check the last 4 characters and copy...
    Can any one help..
    Another important point is it need to copy in different fields ...
    Eg: from where i am copying is FIELD A which has all the data and it need to copy in Field1,2,3,4,5,6,7,8
    Thanks

  • How to clear the contents of a table

    I was using a 'build table' to collect some datas and pass it to an 'Express  table'.
    what are the possible options to clear the contents of that table?
    How can i clear the contents using a 'button'?

    Build table function has an additional input called 'Reset'
    Attach a boolean to it.
    On front panel, set the boolean's mechanical action as 'latch when released'
    Look at attached vi
    Regards,
    Dev
    Message Edited by devchander on 08-06-2007 08:02 AM
    Attachments:
    reset table.vi ‏57 KB

  • How to Delete the Content of a Table?

    Hi,
    Please, i need to modify the content of a table, but before i want to delete this content. See follow the code that is used actually:
    DELETE (pr_name_table).
    MODIFY (pr_name_table) FROM TABLE prt_table.
    MESSAGE s000(zbrx) WITH text-i02 pr_name_table.
    The ABAP Editor don't accept the expression "DELETE (pr_name_table).".
    How to delete this content???
    Best Regards,
    Daniel Sanchez

    Hi,
    Thanks for helps! The problem been resolved with this solution:
    >> Call of Call:
    IF sy-subrc IS INITIAL.
          PERFORM z_upload_table TABLES t_zpf0012 t_bkp_zpf0012
                                    USING  c_zpf0012.
    ENDIF.
    >> In the Form: (after processing of Form)
    FORM z_upload_table TABLES prt_table prt_table2
                           USING  pr_nome_table.
      IF sy-subrc <> 0.
        MESSAGE i000(zbrx) WITH text-i03 l_file.
      ELSE.
        DELETE (pr_name_table) FROM TABLE prt_table2.
        MODIFY (pr_name_table) FROM TABLE prt_table.
      ENDIF.
    Best Regards,
    Daniel Sanchez

  • Execute query in background and write it's content in transparent table

    Hi,
    Is there an easy way to execute one query in background and write it's content in transparent table?
    Thanks,

    Hello,
    Yes you can do this in so mamy ways...
    GOTO RSCRM_REPORT -> select your query -> click on the extract button and set the parameters...table or file Execute.
    Create an APD in RSANWB select your query and you can store the result in ODS table...cube...
    Create a reporting agent and store the result.
    Regards,
    Pavan.

  • Required code to modify contents of a table

    Hi All,
    I want to create a class which i can use in Web Application Designer to modify content of a WEB Query Table.
    For that i am using table interface property of WAD. Here is my scenario:
    In table where ever i got 999999 it has to be replaced by 'DNA' (Data Not Available).
    For that i created a class ZCL_RSR_WWW_MODIFY_TABLE which inherit superclass CL_RSR_WWW_MODIFY_TABLE
    Now in the Method DATA_CELL i need to write some code so that it must replaces the data cell content of the table as said above.
    Please go through this link so that you will be clear of what i am asking ?
    http://help.sap.com/saphelp_nw04/helpdata/en/b3/f4b1406fecef0fe10000000a1550b0/frameset.htm
    Regards,
    Rajkandula

    Solved Myself with little coding.

  • How to search the content in a Table

    Hi all,
        How can i search the content in a table. is there any UI Element is there to do this? Can any body give me any sample code for this
    regards,
    VJR

    Hi,
    you gotta do that programmatically,
    here is a sample code:
    int sizeOfstudent = wdContext.nodeCtx_vn_student().size();
    //Ctx_vn_student is the node associated with the table ie its dataSource property
    String filtername = wdcontext.currentContextElement.getSName();
    //sName is the name to be searched , it is a context attribute
              for(int i = sizeOfstudent-1;i>=0;i--)
                   String matchValue = recNode.getElementAt(i).getAttributeAsText("Name");
    //get the name of 1st record(in table) or 1st elememnt in node, "Name" here is value attribute of that node
    //so we are fetching its value and comparing it like..
                   if(matchValue.equalsIgnoreCase(filtername))
                        //here you can add the action to be taken on mathing name                }
    hope it helps
    regards

  • Copy contents from Webdynpro Table to Clipboard

    I have a requirement, wherein the contents from the table UI in Webdynpro, in an SRM system, have to be copied to a clipboard. The class CL_PERS_ADMIN->SET_DATA is the hint given for the same.
    Not sure how it works or how to implement this!?!
    Have gone through Web dynpro Selectoption: upload from clipboard and as per Harald's comment have also enabled 'Allow Programmatic clipboard access' in IE.
    Please advice.
    Edited by: Wincy J on Mar 23, 2011 9:30 AM

    Hi Wincy,
    Please check this...
    copy data from table
    Check this u understand
    https://wiki.sdn.sap.com/wiki/display/WDABAP/General+Issues#GeneralIssues-1.190
    Cheers,
    Kris.
    Edited by: kissnas on Mar 23, 2011 9:53 AM

  • Download database table content into internal table using Function Module?

    HI,
    Experts,
    I need a function module which can download ddic table content into internal table.
    Thank u ,
    Shabeer Ahmed.

    >
    shabeer ahmed wrote:
    > HI,
    > Experts,
    >
    > I need a function module which can download ddic table content into internal table.
    >
    > Thank u ,
    > Shabeer Ahmed.
    Hi Shabeer,
      We don't require a function module to download ddic table content to an internal table. We can use the SELECT statement for the same. Example would be:-
    DATA: <INTERNAL TABLE> type table of <DATABASE>.
    SELECT * FROM <DATABASE> into corresponding fields of <INTERNAL TABLE>.
    Also, function module might be required when you need the data from a remote system, but then it is the developer's task create this function module and the function module should be remote enabled function module.
    This remote enable function module should have the above SELECT query as its code.
    Many Regards,
    Ravi.

Maybe you are looking for

  • Issue passing variable into shell script

    Please see terminal session. -  calling pwd, unset, or echo alleviate the issue. - running the script 'plain' also exihibit an issue - calling 'cat test.sh' causes an issue I can repeat the issue on OSX 10.5.8 On Ubuntu, two a's always print out with

  • Display an archive (in Xstring) in WD abap

    Hi all, I need display a file (pdf, word, excel, images, ....). I have the content of the file in xstring and I need display it in acrobat reader, word, excel, .... and I want not show it in internet explorer. I have tried it using the cl_wd_runtime_

  • Depreciation charging in advance

    Hi, I have a scenario. We have one individual asset worth 5 crores. There is an income received in advance 2.5 crores. Now, I want to nullify this income by showing Depreciation for that particular asset. Hence, I want to charge Depreciation in advan

  • Can I run more than one Node Manager per machine?

    Hia, We have a situation in our project where we need to run different domains on a Solaris machine in different java modes. Say Domain1 should be running in 32bit version of java where as Domain2 should be running in 64bit mode due to the nature of

  • I have an important document in my email but can't remember my password to open the PDF .

    I Forgot my password to open locked pdf files. Please help! How can I get the password reset?