New DW / Insert Table - Img issues

i totally realise DW has been encouraging the use of
stylesheets vice tables and image tags, but it's quite annoying
that i can no longer control exactly WHAT image and how my table is
formatted WHEN I NEED TO USE SUCH (until, of course, after they're
inserted, i.e., the table with 3 rows, 3 columns and with borders
insterted by default...).
is there a way to change these default values?
regards,
GN

Yeah - I don't quite understand the question, either.
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
==================
"Pizza Good" <[email protected]> wrote in message
news:f3hmhh$73s$[email protected]..
> Do you mean when you go to:
>
> INSERT / TABLE
>
>
> "glennn.php" <[email protected]> wrote
in message
> news:f3hm4m$6k6$[email protected]..
>>i totally realise DW has been encouraging the use of
stylesheets vice
>>tables
>> and image tags, but it's quite annoying that i can
no longer control
>> exactly
>> WHAT image and how my table is formatted WHEN I NEED
TO USE SUCH (until,
>> of
>> course, after they're inserted, i.e., the table with
3 rows, 3 columns
>> and with
>> borders insterted by default...).
>>
>> is there a way to change these default values?
>>
>> regards,
>> GN
>>
>
>

Similar Messages

  • Inserting new row in Table in 11.1.2 from 11.1.1.3 not rendering table!!!!!

    Hey Guys, my status might say noob but i am well seasoned in ADF. We migrated from 11.1.1.3 to the new JDEV 11.1.2. We are doing a test run before we commit to it.
    I noticed the following:
    We have master detail forms that work flawlessly in 11.1.1.3 when we ran the app under 11.1.2 we noticed that any time you try to add a new row to a table the table does not render. The server logs show the action going through and the count goes up one but the table is not rendered anymore it disappears!!!!!!!!!!!!!!
    Now all of this was imported from the 11.1.1.3. all of our tables that have createInsert actions on them are doing this.
    If i drag the tables again and set them up from scratch it seems to work fine. Our issue is we have a good 300 of these tables in different panels and panel collections. we have to do all of that work all over again.
    No errors show in the log. IS THIS A BUG???????????????
    UPDATE: REFRESHING THE PAGE using the Browser Refresh Button Will show the new ROW....... THIS IS NOT GOOOD!!!
    Edited by: user8333408 on Jul 7, 2011 9:23 AM
    Edited by: user8333408 on Jul 7, 2011 9:24 AM
    Edited by: user8333408 on Jul 7, 2011 10:08 AM

    Thanks for the reply.
    The Project was in version 11.1.3 before I migrated. I had the issue above so I migrated to 11.1.1.4 then to 11.1.1.5 then to the New GREAT 11.1.2 to go by the matrix of support The issue is still there.
    Basic Page layout:
    SEARCH-MASTER-PANELTABBED LAYOUT (Hold all the CHILDREN RECORDS)
    PANEL TAB is made of ; SHOW DETAIL ITEM- PANEL COLLECTION- TABLE.
    the panel collection has a toolbar with 2 buttons in it.
    My issue varies:
    Hit create insert==> record count goes up one but the table does not render (it goes all blank even if records existed in it)
    Hit undo budo ==>table still not rendering. (click next on master record then click previous to come back, the table renders correctly.)
    other tables do the following:
    Hit Create insert == > table shows normally and I can enter new record.
    Hit undo ==> table count goes down but table does not render at all anymore.
    for this issue i noticed if i set cache results to false the table works after hitting undo
    IF I CREATE A NEW SHOW DETAIL ITEM and put exactly what the other tabs have in them and use the same layouts and buttons the new table works great!!!!!!!!!!!!???????????????????? WTF?!?!?!?!
    NO ERROR MESSAGES even at finest level are thrown.
    I HAD NO ISSUES IN THE PREVIOUS VERSIONS OF JDEV IS THIS A JSF 2.0 BUG????
    BY THE WAY JDEV 11.1.2 sometimes CRASHES or Hangs when viewing the Binding of Page when you click on Binding straight from the Design view. I have to open the Binding Page separate to view it. FYI
    Edited by: Nottallah on Jul 11, 2011 9:48 AM
    Edited by: Nottallah on Jul 11, 2011 9:51 AM

  • How to insert a new record to table with foreign key

    I have 3 tables like this :
    CREATE TABLE PERSON (
    PK INTEGER NOT NULL,
    NAME VARCHAR(10),
    SSNUM INTEGER,
    MGR INTEGER);
    ALTER TABLE PERSON ADD CONSTRAINT PK_PERSON PRIMARY KEY (PK);
    ALTER TABLE PERSON ADD CONSTRAINT FK_PERSON FOREIGN KEY (MGR) REFERENCES
    PERSON (PK);
    /* Tables
    CREATE TABLE PROJECT (
    PK INTEGER NOT NULL,
    CODE_NAME INTEGER);
    ALTER TABLE PROJECT ADD CONSTRAINT PK_PROJECT PRIMARY KEY (PK);
    /* Tables
    CREATE TABLE XREF (
    PERSON INTEGER NOT NULL,
    PROJECT INTEGER NOT NULL);
    ALTER TABLE XREF ADD CONSTRAINT PK_XREF PRIMARY KEY (PERSON, PROJECT);
    ALTER TABLE XREF ADD CONSTRAINT FK_XREF1 FOREIGN KEY (PERSON) REFERENCES
    PERSON (PK);
    ALTER TABLE XREF ADD CONSTRAINT FK_XREF2 FOREIGN KEY (PROJECT) REFERENCES
    PROJECT (PK);
    I do like the way of "ReverseTutoral" and the file .jdo here :
    <?xml version="1.0" encoding="UTF-8"?>
    <jdo>
    <package name="reversetutorial">
    <class name="Person" objectid-class="PersonId">
    <extension vendor-name="kodo" key="class-column" value="none"/>
    <extension vendor-name="kodo" key="lock-column" value="none"/>
    <extension vendor-name="kodo" key="table" value="PERSON"/>
    <field name="name">
    <extension vendor-name="kodo" key="data-column"
    value="NAME"/>
    </field>
    <field name="person">
    <extension vendor-name="kodo" key="pk-data-column"
    value="MGR"/>
    </field>
    <field name="persons">
    <collection element-type="Person"/>
    <extension vendor-name="kodo" key="inverse"
    value="person"/>
    <extension vendor-name="kodo" key="inverse-owner"
    value="person"/>
    </field>
    <field name="pk" primary-key="true">
    <extension vendor-name="kodo" key="data-column"
    value="PK"/>
    </field>
    <field name="ssnum">
    <extension vendor-name="kodo" key="data-column"
    value="SSNUM"/>
    </field>
    <field name="xrefs">
    <collection element-type="Xref"/>
    <extension vendor-name="kodo" key="inverse"
    value="person"/>
    <extension vendor-name="kodo" key="inverse-owner"
    value="person"/>
    </field>
    </class>
    <class name="Project" objectid-class="ProjectId">
    <extension vendor-name="kodo" key="class-column" value="none"/>
    <extension vendor-name="kodo" key="lock-column" value="none"/>
    <extension vendor-name="kodo" key="table" value="PROJECT"/>
    <field name="codeName">
    <extension vendor-name="kodo" key="data-column"
    value="CODE_NAME"/>
    </field>
    <field name="pk" primary-key="true">
    <extension vendor-name="kodo" key="data-column"
    value="PK"/>
    </field>
    <field name="xrefs">
    <collection element-type="Xref"/>
    <extension vendor-name="kodo" key="inverse"
    value="project"/>
    <extension vendor-name="kodo" key="inverse-owner"
    value="project"/>
    </field>
    </class>
    <class name="Xref" objectid-class="XrefId">
    <extension vendor-name="kodo" key="class-column" value="none"/>
    <extension vendor-name="kodo" key="lock-column" value="none"/>
    <extension vendor-name="kodo" key="table" value="XREF"/>
    <field name="person">
    <extension vendor-name="kodo" key="pk-data-column"
    value="PERSON"/>
    </field>
    <field name="person2" primary-key="true">
    <extension vendor-name="kodo" key="data-column"
    value="PERSON"/>
    </field>
    <field name="project">
    <extension vendor-name="kodo" key="pk-data-column"
    value="PROJECT"/>
    </field>
    <field name="project2" primary-key="true">
    <extension vendor-name="kodo" key="data-column"
    value="PROJECT"/>
    </field>
    </class>
    </package>
    </jdo>
    Data of those tables are :
    PERSON :
    | PK | NAME | SSNUM | MGR |
    | 1 | ABC | 1 | 1 |
    | 2 | DEF | 5 | 1 |
    PROJECT
    | PK | CODE_NAME |
    | 1 | 12 |
    | 2 | 13 |
    And now I want to add a new record into table XREF : insert into XREF
    values (1,1);
    public void createData() {
    Xref xref = new Xref();
    Person person = new Person(1);
    Project project = new Project(1);
    xref.setPerson(person);
    xref.setProject(project);
    person.getXrefs().add(xref);
    person.getXrefs().add(xref);
    pm.currentTransaction().begin();
    pm.makePersistent(xref);
    pm.currentTransaction().commit();
    I don't know why Kodo automatically insert new record to table PERSON ->
    confilct Primary Key. The errors are :
    0 [main] INFO kodo.Runtime - Starting Kodo JDO version 2.4.1
    (kodojdo-2.4.1-20030126-1556) with capabilities: [Enterprise Edition
    Features, Standard Edition Features, Lite Edition Features, Evaluation
    License, Query Extensions, Datacache Plug-in, Statement Batching, Global
    Transactions, Developer Tools, Custom Database Dictionaries, Enterprise
    Databases, Custom ClassMappings, Custom ResultObjectProviders]
    41 [main] WARN kodo.Runtime - WARNING: Kodo JDO Evaluation expires in 29
    days. Please contact [email protected] for information on extending
    your evaluation period or purchasing a license.
    1627 [main] INFO kodo.MetaData -
    com.solarmetric.kodo.meta.JDOMetaDataParser@e28b9: parsing source:
    file:/D:/AN/Test/classes/reversetutorial/reversetutorial.jdo
    3092 [main] INFO jdbc.JDBC - [ C:23387093; T:19356985; D:10268916 ] open:
    jdbc:firebirdsql:localhost/3050:D:/An/test/temp.gdb (sysdba)
    3325 [main] INFO jdbc.JDBC - [ C:23387093; T:19356985; D:10268916 ]
    close:
    com.solarmetric.datasource.PoolConnection@164dbd5[[requests=0;size=0;max=70;hits=0;created=0;redundant=0;overflow=0;new=0;leaked=0;unavailable=0]]
    3335 [main] INFO jdbc.JDBC - [ C:23387093; T:19356985; D:10268916 ] close
    connection
    3648 [main] INFO jdbc.JDBC - Using dictionary class
    "com.solarmetric.kodo.impl.jdbc.schema.dict.InterbaseDictionary" to
    connect to "Firebird" (version "__WI-V6.2.972 Firebird 1.0.3)WI-V6.2.972
    Firebird 1.0.3/tcp (annm)/P10") with JDBC driver "firebirdsql jca/jdbc
    resource adapter" (version "0.1")
    4032 [main] INFO jdbc.JDBC - [ C:25657668; T:19356985; D:10268916 ] open:
    jdbc:firebirdsql:localhost/3050:D:/An/test/temp.gdb (sysdba)
    4143 [main] INFO jdbc.SQL - [ C:25657668; T:19356985; D:10268916 ]
    preparing statement <3098834>: INSERT INTO XREF(PERSON, PROJECT) VALUES
    4224 [main] INFO jdbc.SQL - [ C:25657668; T:19356985; D:10268916 ]
    executing statement <3098834>: [reused=1;params={(int)1,(int)1}]
    4244 [main] INFO jdbc.SQL - [ C:25657668; T:19356985; D:10268916 ]
    preparing statement <9090824>: INSERT INTO PERSON(MGR, NAME, PK, SSNUM)
    VALUES (?, ?, ?, ?)
    4315 [main] INFO jdbc.SQL - [ C:25657668; T:19356985; D:10268916 ]
    executing statement <9090824>: [reused=1;params={null,null,(int)1,(int)0}]
    4598 [main] WARN jdbc.JDBC - java.sql.SQLWarning: java.sql.SQLWarning:
    resultSetType or resultSetConcurrency changed
    4598 [main] WARN jdbc.JDBC - java.sql.SQLWarning: java.sql.SQLWarning:
    resultSetType or resultSetConcurrency changed
    4598 [main] INFO jdbc.JDBC - [ C:25657668; T:19356985; D:10268916 ] begin
    rollback
    4608 [main] INFO jdbc.JDBC - [ C:25657668; T:19356985; D:10268916 ] end
    rollback 10ms
    4628 [main] INFO jdbc.JDBC - [ C:25657668; T:19356985; D:10268916 ]
    close:
    com.solarmetric.datasource.PoolConnection@1878144[[requests=2;size=2;max=70;hits=0;created=2;redundant=0;overflow=0;new=2;leaked=0;unavailable=0]]
    4628 [main] INFO jdbc.JDBC - [ C:25657668; T:19356985; D:10268916 ] close
    connection
    javax.jdo.JDOFatalDataStoreException:
    com.solarmetric.kodo.impl.jdbc.sql.SQLExceptionWrapper:
    [SQL=INSERT INTO PERSON(MGR, NAME, PK, SSNUM) VALUES (null, null, 1, 0)]
    [PRE=INSERT INTO PERSON(MGR, NAME, PK, SSNUM) VALUES (?, ?, ?, ?)]
    GDS Exception. violation of PRIMARY or UNIQUE KEY constraint "PK_PERSON"
    on table "PERSON" [code=335544665;state=null]
    NestedThrowables:
    com.solarmetric.kodo.impl.jdbc.sql.SQLExceptionWrapper:
    [SQL=INSERT INTO PERSON(MGR, NAME, PK, SSNUM) VALUES (null, null, 1, 0)]
    [PRE=INSERT INTO PERSON(MGR, NAME, PK, SSNUM) VALUES (?, ?, ?, ?)]
    GDS Exception. violation of PRIMARY or UNIQUE KEY constraint "PK_PERSON"
    on table "PERSON"
    at
    com.solarmetric.kodo.impl.jdbc.runtime.SQLExceptions.throwFatal(SQLExceptions.java:17)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.flush(JDBCStoreManager.java:416)
    at
    com.solarmetric.kodo.runtime.PersistenceManagerImpl.flush(PersistenceManagerImpl.java:575)
    at
    com.solarmetric.kodo.runtime.PersistenceManagerImpl.commit(PersistenceManagerImpl.java:438)
    at reversetutorial.Finder.createData(Finder.java:74)
    at reversetutorial.Finder.main(Finder.java:141)
    NestedThrowablesStackTrace:
    org.firebirdsql.jdbc.FBSQLException: GDS Exception. violation of PRIMARY
    or UNIQUE KEY constraint "PK_PERSON" on table "PERSON"
    at
    org.firebirdsql.jdbc.FBPreparedStatement.internalExecute(FBPreparedStatement.java:425)
    at
    org.firebirdsql.jdbc.FBPreparedStatement.executeUpdate(FBPreparedStatement.java:136)
    at
    com.solarmetric.datasource.PreparedStatementWrapper.executeUpdate(PreparedStatementWrapper.java:111)
    at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.executePreparedStatementNonBatch(SQLExecutionManagerImpl.java:542)
    at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.executePreparedStatement(SQLExecutionManagerImpl.java:511
    at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.executeInternal(SQLExecutionManagerImpl.java:405)
    at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.flush(SQLExecutionManagerImpl.java:272
    at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.flush(JDBCStoreManager.java:411)
    at
    com.solarmetric.kodo.runtime.PersistenceManagerImpl.flush(PersistenceManagerImpl.java:575)
    at
    com.solarmetric.kodo.runtime.PersistenceManagerImpl.commit(PersistenceManagerImpl.java:438)
    at reversetutorial.Finder.createData(Finder.java:74)
    at reversetutorial.Finder.main(Finder.java:141)
    at org.firebirdsql.gds.GDSException: violation of PRIMARY or UNIQUE KEY
    constraint "PK_PERSON" on table "PERSON
    at org.firebirdsql.jgds.GDS_Impl.readStatusVector(GDS_Impl.java:1683)
    at org.firebirdsql.jgds.GDS_Impl.receiveResponse(GDS_Impl.java:1636)
    at org.firebirdsql.jgds.GDS_Impl.isc_dsql_execute2(GDS_Impl.java:865)
    at
    org.firebirdsql.jca.FBManagedConnection.executeStatement(FBManagedConnection.java:782)
    at
    org.firebirdsql.jdbc.FBConnection.executeStatement(FBConnection.java:1072)
    at
    org.firebirdsql.jdbc.FBPreparedStatement.internalExecute(FBPreparedStatement.java:420)
    at
    org.firebirdsql.jdbc.FBPreparedStatement.executeUpdate(FBPreparedStatement.java:136)
    at
    com.solarmetric.datasource.PreparedStatementWrapper.executeUpdate(PreparedStatementWrapper.java:111)
    at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.executePreparedStatementNonBatch(SQLExecutionManagerImpl.java:542)
    at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.executePreparedStatement(SQLExecutionManagerImpl.java:511)
    at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.executeInternal(SQLExecutionManagerImpl.java:405)
    at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.flush(SQLExecutionManagerImpl.java:272)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.flush(JDBCStoreManager.java:411)
    at
    com.solarmetric.kodo.runtime.PersistenceManagerImpl.flush(PersistenceManagerImpl.java:575)
    at
    com.solarmetric.kodo.runtime.PersistenceManagerImpl.commit(PersistenceManagerImpl.java:438)
    at reversetutorial.Finder.createData(Finder.java:74)
    at reversetutorial.Finder.main(Finder.java:141)
    Exception in thread "main"

    First off, use the '-primaryKeyOnJoin true' flag when running the reverse
    mapping tool so that you can get rid of that useless Xref class and have
    a direct relation between Person and Project. See the documentation on
    reverse mapping tool options here:
    http://www.solarmetric.com/Software/Documentation/latest/docs/ref_guide_pc_reverse.html
    But your real problem is that you are creating new objects, assigning
    primary key values, and expecting them to represent existing objects.
    That's not the way JDO works. If you want to set relations to existing
    objects in JDO, you use the PM to look up those objects. If you try to
    create new objects, JDO will assume you want to insert new records into
    the DB, and you'll get PK conflicts like you see here.
    There are several good books out on JDO; if you're just starting out with
    it, they might save you a lot of time and help you master JDO quickly.

  • Insert Tables is not working DW MX

    The insert table option does not bring up the insert table dialog box and will not insert a table.  Does anyone know why or how to fix this.  I am using Dreamweaver MX on Windows 7.
    Thanks,
    Judi

    CS6 is definitely the way to go. I highly recommend it.
    I have only encountered one bug with the download version, (which also affects the Cloud version) and it relates to Photoshop slices, exported as DIVs and CSS (or tables), and edited in DW to have image rollovers.
    In CS5.5 and all previous versions, Dreamweaver could automatically assign a new image name to slices as they were removed, one at a time, and new rollover images added back. CS6 can only achieve this if every intended rollover slice is removed at the same time. So if you've got a navigation bar with 12 different images you want to replace with their counterpart rollovers, in CS6 you would have to remove all of them at once, and then remember the names of each image, where each one goes, as well as there respective alternate text.
    The workaround is to manually type in a new name for each image pair. Not a big deal, but I wondered why, after so many years, this capability disappeared.
    So I filed a bug report with Adobe. I was contacted about it, and even created a video for the Dreamweaver Team rep, showing the workflow issue. 5 months later, and it still has not been fixed.
    But like I said, it's not a big deal.

  • Unable to insert table in design view???

    Im using Dreamweaver MX 6.0, been using it for a while
    trouble free. Recently installed it on my new Vista laptop, install
    went fine, program opens fine. I was in design view today, tried to
    insert a table and was initially getting some weird error message,
    but the table WAS created. After a few minutes I went to make a
    change and the program crashed. Started Dreamweaver again, tried to
    insert a table and nothing happens. I can click the insert table
    button, try Insert >>> Table, and nothing happens, no
    error message, nothing.
    If I manually enter the code to create a table, I AM able to
    do that, and I can edit it in design view, such as splitting a
    cell, etc.. Anyone have any ideas? Thanks.
    -Joey

    > The build is 6.0.1714.0
    ANN: 6.1 Updater on build 1714
    Macromedia has been working with our customers to track down
    the source
    of problems a minority of users have been having with the ...
    Dreamweaver MX
    6.1 updater. Several users reported that the updater
    incorrectly indicates
    that it cannot find the Dreamweaver
    application or executable file in the specified folder and
    doesn't perform
    the update. While researching this, we found that there were
    several
    different causes for similar issues. Those solutions are all
    detailed in the
    technote at:
    http://www.macromedia.com/support/dreamweaver/ts/documents/dmx_updater_issues.htm.
    However, we also noticed that many customers were trying to
    update a build
    of Dreamweaver MX, 1714, that was never legally released to
    the public or
    made available for purchase. The release version of
    Dreamweaver MX 6.0 is
    build 1722, and build 1714 was only released to a small group
    of beta
    testers under a non-disclosure agreement. Beta testers
    received the final
    build of Dreamweaver MX at the completion of the beta
    program.
    Because build 1714 is not a commercial release, it cannot be
    updated and
    should not be used for any purpose as it is not a legally
    licensed version
    of Dreamweaver MX. To purchase a copy of Macromedia
    Dreamweaver MX, visit
    our online store at:
    http://dynamic.macromedia.com/bin/MM/store/US/home.jsp
    Thanks to all customers who provided detailed information
    that enabled us to
    track down the installer issues much more quickly than we
    could without your
    help.
    Matt Brown Dreamweaver and Contribute Community Manager
    Sorry I can't help more than that.
    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
    ==================
    "Joey_330ci" <[email protected]> wrote in
    message
    news:[email protected]...
    > Version 6.0.1714.0 Thanks!

  • Help with the insert table/form tool in BIP 10.1.3.2.1

    Hi, I'm trying to use the insert table/form tool in BIP, and running into some issues that I don't understand. First off, my data coming in looks like this (left column of tool):
    Rowset
    --- Row
    ------ Customer ID
    ------ Customer Name
    ------ Customer City
    ------ Product
    ------ Amount Sold
    I would like the output to do the following:
    a) have one page per customer. Customer should be determined by customer ID, and has attributes of customer ID, customer Name, Customer City
    b) Show a table of all products and the total Amount Sold by product for that customer
    c) Give a "grand total" for the customer
    Can someone help with the steps needed to do this? I've tried several variations of the following without much luck:
    1) Added Rowset and all children to the "Template" pane
    2) Clicked on the "Row" group, and set Grouping = Customer ID, with a break of "New page per Element"
    3) Clicked on the newly created (from step 2) Cust ID group, and set it to group by Product
    4) Moved "amount sold" to be at same level as Product
    5) Moved all of the customer attributes (name, address, etc.) to be at same level as Cust ID
    6) On the Cust ID level, set the style to table
    7) on row and rowset levels, set style to free form
    This seems to be VERY close, except that it isn't creating a total amount for the sum of all products purchased by a customer. What do I need to do inside the tool to get a total per customer to show up?
    Thanks in advance!
    Scott
    p.s. the final hierarchy in the template window looks like this:
    Rowset (style = freeform, no grouping/sort by/breaks)
    --- Row (style = freeform, group by customer ID, break new page per element)
    ------ Customer ID (style = table, group by product, no breaks)
    --------- Product (nothing special)
    --------- Amount Sold (calc for grouping = SUM)
    ------ Customer Name (nothing special)
    ------ Customer City (nothing special)
    Thanks very much for the help!
    Scott

    To anyone else who sees this post, the answer is to do the following. Insert the Amount Sold field using the "Insert Field" tool, and set the function to sum, with the grouping checkbox turned on.
    Thanks,
    Scott

  • CS6 Inserting table breaks editable region

    In DW CS6 I am building out a site based on one template with three editable regions. I generally work in split view building PHP-MySQL sites such as the current one, and I have been building template-driven sites in Dreamweaver since 1998; but this problem has me stumped. Everything works fine until I insert a table into one of the editable regions. That region immediately becomes non-editable in design view (but I can edit in code view). It doesn't matter how I insert the table -- whether I paste code from another page where the table is being delivered, whether I use the DW Insert Table function, or hand-code from scratch. The result is the same -- I can no longer place a cursor in that editable region, in any design window.
    I seem to remember from CS5 a similar situation with a workaround that included triple clicking somewhere, but I have not been able to find that in this forum or in my notes. Any suggestions?

    The issue exists both at home and at the office. There may be minor differences.  I am now at the office .
    Mac OSX ver. 10.9.4
    DW v. 12.0 Build 5861
    xxxxxxxxxxxxxx
    TEMPLATE CODE
    xxxxxxxxxxxxxxx
    <!doctype html>
    <html>
    <head>
    <meta id="p7PM3" name="viewport" content="width=device-width">
    <meta charset="utf-8">
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Advanced Reporting</title>
    <!-- TemplateEndEditable -->
    <link href="../3D/p7affinity/p7affinity-5.css" rel="stylesheet" type="text/css" media="all">
    <link href="../3D/p7affinity/p7mobius-animate.css" rel="stylesheet" type="text/css" media="all">
    <script type="text/javascript" src="../3D/p7ehc/p7EHCscripts.js"></script>
    <link href='http://fonts.googleapis.com/css?family=Federo' rel='stylesheet' type='text/css'>
    <link href='http://fonts.googleapis.com/css?family=Life+Savers' rel='stylesheet' type='text/css'>
    <link href="../3D/p7dmm/p7pm3/p7PM3-01.css" rel="stylesheet" type="text/css" media="all">
    <script type="text/javascript" src="../3D/p7dmm/p7pm3/p7PM3scripts.js"></script>
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    </head>
    <body>
    <div id="layout">
      <div id="logo">
        <?php include('../3D/includes/logo_content.php'); ?>
      </div>
      <div id="top-navigation">
        <?php include('../3D/includes/primarynav.php'); ?>
      </div>
    <div id="content"><!-- TemplateBeginEditable name="Action Call" -->
      <div class="column-content border-bottom colored-black"> Lorem ipsum dolor sit amet, ne sea vocent scripta abhorreant. </div>
    <!-- TemplateEndEditable -->
      <div class="affinity-row">
        <div class="affinity-column percent70 reverse-float">
          <div class="column-content border-left p7ehc-1"><!-- TemplateBeginEditable name="Main Section" -->
          <h1>Main section heading</h1>
          <p>Lorem ipsum dolor sit amet, </p>
          <h3>Coming up soon...</h3>
          <p>Lorem ipsum dolor sit amet, ne sea vocent </p>
          <!-- TemplateEndEditable --></div>
        </div>
        <div class="affinity-column percent30 reverse-float">
          <div class="column-content p7ehc-1"><!-- TemplateBeginEditable name="Sidebar" -->
          <p><img class="p7-animate zoom-out" src="../3D/art/mobius-art-04.jpg" width="520" height="713" alt=""></p>
          <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque congue tristique eros. Nulla facilisi. Quisque sem mauris, ullamcorper ac, gravida id, mattis id, sapien. Nullam adipiscing enim dapibus felis.</p>
          <!-- TemplateEndEditable --></div>
        </div>
      </div>
    </div>
        <?php include('../3D/includes/footertext.php'); ?>
    </div>
    </body>
    </html>
    Will send child separately

  • Dreamweaver CS4 Insert Table button does not work.

    I recently upgrade from an older version of Dreamweave to Dreamweaver CS4. But now I have a problem with inserting tables.
    They have the dropdown on the top right for Classic, Coder, Coder Plus and so on. I was using classic and everything was fine, then all of a sudden if I try using the Insert Table button from the Inserts tab, it does nothing. If I right click on the button, then click on the button it works, and if i switch to any other view it works. so then I used Coder and it was fine, but then again it stopped working. So I switched to Coder Plus and it was fine for a few more days and then it stops working again. I have rebooted my machine, closed out of DW and nothing seems to fix it. I just installed all adobe software updates and there was nothing in the update that fixed the problem. Does anyone else have this issue and if so, how do I fix it?
    I have searched google and I can't find anything. I can keep switching views but one day soon if it continues, I'm going to run out of views and Its such a habit to use the button instead of the Ctrl+Alt+T shortcut.

    try the following
    Recreate Dreamweaver CS4 Configuration and registry
    - rename the configuration folder to any name. (just add any character I suggest)
    C:\Documents and Settings\[username]\Application Data\Adobe\Dreamweaver CS4\Configuration
    - recreate the registry folder
    Start > run > regedit
    HKEY_CURRENT_USER>Software>Adobe>Dreamweaver>10. Rename 10 ex: 10_old
    maybe you can post your specs here for more specific troubleshooting. Cheers!

  • Check 2 tables(Table A and Table B) and figure out new columns present in Table A and add these new columns to Table B

    How to check 2 tables(Table A and Table B) and figure out new columns present in Table A and add these new columns to Table b.
    DDL-
    Create table A
    ( A INT,
    B INT,C VARCHAR(2)
    Create table B
    A INT,
    B INT
    Any advice on the best approach or method to achieve this.
    I understand that I need to check the schema of the columns and then do a match between 2 tables and find new columns and then alter my target table
    Mudassar

    Can you try this..
    CREATE TABLE A ( A INT, B INT, C VARCHAR(2) )
    CREATE TABLE B ( A INT, B INT )
    Declare @ColumnVar nvarchar(128),@DatatypeVar nvarchar(128)
    SELECT @ColumnVar=x.COLUMN_NAME, @DatatypeVar=x.DATA_TYPE
    FROM INFORMATION_SCHEMA.COLUMNS AS x
    WHERE TABLE_NAME = 'A'
    AND NOT EXISTS ( SELECT *
    FROM INFORMATION_SCHEMA.COLUMNS
    WHERE TABLE_NAME = 'B'
    AND COLUMN_NAME = x.COLUMN_NAME )
    Declare @SQL VarChar(1000)
    SELECT @SQL = 'ALTER TABLE B ADD ' + @ColumnVar + ' '+ @DatatypeVar
    Exec (@SQL)
    select * from B
    Please Mark This As Answer if it helps to solve the issue
    http://stackoverflow.com/questions/2614101/alter-table-my-table-add-column-int

  • Add new line in table

    Hello,
    On my web dynpro screen there is one button add when i click on add button a new line inserted in table .After empty row insertion i am putting the values in the table on selecting drop down list by key .Two field coln selected correctly but when i am selecting third coln i am getting error" The Entered Value Is Not on the List of Valid Values. "
    I am not able to find where i am wrong.

    Hi Shilpi,
    Please check the domain values for the dropdown and the value that you are entering.
    Thanks,
    Anand

  • Insert Table is grayed out

    In my DW CS3 insert tables is grayed out also in the Common
    tab area it's grayed out?
    [email protected]

    Now - whatever you do, DO NOT GO BACK to layout mode. It's
    the source of a
    high percentage of all the posts here (in one way or
    another).
    In my opinion, there are three serious problems with Layout
    Mode -
    1. Perhaps most importantly, it sits between you and *real*
    HTML tables,
    and fools you into believing that concepts like "layout cell"
    and
    "autostretch" really mean something. They do not. As long as
    you use
    Layout Mode, you'll never learn one of the most important
    things for new web
    developers - how to build solid and reliable tables.
    2. Actually, #1 wouldn't be *so* bad, except that the code
    that is written
    by Layout Mode is really poor code. For example, a layout
    table contains
    MANY empty rows of cells. This can contribute to a table's
    instability.
    In addition, if your initial positioning of the table's cells
    is a bit
    complex,
    Layout Mode will throw in col- and rowspans aplenty as it
    merges and splits
    cells willy-nillly to achieve the pixel-perfect layout you
    have specified.
    Again,
    this is an extremely poor method for building stable tables,
    because it
    allows
    changes in one tiny cell's shape (i.e, dimensions) to ripple
    through the
    rest
    of the table, usually with unexpected and sometimes
    disastrous consequences.
    This is one of the primary reasons for the final result's
    fragility - read
    this -
    http://apptools.com/rants/spans.php
    3. The UI for Layout Mode is beyond confusing - many options
    that you might
    want to use are inaccessible, e.g., inserting another table,
    or layer onto
    the page.
    I can understand the new user's desire to use this tool to
    make their life
    easier,
    but the cost is just too heavy in my opinion.
    To make good tables, keep it simple. Put a table on the page,
    and begin to
    load your content. If you would want a different table
    layout, instead of
    merging or splitting cells, consider stacking tables or
    nesting simple
    tables instead, respectively.
    And above all, do not try to build the whole page with a
    single table!
    Luckily, Adobe understands the problems created for the
    unsuspecting user
    who falls into this trap, and has elected to remove this
    feature altogether
    from the next version of DW. The time is right for you to
    begin working
    with tables properly!
    To read more about this approach, visit the DW FAQ link in my
    sig, and run
    through the table tutorials.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "James Bechdel" <[email protected]> wrote in
    message
    news:[email protected]...
    > Thank you, that fixed it.

  • Insert Table Problem

    I am actually really new to Dreamweaver MX, so I am not sure
    what I am doing wrong.
    At first , I did open that " Insert Table" icon, and filled
    out following values( Rows, Columns..),then Navigated to hard drive
    folder and selected a logo picture, but when I
    clicked OK, it gave me mistake message, it said not allowing
    to share files ??? And it closed the table dialog and the programm
    itself. So since then I cant open that " Insert Table" icon. Icon
    is actually active and I am not on Layout view. Does anybody know
    about that" sharing files" problem and how can I fix my problem?
    Thank you very much!

    Dreamweaver MX? Wow - that's old.
    Can you tell us the version #?
    On a PC, go to Program Files/Macromedia/Dreamweaver MX/ and
    find the
    dreamweaver.exe file. Right click, choose Properties, and
    then click on the
    Version tab - the version number is towards the top of that
    tab, like
    On a Mac, get info on the Dreamweaver App, and I believe it's
    right on that
    panel.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "krestik_2" <[email protected]> wrote in
    message
    news:fn9ges$btg$[email protected]..
    >I am actually really new to Dreamweaver MX, so I am not
    sure what I am
    >doing
    > wrong.
    > At first , I did open that " Insert Table" icon, and
    filled out following
    > values( Rows, Columns..),then Navigated to hard drive
    folder and selected
    > a
    > logo picture, but when I
    > clicked OK, it gave me mistake message, it said not
    allowing to share
    > files
    > ??? And it closed the table dialog and the programm
    itself. So since then
    > I
    > cant open that " Insert Table" icon. Icon is actually
    active and I am not
    > on
    > Layout view. Does anybody know about that" sharing
    files" problem and how
    > can I
    > fix my problem?
    > Thank you very much!
    >

  • Insert Table - not workin

    Hi,
    I know this has been queried before - but I can't find any
    helpful answers.
    I'm running DW MX 6.1.1842.0, on Vista Business SP1, and the
    Insert Table button/menu commands do not work.
    I have uninstalled/rebooted/installed to new folder, and
    still no joy.
    I am pretty dependent on DW Templates, so don't want to
    explore alternate editors, and besides - this is NOT cheap
    software, and an 'Insert Table' command is NOT asking too much!!
    HELP!
    Thanks,
    Bass

    THIS IS THE ANSWER
    http://www.funkytower.com/2008/09/22/dreamweaver-mx-and-vista-fix-insert-tables-best-fix/
    Uninstall DW
    Re-Boot
    Install DW MX
    Apply 6.1 Update
    DO NOT START DW MX!!
    Then follow instructions at above link
    RE-BOOT
    And away you go.
    B

  • Insert table depends on another table

    Hi guys,
    i have procedure pr_temp
    desc t1;
    id   number
    per1 varchar2(5)
    per2 varchar2(5)
    per3 varchar2(5)
    per4 varchar2(5)
    desc t2
    id number
    m_per1 varchar2(5)
    m_per2 varchar2(5)
    create or replace procedure pr_temp
    a number;
    b varchar2(10);
    c varchar2(10);
    cursor c1 is select id,per1*per2,per3*per4 from t1;
    begin
    open c1;
    loop
    fetch c1 into a,b,c;
    exit when c1%notfound;
    insert into t2(id,m_per1,m_per2) values(a,b,c);
    end loop;
    close c1;
    end;table t1 contain
    1     40     10     20     20
    2     5     10     10     40
    3     10     20     30     40
    4     10     30     20     20after exec the procedure pr_temp,t2 table contain
    1     400     400
    2     50     400
    3     200     1200
    4     300     400when i execute the procedure again my table t2 contain
    1     400     400
    2     50     400
    3     200     1200
    4     300     400
    1     400     400
    2     50     400
    3     200     1200
    4     300     400but i dont want above record(repeated record). i want what i insert into table t1. i.e if i insert a new record in table t1
    5     15     20     40     50after execute the procedure, my table t2 should contain
    1     400     400
    2     50     400
    3     200     1200
    4     300     400
    5      300   200if no new record inserted in table t1, then after executing the procedure pr_temp, my table t2 shouldn't get change,remains with previous record.
    How to do this?
    Thanks in advance.

    8649882 wrote:
    Hi,
    when i execute below query im getting a error
    ORA-01790: expression must have same datatype as corresponding expression
    There is a basic flaw in your table design. You have created columns with datatype as VARCHAR2, while values inserted are Numbers.
    Oracle does its best to coverup these kind of flaws by doing implicit datatype conversion whereever possible, however it is always recomended to use proper datatype, e. Number for Number and Date for Date.
    So when we say :
    SELECT id,
           per1 * per2,
           per3 * per4
    FROM   t1 Oracle identifies that an operation (multiplication in this case) that is meant for Numbers is being performed on Strings.
    It checks whether these string could be converted into Numbers(which is true in above scenario) and returns the output. Note that this output is in Number format.
    Effectively, this query is rewritten by oracle as :
    SELECT id,
           to_number(per1) * to_number(per2),
           to_number(per3 )* to_number(per4 )
    FROM   t1 Now if we take a look at the second query :
    SELECT id,
           m_per1,
           m_per2
    FROM   t2;Since, columns m_per1 and m_per2 are defined as VARCHAR2 and no operations are being performed on them, oracle does not implicitly convert them to Number datatype.
    This leaves you with first query returing Numbers while the second one returning VARCHAR2.
    The basic rule for using any SET opearators (UNION,MINUS,INTERSEC etc) is that, format of output of both queries should always remain same. This condition fails here and thus we get ORA-01790
    Recomended solution would be to change those columns to Number datatype.
    Alternatively you could make an explicit conversion. Something like :
    SELECT id,
           to_number(per1 )* to_number(per2),
           to_number(per3) * to_number(per4 )
    FROM   t1
    MINUS
    SELECT id,
           to_number(m_per1),
           to_number(m_per2)
    FROM   t2;

  • Insert table row - moving Selection

    Have a table row selected and new data is inserted and the table rows are moving down. When first row is NOT selected and new table row has fired inserted, the selection row programatically moves down.
    However if the first row is selected, and new data is added to the first row, the first and second row are selected even tho its programatically should work, just like if the row selected was second, third etc...
    What's up with the first table row selected and new data inserted into the first table row to cause selection unions, even tho programatically it shouldn't?
    Thanks
    Abraham Khalil

    After the row being inserted, have you tried
    table.setRowSelectionInterval(row1,row2)?
    And in case it is the first row,
    table.setRowSelectionInterval(0,0);
    And you can even scroll to show the selection if you want by call
    table.scrollRectToVisible(getCellRect(selectedRow, 0, true));
    which will show the selectedRow
    HTH
    Bing
              

Maybe you are looking for

  • Help needed in GOS

    Hi, I have a URL in a avariable. I need to create theis URL as attachment to a newly created HR Position in background. is there any function module available which can insert this URL as attachment to the newly created HR Position in BACKGROUND. Tha

  • Calling EJB from an applet in 9iAS Release 2?

    Hello! In 9iAS Release 1 it is not so easy to call an EJB from an applet. First the applet needs special privileges and then the applet starts only once. The cause of problem is the implementation of ormi. Will 9iAS Rel. 2 support Applets calling EJB

  • Edge Animate 1.0 Install Error

    After removing Edge Animate Preview 7 program by dragging the application icon to a wastebasket icon on Mac OS, new version Edge Animate 1.0 does not installed. When installing it with Adobe Application Manager that shows an error message: Delete pre

  • Linux mandrake and java

    I am new to linux, I have downloaded java and tried to get it to work, i have followed the installation instructions the best i can, but i cannot get java to work, i have downloaded nestscape 7.1 and got it installed and working fine, i really need h

  • Lost Projects and Photo's

    From what I have read, I like many of you have lost all projects and images as soon as I did the upgrade. Being an old ****, I am having trouble trying to understand and retrieve all my files. Unsuccessful to-date, need help in layman's language.