Having images in a table, which can scroll

Hi everyone.
This is a newbie question.
Right now, I have a a table, split into two. On the left
side, I want image thumbnails, and on the right side is where the
larger image appears. I am addding more thumbnails to this cell,
but it expands to fit the amount of thumbnails. That is nice, but
the look of a site im working on, I want the cell size to be
the same, and instead of making the table expand, i want the cell
to stay the same height, with a scroll bar to navigate, just
throught these thumbnails. Is there a way I can do this? Or Are
tables just automatic in the way they contain content?
Is there a form that I can just click "scroll" on?
Any help would be appreciated:)
Thank you
-C

I gave up on the graphics in a table - brain ache!!
My iBook is slowly coming on but there is always something I need to change in iBa.
The latest is the words Chapter 1.
The book has no Chapters and I can get the title correct but its always preceeded by Chapter 1 - stupid that I can't just get to the code and delete it.
My contents are mini pagesat the bottom of the page and pop up to the real page OK. I have to leave room at the bottom of the contents page for them to work properly.
Good luck
Bruce

Similar Messages

  • External Table which can handle appending multiple csv files dynamic

    I need an external table which can handle appending multiple csv files' values.
    But the problem I am having is : the number of csv files are not fixed.
    I can have between 2 to 6-7 files with the suffix as current_date. Lets say it will be like my_file1_aug_08_1.csv, my_file1_aug_08_2.csv, my_file1_aug_08_3.csv etc. and so on.
    I can do it by following as hardcoding if I know the number of files, but unfortunately the number is not fixed and need to something dynamically to inject with a wildcard search of file pattern.
    CREATE TABLE my_et_tbl
      my_field1 varchar2(4000),
      my_field2 varchar2(4000)
    ORGANIZATION EXTERNAL
      (  TYPE ORACLE_LOADER
         DEFAULT DIRECTORY my_et_dir
         ACCESS PARAMETERS
           ( RECORDS DELIMITED BY NEWLINE
            FIELDS TERMINATED BY ','
            MISSING FIELD VALUES ARE NULL  )
         LOCATION (UTL_DIR:'my_file2_5_aug_08.csv','my_file2_5_aug_08.csv')
    REJECT LIMIT UNLIMITED
    NOPARALLEL
    NOMONITORING;Please advice me with your ideas. thanks.
    Joshua..

    Well, you could do it dynamically by constructing location value:
    SQL> CREATE TABLE emp_load
      2      (
      3       employee_number      CHAR(5),
      4       employee_dob         CHAR(20),
      5       employee_last_name   CHAR(20),
      6       employee_first_name  CHAR(15),
      7       employee_middle_name CHAR(15),
      8       employee_hire_date   DATE
      9      )
    10    ORGANIZATION EXTERNAL
    11      (
    12       TYPE ORACLE_LOADER
    13       DEFAULT DIRECTORY tmp
    14       ACCESS PARAMETERS
    15         (
    16          RECORDS DELIMITED BY NEWLINE
    17          FIELDS (
    18                  employee_number      CHAR(2),
    19                  employee_dob         CHAR(20),
    20                  employee_last_name   CHAR(18),
    21                  employee_first_name  CHAR(11),
    22                  employee_middle_name CHAR(11),
    23                  employee_hire_date   CHAR(10) date_format DATE mask "mm/dd/yyyy"
    24                 )
    25         )
    26       LOCATION ('info*.dat')
    27      )
    28  /
    Table created.
    SQL> select * from emp_load;
    select * from emp_load
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    SQL> set serveroutput on
    SQL> declare
      2      v_exists      boolean;
      3      v_file_length number;
      4      v_blocksize   number;
      5      v_stmt        varchar2(1000) := 'alter table emp_load location(';
      6      i             number := 1;
      7  begin
      8      loop
      9        utl_file.fgetattr(
    10                          'TMP',
    11                          'info' || i || '.dat',
    12                          v_exists,
    13                          v_file_length,
    14                          v_blocksize
    15                         );
    16        exit when not v_exists;
    17        v_stmt := v_stmt || '''info' || i || '.dat'',';
    18        i := i + 1;
    19      end loop;
    20      v_stmt := rtrim(v_stmt,',') || ')';
    21      dbms_output.put_line(v_stmt);
    22      execute immediate v_stmt;
    23  end;
    24  /
    alter table emp_load location('info1.dat','info2.dat')
    PL/SQL procedure successfully completed.
    SQL> select * from emp_load;
    EMPLO EMPLOYEE_DOB         EMPLOYEE_LAST_NAME   EMPLOYEE_FIRST_ EMPLOYEE_MIDDLE
    EMPLOYEE_
    56    november, 15, 1980   baker                mary            alice     0
    01-SEP-04
    87    december, 20, 1970   roper                lisa            marie     0
    01-JAN-99
    SQL> SY.
    P.S. Keep in mind that changing location will affect all sessions referencing external table.

  • In creating a fillable PDF in XI Pro, can I insert a table which can be tabbed through?

    In creating a fillable PDF in XI Pro, can I insert a table which can be tabbed through?

    You're in luck. Create the first field and then right-click it (in Form Edit mode) and select Create Multiple Copies. You'll be able to specify how many copies of the fields to generate, and at what intervals. The nice thing is that although the properties of the new fields will be identical to the source one, they'll each have a unique name, so you'll get an instant "table" of fields.

  • A transacction or table which can display all the souce system

    Hi,
    Is there any transaction or table which can display all the source systems?
    Thanks in advance.

    RSA1->Modeling-> Click on Source Systems, here you can see all the source systems connected with BW.
    tcode: SM59 & expand all the connections. Here you can see all the connections.
    Hope it helps..

  • How to create a Z* table which can maintain through SM30?

    How to create a Z* table which can maintain through SM30? Thanks!

    This question had been asked millions of times...you just need to search the forums...
    Quick hint...goto SE11...the utilities menu and then Table Maintenance Generator.
    Greetings,
    Blag.

  • Always fill out the very last row of a table (which can expand)

    Hi, I'm having problems with a button in table A that adds a row to another table (table B) and then automatically fills out some of the table row data (table A) into the newly created row of the other table (table B)
    Here's my code (on click of button in a row of Table A) - I should also mention that Table A has a button to add more rows to itself:
    This almost works - however, it only works if the amount of rows in each table match - which they don't necessarily as the user may or may not opt to add the row from table A to table B. eg. Table A could be 4 rows deep, but table B may only contain 2 Rows.
    tableB.row.addInstance(0);
    var vCol1 = this.resolveNodes("tableA.row.cellA");
    var vCol2 = this.resolveNodes("tableB.row.cellA");
    var vCol3 = this.resolveNodes("tableA.row.cellB");
    var vCol4 = this.resolveNodes("tableB.row.cellB");
    for (var i = 0; i < vCol1.length; i ++) {
                 vCol2.item(i).rawValue = vCol1.item(i).rawValue;
                 vCol4.item(i).rawValue = vCol3.item(i).rawValue;
    I'm new to scripting (learning on the fly) so my question is, seeing that the first command is to add a new row to table B, can I alter the code so that var vCol2 and vCol4 always relate to the very latest row that has been created? In that way, any previous rows that have been added will shunt down the list and will not be affected but the new button click? Or is there a better way of doing this.

    Hi,
    I think the key here is that the addInstance method returns the row it has just added.  So your add can be something like;
    var button = xfa.host.messageBox("You are about to ADD this entry to Table B. Do you wish to proceed?", "Add to Table B Section", 1, 2);
    if (button == 4)
       var newRow = tableB._tableBrow.addInstance(0);
       newRow.cellA.rawValue = cellA.rawValue;
       newRow.cellB.rawValue = cellB.rawValue;
    I'm not sure how you want the table A remove button to work?  Should it remove the first table B row with a matching cellA and cellB?
    Regards
    Bruce

  • Web ADI Error when using column from table which can be NULL as parameter

    Hi
    We have a custom integrator which queries the records and downloads into excel sheet. There is parameter list attached to it. One of the parameter is on a field which can have NULL. When we try running the ADI , we are getting the error :
    Fatal error: Please have your system administrator view the bne.log file.
    java.lang.NullPointerException
    Please contact your support representative
    Please help.
    Regards,
    Pradeep.

    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Stefan Misch ([email protected]):
    Yep - if you try:
    create unique index XAK2_A_ARTIKEL
    on A_ARTIKEL(CUST_ID, EXTERNAL_ID);
    I get error ORA-01452, because of duplicate keys. I verified, that within a each CUST_ID, there is no duplicate non-null EXTERNAL_ID, but there are lots of rows for each CUST_ID where EXTERNAL_ID is NULL.
    Thanks for your help.
    Stefan<HR></BLOCKQUOTE>
    Create a view on your table, that you will use for inserts.
    Then, create a trigger INSTEAD OF INSERT on your view. You can perform the checks for uniqueness in it...
    Hope this will help...
    Thomas.
    null

  • Best method to design a table which can point to two different entities

    I have the following set of tables,
    Dimension1, Dimension2, Dimension3
    Dimension1 is dependant on the both Dimensions2 and Dimension3,  however the data mapping with Dimension3 will be very sparse (say only 1% of data will be available remaining will be NULL). So in this case, per my understnading there are the following
    options available,
    Option1: Have two columns in Dimension1 table and link them to the respective dimensions (However as mentioned the column which will be mapped to Dimension3 will have very less values ~1%), and have some conditional check to make sure that one of these
    two columns shuld always contain a value.
    Option 2: Split the Dimension1 table into two tables and map them to the respective dimensions. This removes the NULL aspect however is this is a right thing to do as per the DB design good practices and normalization techniques.
    Option3: Add one column (DimensionType) in Dimension1 table which will denote the type of dimension to which the data will be mapped into ('Dimension2' or 'Dimension3') and then add another column which will contain the actual ID and will map to both the
    dimensions based on DimensionType column (logically, because physically you cannot map a single column to 2 different entities).
    Which one of the above is a good design, also if we say either of option1 or option2 then what will be the case if Dimension3 will be dependant on a new dimension in future. Do we need to add a clumn or create one another table for this? Please let me know
    the thoughts.
    Regards, Murugan S

    Thanks Visakh
    Any other thoughts? or should option1 be considered the best approach given the scenario. Also this implies that if there is going to be a new dependancy in future which does not fit into Dimension2 and Dimension3, the solution is to add a third column in
    Dimension1 - Am I correct in the understanding?
    Regards, Murugan S
    Yes any new dependency have to be represented by a new foreign key column
    Now I'm getting one doubt 
    By new dependency do you mean a new related attribute? Are all these dimensions holding related attributes for the main entity?
    If yes then you may merge them to a single dimension ie attribute table like format with a type column to indicate the type of attribute
    Then you will always need only a single reference key (column) in your fact
    Any new dependency will just be a new record addition in the table with a new type value
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Having problems with firefox 4 using creloaded (oscommerce cart) it is turning the price weight section etc into a table which can not be edited.

    As above to be honest but the entire section of the top of the product add is uneditable and all information is set to zero. Which means I can no longer add products correctly to my website.

    unfortunately there are tons of people with this issue but Apple has not given any answers for us to fix this issue yet. I wish they would allocate more people to solving these problems when they roll out new versions of itunes along with new hardware.

  • Reading data from a table which can have millions of record

    Hi,
    I need to write a query in my report that can be able to fetch records from a z table that have arount 20 lac (= 2 million) records. As far i knoew we can not handle such a huge amount of data in our internal tables. because the size of internal table is fixed and that can be increased only by basis persons.
    So can anybody tell me the approach that i should follow such that i can split the data from this table.
    Or any other approach is also welcome.
    Please reply ASAP when you have the time.
    Thanks And Regards,
    Mayank
    Edited by: Thomas Zloch on Mar 6, 2010 9:25 PM

    Hi Mayank,
    reduce the data selected to the fields you really need, avoid select *. See online help on SELECT, addition PACKAGE SIZE.
    select field1 field2 field3
      into corresponding fields of table lt_table package size nnn WHERE ...
    * process  lt_table
    endselect.
    Regards,
    Clemens
    Edited by: Rob Burbank on Mar 9, 2010 12:29 PM

  • Tables which can give information about the variables

    When we on the system information, we can view the table associated with that field. However no table is linked to the variables. How can I pick this information in a query. eg : how can I catch the variable field at row level for the field, price after discount in the table PCH1.

    Hi Vivek,
    Check this User Query,
    SELECT T0.[DocNum], T1.[ItemCode], T1.[DiscPrcnt], T1.[Price], T1.[PriceAfVAT],
    T1.[PriceBefDi], T1.[LineTotal]
    FROM OPCH T0 
    INNER JOIN PCH1 T1 ON T0.DocEntry = T1.DocEntry
    SELECT T0.[DocNum], T1.[ItemCode], T1.[DiscPrcnt], T1.[Price], T1.[LineTotal]
    FROM OPCH T0 
    INNER JOIN PCH1 T1 ON T0.DocEntry = T1.DocEntry
    Regards,
    Madhan.

  • Z Table which can be maintained in productional environment

    How can i define a Z-table so that it is maintainable in production?

    Create Table Maintenance generator for your Z table
    Goto SE11 give ur table name then click Change
    now goto Utilities and click Table Maintenance genrator .
    Give Authorization Group,Function group and click Create icon to generate.
    You need to provide SM30 authorization for the user for maintaining data in table.
    Regards
    Rajesh

  • Is it possible for IPhoto to go through images and find duplicates which can then be safely deleted?  I have so many duplicates that it would take me weeks to physically go through them and delete individually.   I

    Is it possible for IPhoto to seek out duplicate images and then delete them?

    Try one of these:  iPhoto Library Manager, Duplicate Cleaner for iPhoto,  Duplicate Annihilator  or iPhoto Applescript to Remove Duplicates.  The second and last are free. The first is, IMO, the better app and has many other features.
    OT

  • IPhone Scroll Component with Item Renderer, which can list Facebook friend list.

    Hi,
    I am working on a project, in which i have to show facebook friends of user in a list which can scroll. I have made the component with scrolling functionality but, the scrolling is not working fine. Any ideas about the scroll.
    Thanks in advance.
    Vipul

    Hi,
    Yaa, I have made my own component, and it is working fine, but when number of facebook increass, the mouse over event doesn't work, and tapping scroll freezes.
    Can you suggest me some way so that i can dipatch that mouse over event repeatdly.
    Vipul

  • Table that can give information about Query element

    Hi All,
    Please can you help, is there any table which can show the query elements belongs to which Query or Object.

    Hi Sulochan,
    You can go to rsa1 - Transport connection and select the webtemplate there. It would show you all the elements in the template along with their technical name. That should be of help. Else, you can copy and paste the technical name in the following tables and check if they are present in it.
    RSZELTDIR                             Directory of the reporting component elements
    RSZELTTXT                            Texts of reporting component elements
    RSZELTXREF                          Directory of query element references
    RSRREPDIR                            Directory of all reports (Query GENUNIID)
    RSZCOMPDIR                         Directory of reporting components
    RSZWOBJ                              Storage of the Web Objects
    RSZWOBJTXT                       Texts for Templates/Items/Views
    RSZWOBJXREF                     Structure of the BW Objects in a Template
    RSZWTEMPLATE                   Header Table for BW HTML Templates
    Hope this helps.
    Regards
    Snehith

Maybe you are looking for

  • How can I export a keynote proyect to a movie?

    I am making an assigment for the university and I don't know how to export a keynote presentation to a movie, ( with short videos and narration inside of it ). I tried quicktime export and it didin't work , the whole timing thing was awful! I really

  • [SOLVED]cmus && skype no sound

    Hello,    I'm experiencing quite the issue with my laptop(Asus N53SV, i3-2310M model). Cmus gives me the annoying "Error: opening audio device: internal error" and with skype I only have "Virtual Device" in the device lists. I noticed this happening

  • Interactive report define "from" in email download

    I heard that the latest apex 4.2.4 has future in Interactive Report  Define "from" address Subscription in Email Download I installed apex 4.2.4 on oracle 11.1.0.7 windows(32 bit); I'm using Apex listener 2.0 deployed to weblogic 11g; I still don't s

  • Php-cgi php not same version still works?

    Maybe this post should have gone in the Package issues forum, but I thought more people would know about that kind of thing in this forum. Anyways, I noticed that php-cgi was at version 5.2.1 and php main package is at 5.2.2. If i'm using lighttpd do

  • Different out in Toad and in Oracle SQL Developer

    Hi The below script DECLARE g_run_date DATE := '02-OCT-09'; s_date date; e_date date; BEGIN SELECT TRUNC(TO_DATE(g_run_date + ((-1)* (TO_CHAR ( g_run_date + 1, 'D'))), 'DD/MON/YYYY'),'DD')start_of_week, TRUNC(TO_DATE (g_run_date + (6 - (TO_CHAR (g_ru