Tab order direction and table size

Hello.
I have a form with a table that should be filled by the user. The default tab order is Left to Right, and I need it to be Right to Left. I tried to set the tab order from the Tab Order tab, and it worked on the first row, but when adding rows their tab order is left to right again. How can I change the default tab order?
And one more thing - How can I get the size of the table (number of rows) with JavaScript?
Regards,
Arik

Hi Arick,
This is a standard functionality provided by Adobe form. You can see 'Tab order' under options, and using the shift key, decide the order in which you want the tab to move.
for the number of row, use the following ( i dont know if theres any standard function, but since its repeated nodes of a subform, you can calculate  it in the following way)
I am assuming that the table is called 'Table1' defined under the root node, and has only headerRow defined. No FooterRow is defined
var count = 0;
var nNumRows = form.Table1.nodes.length;
for (var nNodeCount = 0; nNodeCount < nNumRows; nNodeCount ++){
if (Table1.nodes.item(nNodeCount).className == "subform") {
if (Table1.nodes.item(nNodeCount).name != "HeaderRow"){
count++;
the value of count is the no. of rows in the table

Similar Messages

  • DB Size and TAble size Estimation

    Hi all
    Please tell mehelp link or spredsheet to estimation DB Size and TAble size Estimate
    Regards

    Please tell mehelp link or spredsheet to estimation
    DB Size and TAble size EstimateWhat size are you looking for?
    1) Estimate of physical disk space used by an existing database schema?
    2) Estimate of how much physical disk space will be required for some arbitrary data in order to create a new database?
    Something else?
    You need to be clear with your requirements

  • Tab Order of Dynamic Table or subform

    Hi,
    I have a page with few subforms. At this subforms are dynamic tables or dynamic subforms. How does the tab order works in this kind of layout.
    Some time I have a few subforms or tables group together when activiate the tab order form the menu [View->Tab order]. I have the tab order arranged for a dynamic subform. When I preview and add a few instance of the subform (call it subform A), the first instance tab order follow what was set. But when tab to second instance of subform (subform A), the cursor just when to another subform (subform B). Why is that so? Shouldn't it just continue to the second instance?
    Thanks for any help.

    Hi Mike,
    I have faced with the same problem also. So as a temporary solution, in the exit event of the last item in the table, I changed the focus to the next instance's first item. Not a good way. If there is any different solution, waiting also.
    Asiye.

  • Index size and table size

    Hi,
    I have 3 user tables spaces that the os is reporting as 33 GB, 7 GB, and 5 GB.
    Just from a gut feeling I know we don't have that much data in our tables but I can't seem to find out where the space is allocated. I checked the internet and found various queries.
    The first one (found at ask Uncle Tom), breaks the space for table by table:
    select table_name,blocks, empty_blocks,
    avg_space as avg_space_free_K, num_freelist_blocks, blocks + empty_blocks + num_freelist_blocks as
    total_blocks_allocated,
    ((blocks + empty_blocks + num_freelist_blocks) * 8192) /1048576
    from dba_tables
    order by ((blocks + empty_blocks + num_freelist_blocks) * 8192) /1048576 desc
    This gives a total of just over 8096 MB for all tables on all table spaces.
    I then found a query on this forum.
    SELECT
    SUM(BYTES) / 1048576 as mb_allocated
    FROM
    dba_SEGMENTS
    WHERE
    SEGMENT_TYPE = 'TABLE'
    This gives me around 38,372 MB.
    What is the difference between query 1 and 2?. Can I modifiy query 2 to break down the space allocated by table?
    Thanks in advance.
    Regards,
    Ned

    Tom's query is using information gathered for the cost-based optimizer (CBO). If you have not gathered sttaistics on the tables recently, those values may be way off.
    If you want to see a breakdown of the space used by different objects, you could use something like
    select owner, segment_name, sum(bytes)/1024/1024 MB
      from dba_segments
    where owner NOT IN ('SYS', 'SYSTEM')
    group by owner, segment_nameFrom the operating system, however, you would be looking at the size of the data files allocated to the tablespace. If you allocate 10 GB to the tablespace but only have 1 GB of space from that tablespace allocated to actual objects, you still have 10 GB allocated to Oracle at the operating system level.
    select tablespace_name, sum(bytes)/1024/1024 "MB"
      from dba_data_files
    group by tablespace_nameshould match the values reported at the operating system level.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Indexes, Clusters, Views and Table Size

    Hi
    Anyone can kindly tell me how to check the size of tables,
    indexs, cluster and views? what are the commands to check the
    size? Thank you so much!
    Xiong

    I believe you just need to query
    user_segments,dba_segments,all_segments, Whichever you have
    access to.
    SELECT segment_name,segment_type,bytes/1024 "KB",extents
    FROM
    user_segments
    where segment_type in ('TABLE','INDEX','CLUSTER');
    I don't think views take up any storage aside from their
    definition in the Data Dictionary. Views are Logical.

  • Image and table size help

    Hey all:
    I'm obviously new to Dreamweaver MX, and I've been having
    quite a problem with my banner at the top of my site. Using
    photoshop, I made a banner and tried to put it at the top of my
    site. However, when I inserted the image, the image doesn't fit and
    leaves a white space around the image...it doesn't fit into the
    table. So what I had to do is make the background color in that
    specific cell black so it looks like the entire banner fit into the
    table. But I want to change the banner so it's a better designed
    image, but I know that no matter what I do, the image will not fit
    the cell perfectly. How can I do this?
    The site is: www.tudortastic.com
    Thanks!
    -H

    A table cell will expand to exactly contain an inserted image
    assuming
    the table's cellpadding and cellspacing are both set to zero
    and you
    have not specified an oversized height or width.
    "HappyHelen" <[email protected]> wrote in
    message
    news:eksu5e$4n6$[email protected]..
    > Hey all:
    >
    > I'm obviously new to Dreamweaver MX, and I've been
    having quite a problem
    > with
    > my banner at the top of my site. Using photoshop, I made
    a banner and
    > tried
    > to put it at the top of my site. However, when I
    inserted the image, the
    > image
    > doesn't fit and leaves a white space around the
    image...it doesn't fit
    > into the
    > table. So what I had to do is make the background color
    in that specific
    > cell
    > black so it looks like the entire banner fit into the
    table. But I want
    > to
    > change the banner so it's a better designed image, but I
    know that no
    > matter
    > what I do, the image will not fit the cell perfectly.
    How can I do this?
    >
    > Thanks!
    > -H
    >

  • JScroller on JTable and table size

    Hi everyone...
    I have a small problem...i added JScrollPane to my JTable...but if i do the following...
    JScrollPane contentScroller= new JScrollPane(myJTable,JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS);
    myJTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);In this case scroller works great....accept if i have a smaller data set to show...for example only one column...
    Basically what i would like is to be able to set like minimum size of my JTable...is that possible...

    Oh ya...
    sorry i apologize...
    Well basically what i did is the following...
    In the constructor of my sub-class that extends JTable i set the following property:
    this.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
    /*...........................................................................*/ And then i also added the following code...(i created some additional methods...i dont really know if this is the right way but i didnt find anything more suitable for my problem)
    /*i set JScrollPane onto witch i added my JTable class instance, to a private JscrollPane variable*/
    public void setParentJPanel(JScrollPane parentJScrollPane){
            this.parentJScrollPane = parentJScrollPane;
    /*I only added these 3 methods cos i wanted to get the size of JScrollPane onto witch i added my JTable class instance*/
        public JScrollPane getParentJPanel(){
            return this.parentJScrollPane;
    /*this methods sort of sets all the columns to equal size witch i guess i wanted it to do...*/
        public void setAllColumnsWidth(){
            int parentWidth = this.getParentJPanel().getWidth();
            int columnNumber = this.getColumnNumber();/*method that i wrote to work with another class that works with database*/
            int columnWidth = parentWidth/columnNumber;
            for(int i=0;i < columnNumber;i++)
                this.getColumnModel().getColumn(i).setPreferredWidth(columnWidth);     
        }Hmmm sorry again for not posting my solution...its not really that much impressive thats why i didnt post it the first time...
    Well i hope it helps....(what i needed is basically how to set columns to as equal size as possible...)

  • Table tab order

    Is there a way to change the tab order in a table so that it goes down a column instead of across?
    Likewise, I would like cells to build in down the column by cell instead of across, i.e. all of the first column comes in one cell at a time and then the next one cell at a time. Is this possible.
    Thanks.
    Carole

    Hi Arick,
    This is a standard functionality provided by Adobe form. You can see 'Tab order' under options, and using the shift key, decide the order in which you want the tab to move.
    for the number of row, use the following ( i dont know if theres any standard function, but since its repeated nodes of a subform, you can calculate  it in the following way)
    I am assuming that the table is called 'Table1' defined under the root node, and has only headerRow defined. No FooterRow is defined
    var count = 0;
    var nNumRows = form.Table1.nodes.length;
    for (var nNodeCount = 0; nNodeCount < nNumRows; nNodeCount ++){
    if (Table1.nodes.item(nNodeCount).className == "subform") {
    if (Table1.nodes.item(nNodeCount).name != "HeaderRow"){
    count++;
    the value of count is the no. of rows in the table

  • Why Index size is bigger than table size?

    Dear All,
    I found in my database my tables sizes is coming around 30TB (All Tables in Database). and my index size for the same is 60TB. This is data ware housing environment.
    How the index size and table size are differing?
    Why they are differing? why index size is bigger than table size?
    How to manage the size?
    Please give me clear explanation and required information on the above.
    Regards
    Suresh

    There are many reasons why the total space allocated indexes could be larger than the total space allocated to tables. Sometimes it's a mark of good design, sometimes it indicates a problem. In your position your first move is to spend as little time as possible in deciding whether your high-level summary is indicative of a problem, so you need to look at a little more detail.
    As someone else pointed out - are you looking at the sizes because you are running out of space, or because you have a perceived performance problem. If not, then your question is one of curiosity.
    If it's about performance then you should be looking for code (either through statspack/AWR or sql_trace) that is performing badly and use the analysis of that code to help you identify suspect indexes.
    If it's about space, then you need to do some simple investigations aimed at finding a few indexes that can be "shrunk" or dropped. Pointers for this are:
    select
            table_owner, table_name, count(*)
    from
            dba_indexes
    group by
            table_owner, table_name
    having
            count(*) > 2   -- adjust to keep the output short
    order by
            count(*) desc;This tells you which tables have the most indexes - check the sizes of the tables and indexes and then check the index definitions for the larger tables with lots of indexes.
    Second quick check - join dba_tables to dba_indexes by table_name, and report the table blocks and index leaf blocks in desending order of leaf block count. Look for indexes which are very big, and also bigger than their underlying tables. There are special cases (and bugs) that can cause indexes to be much bigger than they need to be ... this report may identify a couple of anomalies that could benefit from an emergency fix followed (possibly) by a strategic fix.
    Regards
    Jonathan Lewis

  • Tab Order under Control Properties - Display Tab not working

    At present I'm trying to order a couple of Input-Fields and Checkboxes for the Tab-Key. Therefor I tried to use the "Tab Order" Property in the Control Properties - Display Tab - Section: Layout - Tab Order.
    In the SAP Library this property is described that way:
    When user tabs through the controls of the component in runtime, the number indicating what place this control has in the tab order. Note that -1 removes the control from the tab order entirely and 0 indicates that it is highlighted according to its appearance in the component
    Source: [Help.sap|http://help.sap.com/saphelp_nw70/helpdata/en/42/c2ba7f545e3116e10000000a1553f7/frameset.htm]
    The problem now is that VC is completely ignoring this property and just using the tab order in the way the (Input-) fields where created.
    At present I don't see any opportunity to give my "Form view" any logical tab order.
    Is there any workaround? Is it a bug? Is there something I'm doing wrong?
    Thanks for your help in advance.

    Hi,
    It seems that this tab order works only for few of the controls like pushbutton, radio button, checkbox, toggle button...
    i too tried this in my model but it was not working for the input fields of other types.
    regarding -1 -2 ... these values work normally as per their values here -1 -2 order functions just like 2 1.
    hope this helps you.
    Regards,
    Rk.

  • Setting tab order to form fields contained within a table, Indesign CS6

    I have created a form in ID CS6, and have put all the tabs in order so that people can easily navigate it when filling it in. However, all of the form fields that are contained within tables are not in order, and I can't find any way of putting them in order without changing them in acrobat after I have made the interactive PDF. This means that every time my client makes changes to the form I have to manually put all the fields in order again, which is time consuming. Is anyone able to help?

    This tab order dialogue box is nearly useless if you have a complex form with hundreds of form fields as there is no way to interact with the document when the dialogue is open and clicking on an entry in the list does not highlight the respective field. Furthermore, if you have arrays of radio buttons, or check boxes acting like radio buttons, ie all with the same form field name, there's no way to know which order they should be arranged in since they can't be selected or identified while this dialogue is open!
    That is immensely frustrating to say the least.
    It's quite ridiculous that Adobe hasn't fixed this bug in years and this user interface is shockingly bad.

  • Report to find all table and index sizes

    Hi all,
    Good day..
    Is there any report.sql or so to find out the sizes of all the tables and indexes in a database.
    thanks,
    baskar.l

    1.To get table size
    What will be the table size if?
    <or>
    break on report
    set line 200
    COMPUTE SUM LABEL "Total Reclaimable Space" OF "KB Free Space" ON REPORT
    column "Table Size" Format a20
    column "Actual Data Size" Format a20
    column "KB Free Space" Format "9,99,999.99"
    select table_name,
    round((blocks*8),2)||'kb' "Table size",
    round((num_rows*avg_row_len/1024),2)||'kb' "Actual Data size",
    pct_free,
    round((blocks*8),2) - (round((blocks*8),2)*pct_free/100) - (round((num_rows*avg_row_len/1024),2)) "KB Free Space"
    from user_tables
    where round((blocks*8),2) - (round((blocks*8),2)*pct_free/100) - (round((num_rows*avg_row_len/1024),2)) > 0
    order by round((blocks*8),2) - (round((blocks*8),2)*pct_free/100) - (round((num_rows*avg_row_len/1024),2)) desc
    2.To get index size
    How to size the Index
    Hth
    Girish Sharma

  • Guidelines, Form Fields and Tab Order

    I've been fighting a form for about two weeks now with Acrobat 9 Pro. I used guidelines to make sure I could get 2 buttons and a field aligned properly. I have 92 instances of this arrangement. When I reopened the file after I had worked on it for a couple of hours (precisely positioning the guidelines so that I could have consistent field sizes), the guides were gone. What happened. It has now happened three times. I ended up keeping the computer on for 5 days just because I didn't want to lose the guides.
    I'm having a similar problem with the selection for tab order. I have right clicked on the page on the left panel, chosen page properties and set tab order to unspecified. I then reorder the fields in the field panel and save the file. When I open the file again, the tab order is unchecked and the fields are not in the order I left them.
    Does anyone have any idea why I'm losing my sanity with this Acrobat form. I did it in Acrobat because I thought it would be easier than LiveCycle Designer.
    I am duplicating a print form. This means there are 92 places where I have a small button (visible but doesn't print) which executes a JavaScript when pressed to show another button (because it has an icon which will circle the date indicated in a field. I'm thinking I should have the small button on top, aligned on the bottom with the field for the date and the circle icon as the bottom button. How do I get all of these fields and buttons (a mere 276) to go in the right order and stay that way?
    Warren Bingham

    Warren wrote: "I'm having a similar problem with the selection for tab order. I have right clicked on the page on the left panel, chosen page properties and set tab order to unspecified. I then reorder the fields in the field panel and save the file. When I open the file again, the tab order is unchecked and the fields are not in the order I left them."
    In the left panel, in the Sort drop-down list, you have Tab Order selected, right? In the Tab Order drop-down list, is Order Tabs Manually selected?
    I am not able to get any menu by right-clicking on the page in the left panel. Can anyone tell me, is there another way to view the page properties while in Form Editing? I'm not finding it in any of the regular menus (menu bar) and I'd like to verify the setting Warren mentioned, for troubleshooting my own problems with tab order.
    EDIT -- Of course, as soon as I type it out, I discover the cause. I thought he meant the page in the Form Editing view, but no, I have to open the Pages view and right-click on each page. (Oddly, no options were selected at all. Usually a radio button set will default to the most popular option.) So -- sorry, never mind me.

  • Funtion module to  'Determine table and index size online' for DB400

    hi ,
      i am using the a custom program for getting the table details,
      in this i am using the function module  'DB_TABLE_DATA_READ'.
      This is working fine if the DataBase is ORACLE,
      But not working for the database DB400,
      Please Provide with the alternative function module or any other way
    Regards,
    Kumar

    Kumar,
    in what "table details" are you interested? Maybe function module DB4_FILE_INFO could provide you with the information that you need. If you are primarily looking at table sizes, you can also try to query the tables DB4TABLE_STAT and DB4INDEX_STAT directly (in older SAP releases: DBSTATTDB4 and DBSTATIDB4). Please note that the function module and the table structures are no official interfaces, so they may change in future releases.
    Kind regards,
    Christian Bartels.

  • Sales order, Delivery and Invoice changes history tables

    Dear All,
    I want to know how to find out the changes done in Sales Order, Delivery and Invoice.
    As far as sales order is concerned, I know CDHDR and CDPOS are tables can be used to find out the changes.
    But I am not sure about the "Object ID". Where we need to find out this Object ID?
    In the Data element "VBELN_VA" "Change Document" option has been checked under "Further Characteristics" tab.
    Please confirm about the "Object ID".
    Similarly give inputs for Delivery and Invoice change history also.
    Regards,
    Mullairaja

    Hi,
    Could you please explain, how to use these programs?
    Regards,
    Mullairaja

Maybe you are looking for

  • Questions about Using Vector To File And JTable

    hi all I want to write all data from Vector To File and read from file To Vector And I want To show all data from vector to JTable Note: I'm using the JBuilder Compiler This is Class A that my datamember  And Methods in it import java.io.*; * <p>Titl

  • Query results after BI 7 upgrade

    Hi Gurus, Our BW system recently got upgraded from 3.5 to BI 7. After the upgrade, some of the queries are showing different results.Can anyone help me out in identifying the problem?

  • Quicktime slow over network (Vista Enterprise x64)

    Quicklime is ridiculously slow on vista over a network. I conducted several tests, opening an image sequence took 5 seconds on XP and 55 seconds on Vista. Other tests with other programs had no issues ie photoshop, after effects, etc. Does anyone hav

  • Uninstalling beta CS6 in mac

    Running under Lion 10.7.3 my Photoshop CS6 beta probably expired because it starts no more. But Bridge surprisingly does... In fact there are not 60 days transcurred from 21 mars untill now 29 april... When I try to uninstall with the uninstaller thi

  • Starting EAS 11

    Hi everyone, I've just installed EPM 11 but have no idea to to start EAS. I mean, I open the EAS console and when I enter the server name (localhost), user and password (admin/password) I get error "Could not connect to Administration Server". I know