Can't scroll to top of table

Hello,
  I have a strange problem with a spreadsheet in Numbers for iPad and Numbers for Mac (both current versions).
For some reason I can't scroll to the top of the table (it has less than 200 rows and 5 columns). My table has a fixed header row (row 1) and I can't get Numbers to show me rows 2 up to 35 and row 36 only half obscured by the header row. When I scroll up (on the iPad), the table bounces as soon as row 36 is only half visible.
When I download the spreadsheet via iTunes and open it in Numbers on my Mac, it basically behaves the same (not revealing rows 2 to 35, only half of row 36). However when I set the cursor into a cell that is visible in row 37 and start hitting CURSOR-UP, the cursor moves though the invisible cells. The current cell highlight actually moves up with it and that causes very weird graphical glitches.
Additionally, on the iPad the table is too far left, whenever it is active (a cell is highlit) the vertical table resize bar obscures the first column.
Something's wrong with the table, I only use the iPad and iPhone to edit it. I can't seem to be able to figure out what went wrong with it.
Any ideas?
Regards
Markus

Hi Markus,
I'll have to look if there's an equivalent action I can take on the Mac.
I have been playing around on my MacBook Pro, using different Views...
...and using the top-left corner to drag the table. Maybe one of these Views will let you grab the table and move it into the sheet, as Badunit suggests.
Reagards,
Ian.

Similar Messages

  • When I load Safari on my IPAD2, the web page comes up, but I can't scroll down the page. No matter what web page I go to the content stays darker than the navigation bar. This just started today. All other applications work fine.

    When I bring up Safari on my IPAD2, the web page comes up, but I can't scroll down the page. This just started today. No matter what web site I go to, the content is darker than the navigation pane.

    If it's happening on all sites, then assuming that it's Safari that you're using, have you tried clearing it's cache : Settings > Safari > Clear Cache (other browsers should have similar options, possibly within the actual app instead of within Settings). You could also try closing the app completely : from the home screen double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Safari app (or whichever browser you're using) to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.
    If it's only happening on a particular site then there may be content on that site that isn't supported on the iPad e.g. flash, java, silverlight

  • How to add entire new row at the top of table in pdf report from c# windows forms using iTextSharp

    Hi for past 3 days i was thinking and breaking my head on how to add entire new at top table created in pdf report from c# windows forms with iTextSharp.
    First: I was able to create/export sql server data in form of table in pdf report from c# windows forms. Given below is the code in c#.
    using System;
    using System.Collections.Generic;
    using System.Configuration;
    using System.Text;
    using System.Data;
    using System.IO;
    using System.Data.SqlClient;
    using System.Windows.Forms;
    using iTextSharp.text;
    using iTextSharp.text.pdf;
    namespace DRRS_CSharp
    public partial class frmPDFTechnician : Form
    public frmPDFTechnician()
    InitializeComponent();
    private void btnExport_Click(object sender, EventArgs e)
    Document doc = new Document(PageSize.A4.Rotate());
    var writer= PdfWriter.GetInstance(doc, new FileStream("Technician22.pdf", FileMode.Create));
    doc.SetMargins(50, 50, 50, 50);
    doc.SetPageSize(new iTextSharp.text.Rectangle(iTextSharp.text.PageSize.LETTER.Width, iTextSharp.text.PageSize.LETTER.Height));
    doc.Open();
    PdfPTable table = new PdfPTable(7);
    table.TotalWidth=585f;
    table.LockedWidth = true;
    PdfPTable inner = new PdfPTable(1);
    inner.WidthPercentage = 115;
    PdfPCell celt=new PdfPCell(new Phrase(new Paragraph("Institute/Hospital:AIIMS,NEW DELHI",FontFactory.GetFont("Arial",14,iTextSharp.text.Font.BOLD,BaseColor.BLACK))));
    inner.AddCell(celt);
    Paragraph para = new Paragraph("DCS Clinical Report-Technician wise", FontFactory.GetFont("Arial", 14, iTextSharp.text.Font.BOLD, BaseColor.BLACK));
    para.Alignment = iTextSharp.text.Element.TITLE;
    iTextSharp.text.Image png = iTextSharp.text.Image.GetInstance("logo5.png");
    png.ScaleToFit(95f, 95f);
    png.Alignment = Element.ALIGN_RIGHT;
    SqlConnection conn=new SqlConnection("Data Source=NPD-4\\SQLEXPRESS;Initial Catalog=DRRS;Integrated Security=true");
    SqlCommand cmd = new SqlCommand("Select t.technician_id,td.Technician_first_name,td.Technician_middle_name,td.Technician_last_name,t.technician_dob,t.technician_sex,td.technician_type from Techniciandetail td,Technician t where td.technician_id=t.technician_id and td.status=1", conn);
    conn.Open();
    SqlDataReader dr;
    dr = cmd.ExecuteReader();
    table.AddCell("ID");
    table.AddCell("First Name");
    table.AddCell("Middle Name");
    table.AddCell("Last Name");
    table.AddCell("DOB" );
    table.AddCell("Gender");
    table.AddCell("Designation");
    while (dr.Read())
    table.AddCell(dr[0].ToString());
    table.AddCell(dr[1].ToString());
    table.AddCell(dr[2].ToString());
    table.AddCell(dr[3].ToString());
    table.AddCell(dr[4].ToString());
    table.AddCell(dr[5].ToString());
    table.AddCell(dr[6].ToString());
    dr.Close();
    table.SpacingBefore = 15f;
    doc.Add(para);
    doc.Add(png);
    doc.Add(inner);
    doc.Add(table);
    doc.Close();
    The code executes well with no problem and get all datas from tables into table in PDF report from c# windows forms.
    But here is my problem how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    As the problem i am facing is my title or Header(DCS Clinical Report-Technician wise) is at top of my image named:logo5.png and not coming to it's center position of my image.
    Second the problem i am facing is how to add new entire row to top of existing table in pdf report from c# windows form using iTextSharp?.
    given in below is the row and it's data . So how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    as you can see how i create my columns in table in pdf report and populate it with sql server data. Given the code below:
    Document doc = new Document(PageSize.A4.Rotate());
    var writer= PdfWriter.GetInstance(doc, new FileStream("Technician22.pdf", FileMode.Create));
    doc.SetMargins(50, 50, 50, 50);
    doc.SetPageSize(new iTextSharp.text.Rectangle(iTextSharp.text.PageSize.LETTER.Width, iTextSharp.text.PageSize.LETTER.Height));
    doc.Open();
    PdfPTable table = new PdfPTable(7);
    table.TotalWidth=585f;
    table.LockedWidth = true;
    Paragraph para = new Paragraph("DCS Clinical Report-Technician wise", FontFactory.GetFont("Arial", 14, iTextSharp.text.Font.BOLD, BaseColor.BLACK));
    para.Alignment = iTextSharp.text.Element.TITLE;
    iTextSharp.text.Image png = iTextSharp.text.Image.GetInstance("logo5.png");
    png.ScaleToFit(95f, 95f);
    png.Alignment = Element.ALIGN_RIGHT;
    SqlConnection conn=new SqlConnection("Data Source=NPD-4\\SQLEXPRESS;Initial Catalog=DRRS;Integrated Security=true");
    SqlCommand cmd = new SqlCommand("Select t.technician_id,td.Technician_first_name,td.Technician_middle_name,td.Technician_last_name,t.technician_dob,t.technician_sex,td.technician_type from Techniciandetail td,Technician t where td.technician_id=t.technician_id and td.status=1", conn);
    conn.Open();
    SqlDataReader dr;
    dr = cmd.ExecuteReader();
    table.AddCell("ID");
    table.AddCell("First Name");
    table.AddCell("Middle Name");
    table.AddCell("Last Name");
    table.AddCell("DOB" );
    table.AddCell("Gender");
    table.AddCell("Designation");
    while (dr.Read())
    table.AddCell(dr[0].ToString());
    table.AddCell(dr[1].ToString());
    table.AddCell(dr[2].ToString());
    table.AddCell(dr[3].ToString());
    table.AddCell(dr[4].ToString());
    table.AddCell(dr[5].ToString());
    table.AddCell(dr[6].ToString());
    dr.Close();
    table.SpacingBefore = 15f;
    doc.Add(para);
    doc.Add(png);
    doc.Add(table);
    doc.Close();
    So my question is how to make my column headers in bold?
    So these are my questions.
    1. how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    2. how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    3.how to make my column headers in bold?
    I know that i have to do some modifications to my code but i dont know how to do it. Can anyone help me please.
    Any help or guidance in solving this problem would be greatly appreciated.
    vishal

    Hi,
    >>1. how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    2. how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    3.how to make my column headers in bold?<<
    I’m sorry for the issue that you are hitting now.
    This itextsharp is third party control, for this issue, I recommended to consult the control provider directly, I think they can give more precise troubleshooting.
    http://sourceforge.net/projects/itextsharp/
    Thanks for your understanding.
    Regards,
    Marvin
    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.
    Click
    HERE to participate the survey.

  • When texting with more than one person at a time the incoming text scrolls to top of the conversation. anyone out there with the same issue?

    while texting with more than one person at a time the incoming texts scrolls to top of conversation. anyone having this issue?

    I've heard claims it can be done, claims some have done it, and claims that it didn't work for them. This thread is interesting, some indications it should be possible, complaints that it didn't, and also an interesting work-around:
    "How do I text message multiple people at once?"
    http://discussions.apple.com/click.jspa?searchID=-1&messageID=4822260
    You can ask Apple for iPhone changes via this link:
    http://www.apple.com/feedback/iphone.html
    Though if you're requesting hardware changes for iPhone v2 you may want to wait a week (or a month?)...they're probably going to be inundated right now by requests for software changes to the current iPhone.
    (If this has answered your question, please mark your original post as answered)

  • Action &OBJECT_ID& does not exist - when Scrolling the Scrollbar in Table

    Hi All,
    When  executing the application of  ABAP webdynpro component  at runtime when we scroll the scrollbar of the table then we are getting the following dump. please let me know the solution to fix the issue.
    Thanks in advance.
    Dump
    The following error text was processed in the system BRD : Action &OBJECT_ID& does not exist
    The error occurred on the application server c700u043_BRD_10 and in the work process 1
    The termination type was : RBAX_STATE
    The ABAP call stack was:
    method : IF_WDR_RR_CONTROLLER~GET_ACTION of program SAPLWDR_RUNTIME_REPOSITORY
    method : GET_ACTION_INTERNAL of program CL_WDR_CONTROLLER----CP
    Thanks,
    PortalUser100

    Hi..
    I dnt get anything when i see the error, its like somewhere standard error. And are you trying to scroll horizontal or vertical scroll?
    Any way, we can achieve scrolling through one application parameter called wdtablenavigation and its value is SCROLLBAR.
    then you will get scroll bar for all tables in your component.
    Once you double click on appplication,you will find parameters tab, there pass the above values.
    Regards
    Srinivas

  • How to get the list of top 10 tables grown last week or last few days

    Hi All,
    Please let me know, how to get the list of top 10 tables grown last week or last few days
    Thanks

    Please let me know, how to get the list of top 10 tables grown last week or last few days1.Oracle Version and OS info please ... ALWAYS
    2.Do you have licensing options (Tuning and/or Diagnostics Pack) ?
    3.Have you ran AWR/Statspack in last week or last few days
    1.Because Oracle do not store auto tack the history of tables growth. See below link where one user has showed the possible way of manual track of table(s) growth :
    Re: oracle tables growth
    2.MOS Note for How To Get Table Growth History Information? [ID 1395195.1]
    3.If you are in 10g than EM of 10g has something called Segmnet Statistics which can show you the growth of your table.
    4.Other clue :
    SQL> select * from table (dbms_space.object_growth_trend('SCOTT','EMP','TABLE'));
    TIMEPOINT                                                                   SPACE_USAGE SPACE_ALLOC QUALITY
    17-SEP-12 11.06.20.228000 AM                                                       1593       65536 GOOD5.A good script by Mice Ault for historical growth of segments within AWR:
    http://www.dba-oracle.com/t_table_growth_reports.htm
    Regards
    Girish Sharma

  • Want a scroll bar for a table view

    Hi Experts,
    I am developing in NWDS 2004S.
    I have 2 groups in RootUIElement,
    in one group i have few labels & input box with a button,
    in other group I have a table.
    On click of button according to values in inputbox an RFC is called & Table is populated.
    Now my requirement is like, my table has around 33 columns
    But i don't want the scroll buttons in footer of table view
    I want normal scroll bar for that table.
    Kindly help me.
    Will award points !!!
    Thanks

    hi
              thanks for the reply  ,
            using scroll container is working fine  ,
               but  this functionality should be achieved for the
               table  ,  not  table to be put int he scroll container
               as the problem is  , i have  2000 entries in the
                 table  and for this again i need to drill down using
                     arrow  or drill for certain entries  using arrows
                instead need  scroll bar for the table
                     if this can achieved  it would be helpful ?

  • Vertical scroll bar for the table

    Hi,
    I have a table which will contain more than 100 rows. First Visible rows will be 10.
    i want a vertical scroll bar for the table, so that i can see all the rows using vertical scroll bar. While scrolling down, the header row, which contain names of the column should be static (ie visible even scroll down) and the footer of the table should be visible even goes up.
    If I use Scroll container, it will take whole table and the header row, row with name of column will move up invisible when i scroll down. So it is not useful if i use scroll contatiner.
    I need a fnctionality were table has a vertical scroll bar to it.
    Thanks
    Maha

    Hi,
    Your requirement is one of the default properties of the Table UI element in NWDS CE version.
    Regards,
    Alka.

  • Scroll bar  for the table

    hi
          i  have  a scenatio  where  the table need
            scroll bar  ,  so ihave  used  scroll container 
            for the table   and  i am able to view   both 
          horizontal  and  vertical scroll var  , but  i need 
           only  verticle  scroll var  .
              how can this be achieved ?

    hi
      thanks  for the quick response ,
           but  its not helping me  .
                i have  set the width of the table less than
             scroll container  . 
                  i need just  vertical  scroll  bar  to be visible
                   no  horizontal scroll bars  
                      iam able to view both .

  • Scrolls to top when switching between screens

    Every time I switch between a screen, say my music library or podcasts and my ipod, it jumps back up to the top of the list. When trying to manage my music and podcasts it gets really frustrating because I like to switch back and forth to see what I still need to add, and I end up having to do a ton of extra scrolling. Is there a way to stop this from happening? I'm really tempted to switch back to iTunes 10 just because of this stupid issue.

    If you touch the screen - right by where the time indicator is - in the top center of the iPad, the screen that you are on will scroll quickly back to the top of the page. You can also scroll to the top of the page in the mail app - when viewing your list of emails in the window on the left - tap the top of the screen above the list of emails - - and the screen will scroll back to the top.
    As far as I can tell - that works in any app where you cans swipe to the bottom of a page - tap the top center by the time in order to scroll back to the top.
    EDIT- apparently you can touch the top of the screen anywhere now to scroll to the top from what I just saw in my browser. I am using iCab Mobile and when I touch anywhere in the black area - just inside the bezel - the page will scroll to the top. I could swear you had to touch the middle of the screen at the top, but now I see that any tap at the top will work.

  • Report with top 10 tables ...

    Hello !
    I need to create an report with the top 10 tables :
    1 - The most bigger tables
    2 - The most access tables
    3 - The bigger number of sorts
    4 - The physical access
    5 - The bigger shared memory use
    The first one i can get from dba_segments, but the others i have no clue where i can find this informatation on the database.
    Any help is good .
    thanks
    Fernando

    Hi
    Answer of your first point is hidden in dba_segments view. this view contain colum bytes. it is size of any objects in bytes
    like select segment_name,segment_type,owner,bytes/1024/1024 as size_in_mb
    from dba_segments
    where owner='SCOTT'
    order by bytes desc.
    Answer Point No. 2
    there is dynamic view v$sql
    this view contain a colums sql_text,first_load_time, last_load_time
    select colums sql_text,first_load_time, last_load_time
    from v$sql
    order by sql_text
    copy colum sql_text in excel sheet and you can count table name how many time it has been accessed. or by apply a group funcation
    select select count(*) from v$sql
    from v$sql
    group by sql_text
    Answer of point No. 3,4,5 lies in a statspack report. in oracle 9 and 10g contain following information in automaitc work load repository reprot.
    Best Regard
    Abdul Hameed
    Islamabad Pakistan
    [email protected]
    cell 92 333 5587 318

  • Ok-code to scroll down in a table control on batch input

    Hello,
    I'm trying to create a batch input session for transaction VA02 (Change  sales  order) :
    I need to go scroll down in the table control of the screen (item -> Conditions) 3 times to delete the a line; In the batch input (SHDB), i go scroll down by clicking on the scroll bar of the table control, mark the line of the page and delete it.
    The recording show me the ok-code /00 to scroll down (with BDC_CURSOR in the second line), but in the program it don't work, the ok do nothing the 3 times and mark the incorrect line.
    Can anyone tell an idea of what is the correct ok-code to scroll down?
    Thanks in advance
    Alvaro
    PD:  My SAP system is an ECC 6.0

    Hi Alvaro
    One time i had to do similar work for Creation of General Task List in PM module and this is how i did it
                             'X'      'SAPLCMDI'             '3500',
                             ' '      'BDC_CURSOR'          'RIHSTPX-DISP(01)',
                             ' '      'BDC_OKCODE'          '=P+',
                             ' '      'RIHSTPX-IDNRK(01)'    itab-idnrk,
                             ' '      'RIHSTPX-MENGE(01)'    itab-menge,
                             ' '      'RIHSTPX-MEINS(01)'    itab-meins,
                             ' '      'RIHSTPX-DISP(01)'     itab-disp.
    I had to select line 1 hence you can see the position number ( 01 ) in the field name. As you can see based on this positioning you can select the appropriate line and make modifications as you like and also use okcode of  '=P+' to scroll done. Hope this  helps. Reward if appropriate.
    Best Regards
    Sid Arora

  • Firefox crashes and can't scroll anymore unless I force close the browser.

    I'm on a Mac OSX and after I start firefox, I go to Youtube, and then the video starts lagging. After that, I can't scroll up or down. In that case, I have to force close firefox and it works again. A few hours later, the same thing happens. When I re-open, it shows the, "Well this is embarrasing screen."

    it may be a malware.
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!
    In order to uninstall a possibly unwanted extension, please do the following:
    #From the Firefox window click the Firefox button at the top left and select ''Add-ons'', or, if the Firefox button is not shown, click the ''Tools'' menu and click ''Add-ons''.
    #Once the Add-on Manager has opened in a new tab, click the ''Extensions'' button on the left side of the window.
    #You should now see a list of your installed extensions on the right side together with buttons on the right side of each extension.
    #To remove an extension from Firefox, simply click the ''Remove'' button. You should see a message that informs you about the successful removal of the add-on.
    #Note that some add-ons require a Firefox restart to be removed completely. To perform a Firefox restart after the add-on removal, click the ''Restart now'' link in the message.
    You can find further information about uninstalling extensions in the following articles:
    [[Disable or remove Add-ons]]
    [[Remove a toolbar that has taken over your Firefox search or home page]]

  • Scroll too slow in table in WD abap

    Hi experts,
    in my Dynpro I have a table with Layout Data  defined as GridData and scroll is very very slow also with 20 entry in table.
    In the same portal I have a dynpro with a table with Layout Data defined as RowHeadData and there is no problem with scroll.
    Scroll performances can depend on Layout Data of table?
    What can I have to verificate and how can I increase performaces for scroll?
    Help me please
    Thanks

    Are you checking the scroll functionality in webdynpro and portal in same system? If different, the scroll may also depends on resolution settings.
    if it's resolution settings problem, it will take time to get the new row values and dispaly.
    Regards
    Srinvias

  • Top 10 tables

    Hello All,
    I'm trying to pull ONLY top 10 tables in my database. Below is my query which gives a complete list.
    Can someone help modify below query so that it returns only 10 tables with highest num_rows value.
    select owner, table_name, num_rows from dba_tables where num_rows IS NOT NULL ORDER BY NUM_ROWS DESC;
    Thanks
    Shanthan

    Shanthan wrote:
    Hello All,
    I'm trying to pull ONLY top 10 tables in my database. Below is my query which gives a complete list.
    Can someone help modify below query so that it returns only 10 tables with highest num_rows value.
    select owner, table_name, num_rows from dba_tables where num_rows IS NOT NULL ORDER BY NUM_ROWS DESC;
    Thanks
    Shanthanbelow works for me.
    17:26:21 SQL> SELECT owner,
           table_name,
           num_rows
    FROM   dba_tables
    WHERE  num_rows IS NOT NULL
    and   rownum < 11
    ORDER  BY NUM_ROWS DESC; 17:26:34   2  17:26:34   3  17:26:34   4  17:26:34   5  17:26:34   6  17:26:34   7 
    OWNER                      TABLE_NAME               NUM_ROWS
    SYS                      COL$                       92732
    SYS                      ICOL$                        7613
    SYS                      IND$                        4948
    SYS                      TAB$                        3207
    SYS                      COLTYPE$                    2282
    SYS                      LOB$                         925
    SYS                      NTAB$                         275
    SYS                      SUBCOLTYPE$                    172
    SYS                      REFCON$                          57
    SYS                      CLU$                          10
    10 rows selected.
    17:26:37 SQL>

Maybe you are looking for

  • Authorization based on plant and Purchase order document type

    Hi My client has a requirement wherein a user will have authorization for transactions only in his plant. But only for Purchase order document type UB (Stock Transport Order) the user should be allowed to create for all plants. In short, if Purchase

  • HTMLLoader - Embed local .html in remote .html using iframe.sandboxRoot and iframe.documentRoot ?

    Hi! This already took me hours of research and testing but I might misunderstand this part of the Adobe AIR documentation: http://help.adobe.com/en_US/AIR/1.5/devappshtml/WS5b3ccc516d4fbf351e63e3d118666ade46-7f08. html#WS5b3ccc516d4fbf351e63e3d118666

  • Path to (dynamic) image files on the WAS Server - Web Dynpro

    Hello again with a new question ... I wrote a Web Dynpro Application, that uploads images from the client and stores them in a directory on the server. In the next step the WD Application reads the contents of that directory (for Example 1.jpg, 2.jpg

  • Image quality on tablets

    Hi, I have been porting one of our applications from desktop to tablet. I tested on the Motorola Xoom as well as on a Tegra 2 developer tablet. All the images are aliased, the quality is very poor. I tried both png and svg images, with the same resul

  • PDF cropping question

    I posted this question in the Illustrator Forum too, but thought it might be worthwile to see if anyone here had any ideas. I have a few hundred PDF files that I created in Illustrator. The Illustrator document size on all of these is 8.5 x 11, but o