No longer able to insert forms without table for layout

So I just tried for the first time since upgrading to CS6 Dreamweaver to insert a form on a page.
Previously you were able to insert in DW and it would use DIVS for items. Now however it appears the only option anywhere is to insert form as a table.
Chat support just confirmed this.
If true this is a massive step backwards. I'm hoping chat was wrong and I'm just missing something because the extra work involved in removing the tables manually and recoding forms to divs is crazy.
Please tell me I'm wrong???

Yeah but I have to manually change it now. Before I could insert in DW as divs.
We spend enough time wrestling other stuff in to submission - I could do without this now as well.

Similar Messages

  • How to create one form without table acces or view

    I am using portal 9.0.3; i want to create one form without acces to any table or view. There will be only 5 LOV ( radio group)
    and one botton . With this button i would like to read a specific file form the DB portal ( the name of the file will be the concatenation
    of the 5 answers of the radio group ).
    How can i do that with the tools of the portla.
    I am really new one in the portal development however i developped a lot of code in C

    I understand your problem. In this case, you can create a form on a procedure with 6 parameters. The first 5 parameters will the 5 LOV values selected. 6th one will be the button value clicked. Just pass them as parameters and your code for reading the file can be plugged in this procedure.

  • After I downloaded and installed the latest iTunes upgrade (to 10.5.1), I am no longer able to download free app upgrades for the apps I have on my iPad/iPhone/iMac which i had previously purchased. Itunes tells me I "don't own the major versions".

    After I downloaded and install the latest iTunes software upgrade (to 10.5.1), I am no longer able to download free upgrades to the apps on my iPhone or iPad.
    The App Store just says I "don't own the major versions", which of course is nonsense. It seems as if Apple's iTunes/App Store has deleted my download history. Any suggestions?
    Regards,
    Bruce

    Actually It doesn't. It says he's on a MacBook. I don't know all the different types of Macs. I was having a ton of problems with iChat. I opened DMZ to my computer, knocked down all firewalls etc and left everything exposed, still with bad results. A few weeks ago my power supply went out on my D-Link. I bought a linksys. Since I'd left all firewalls off I figured it couldn't be the router. I power cycled everything n the netork, still no luck. Today I bought a universal Power supply and started up my D-Link Router. Everything worked perfectly. My wifes computer - a laptop running Tiger worked fine with the Linksys and did my machine before the Leopard upgrade. Now that I've got the D-Link online everythings working.
    Message was edited by: graphico
    Message was edited by: graphico

  • No longer able to select customized color theme for a collection page?

    Previously I have been able to select a custom colour theme for my collections in Public Site Manager by clicking on Collections > Configure Selected Collection > Theme
    The ‘theme’ tab is no longer showing – see screenshot –
    Does this mean we can longer apply a custom theme (custom colours etc.) to our collection pages?
    It seems we can still create themes (see screenshot below) but we’re no longer able to apply them to collection pages. Is anyone else seeing this?

    What I don't understand is - if Apple have got rid of themes on collection pages - then I would expect a generic theme to be applied retrospectively to all existing collection pages. What I see however is my custom theme on all my existing pages i.e. no change - but when I create a new collection obviously I now don't have the option to apply the custom theme - so I get a generic white on dark grey theme on new collection pages. In summay my existing pages have my custom theme applied and a few new pages have the generic theme and there's way for me to make them all look consistent.

  • How to Improve inserts into Template table for Query Processing

    Hi guys!
    I need your advice. How can i improve inserts into template table (/BI0/0P00000010 for exemple)? In my scenario i forced to load data from cube C_X to cubes C_1, C_2 and C_3.
    To get a goal i created a transformations and a DTP process with delta upload to each of cubes (C_1, C_2, C3). And that proccess takes about 3 hours! (it doesn't matter 1.000 or 100.000 records). But when i tried to load data with full update (with a filter) a proccess get data takes about 1 minutes.
    I traced process and saw that inserting into template table (which create each time when proccess started) take the longest time. How can i improve it?

    Hi Mahendar,
    It will require some efforts to investigate it so I propose to open a support ticket with Microsoft (through portal).
    Your first question interest me and I am not sure if you are doing proactive or reactive real time reporting. You can try with
    HBase for storing and retrieving data. HBase known for providing good read and write speed. If you are not comfortable writing HBase syntax then you can add an abstraction layer i.e. HIVE. It might take little more time when you
    query HBase from Hive.
    If you are doing real time analytic, then you can choose from Strom and Microsoft Azure Stream Analytic.
    Thanks and Regards,  
    Sudhir Rawat

  • Not able to insert in custom table.

    Hi All,
    I am trying to insert a row in a custom table.
    But getting the following error when the page opens up.
    oracle.jbo.RowCreateException: JBO-25017: Error while creating a new entity row for AllAreInOneEO.
    I am giving the details, what i have tried.
    Table
    create table apps.test_table
    PERSON_ID NUMBER(10) PRIMARY KEY,
    LAST_UPDATE_DATE DATE,
    LAST_UPDATED_BY NUMBER(15),
    LAST_UPDATE_LOGIN NUMBER(15),
    CREATED_BY NUMBER(15),
    CREATION_DATE DATE)
    AM
    package telenor.oracle.apps.ak.allareinone.server;
    import oracle.apps.fnd.framework.server.OAApplicationModuleImpl;
    // --- File generated by Oracle Business Components for Java.
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.jbo.Row;
    public class AllAreInOneAMImpl extends OAApplicationModuleImpl
    * This is the default constructor (do not remove)
    public AllAreInOneAMImpl()
    * Sample main for debugging Business Components code using the tester.
    public static void main(String[] args)
    launchTester("telenor.oracle.apps.ak.allareinone.server", "AllAreInOneAMLocal");
    * Container's getter for AllAreInOneVO1
    public AllAreInOneVOImpl getAllAreInOneVO1()
    return (AllAreInOneVOImpl)findViewObject("AllAreInOneVO1");
    public void createEmployee()
    System.out.println("3");
    OAViewObject vo = (OAViewObject)getAllAreInOneVO1();
    System.out.println("4");
    System.out.println(vo);
    System.out.println("4");
    if (!vo.isPreparedForExecution())
    System.out.println("In Exe -- Begin");
    vo.executeQuery();
    System.out.println("In Exe -- Begin");
    Row row = vo.createRow();
    vo.insertRow(row);
    row.setNewRowState(Row.STATUS_INITIALIZED);
    } // end createEmployee()
    * Commits the transaction.
    public void Create()
    getTransaction().commit();
    } // end apply()
    Controller
    /*===========================================================================+
    | Copyright (c) 2001, 2005 Oracle Corporation, Redwood Shores, CA, USA |
    | All rights reserved. |
    +===========================================================================+
    | HISTORY |
    +===========================================================================*/
    package telenor.oracle.apps.ak.allareinone.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.OAApplicationModule;
    * Controller for ...
    public class AllAreInOneCO extends OAControllerImpl
    public static final String RCS_ID="$Header$";
    public static final boolean RCS_ID_RECORDED =
    VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
    * Layout and page setup logic for a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    if (!pageContext.isFormSubmission())
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    am.invokeMethod("createEmployee", null);
    } // end processRequest()
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am1 = pageContext.getApplicationModule(webBean);
    System.out.println("In Process Form Request");
    if (pageContext.getParameter("Create") != null)
    am1.invokeMethod("Create");
    Requesting everybody's help.
    Regards,
    Subhra

    Subhra,
    Your observation is correct. generally if you are working on a custom table or a table without the WHO columns, then you need to use your EO class as abstract.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                       

  • No longer able to insert filename into a document in the new pages

    Does anyone know if the ability to insert the filename into the document has been eliminated or if we just have to get to it another way? Used to be able to go to INSERT>FILENAME but that seems to have disappeared.
    Thanks
    AJ

    It does cause problems in a number of circumstances.
    In this forum alone, there are several threads with many users who used Setup Assistant or Migration Assistant to transfer their stuff, ended up with lots of duplicate apps because of it, and had great difficulty finding and deleting the duplicates.
    There have also been folks whose apps did't get updated, and Adobe apps that wouldn't run at all.
    Again, it depends on the apps and circumstances.

  • No longer able to insert ActiveX controls or use existing ActiveX controls in Word documents

    Using Word 2010 32bit on Windows 7.1 64bit OS.
    I have a document with several ActiveX controls that I use as a template to generate new documents.  This morning I installed the monthly roll-out of Windows/MS Office updates and then rebooted.  After rebooting, when I opened my Word document,
    I could not use the controls. 
    As far as I can tell, the controls are not disabled in security but are actually not recognized.  If I go into Developer Mode and open the Properties from the context menu on one of the ActiveX controls, the Properties dialog opens but shows properties
    for the main document and not for the control.  If I try to drop a new ActiveX control in a blank document, I get the following message from Microsoft Word: "The program used to create this object is Forms.  That program is either not installed
    on your computer or it is not responding.  To edit this object, install Forms or ensure that any dialog boxes in Forms are closed."  I have not been able to find any information on a program called "Forms".  Is this some component
    of Word that has been corrupted?
    I don't think there is any problem with the actual document because I can still open and use it on another machine running Word 2010 (where the latest updates have not been installed).

    Among the monthly updates for March 2015 is a series of updates that should correct the problem. Use Windows Update to get them.
    The relevant updates are:
    Word 2007: http://support.microsoft.com/KB/2956109
    Excel 2007: http://support.microsoft.com/KB/2956103
    PowerPoint 2007: http://support.microsoft.com/KB/2899580
    Word 2010: http://support.microsoft.com/KB/2956139
    Excel 2010: http://support.microsoft.com/KB/2956142
    PowerPoint 2010: http://support.microsoft.com/KB/2920812
    Office 2013: http://support.microsoft.com/kb/2920754
    Word 2013: http://support.microsoft.com/KB/2956163
    PowerPoint 2013: http://support.microsoft.com/kb/2965206
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • HT2534 Are we no longer able to create accounts without a credit card?

    I saw the instruction of how to create an account without a credit card on the support website, but I can't create my account doesn't matter whether I use my laptop or my ipad.
    Why? why??
    Everytime I choose "none" as an option for credit card, the system tells me to seek assisstance on this support website.
    I watched a video on how to make a no credit card account online, the system didn't stop him, so I wonder if we have to choose a credit card when creating an account now     I have a point card but I can't use it now because of my account.....

    Those instructions do still work, I used them yesterday in response to another thread and was able to download a free app with it. Are you currently in the country where that is account is based ? You need to be in a country to be able to use its store.
    If you are getting a message to contact iTunes Support then you can do so via this link and ask them for help (we are fellow users, we won't know why the message is appearing) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • NULL values are inserted into interface table for read only columns

    Hi, I developed a custom Integrator where some of the columns has to be displayed as read only in the layout. I am using SQL content to populate the data. When I upload the data NULL values are inserted into table interface? Is there any work around for this?
    Thanks
    Edited by: user593879 on Jan 12, 2010 7:21 PM

    Doesn't WebADI drive you insane at times?
    I must say, when it's all working it looks great and it is very user friendly (end-user that is, NOT for developers!) but before you get to that stage… please please Oracle invest some time making Web ADI a bit more logical an coherent, get the obvious bugs out, please let us not have to update BNE tables anymore to get things done.
    Anyway, I sorted this one out by setting the Width to zero (0) in the Layout. HTH.

  • C form Details table for sales order

    Hi Experts,
    What is the tsble for C form details in a sales order.
    Thanks,
    Anu

    Hi,
    The tcode for maintaing C form for sales orders is J1IUN. The table is J_1IFRDTSO.
    You can find J1IUN Under area menu J1ILN - India Localization Menu.
    Regards,
    Vinod

  • We are no longer able to use the audio portion for ELPA testing after running apple software updates on snow leopard?

    We are in the middle of OAKS TESTING.  We had to run the latest Java Updates inorder to do the ELPA portion of our State "OAKS" testing.  Since last Friday we cannot consistantly or basically cannot get the audio portion to work.  The sound and speech works fine in system preference but no longer for the testing.  It was fine last week.
    Is there other school district having this issue in the state of Oregon?

    When I try to do a "save as" in preview, pages, numbers, etc., there no longer is a save as in the pull down menu. If a go to help and type save as it will pop up under help - what a pain.
    Save as is available in Mountain Lion by hitting the Option key while you access the File menu. (It was returned after being eliminated in Lion).
    My system is running slow!
    How much RAM do you have installed? Mountain Lion is somewhat of a memory hog. And, how much free/empty hard drive space do you have?
    And what is Mavericks? Is that going to change everything?
    Apple announced a new OS a few days ago; it is supposed to be released in the fall.
    When i open softwares, like quickbooks, it tells me that my QB wants to import my contacts.
    The capability to sync is a new feature. You don't need to do it. I did not allow any app to import my contacts. You can also turn off other features if you do not like them - simply go through all the System Preference Panes and decide what you want and what you don't want.

  • Upload csv file and insert into a table for user

    Hello,
    i want to create a Page on which, the User of my Application can upload a semicolon delimited file and the data of the file should automatically be stored in a table.
    I can upload the file and the file is then stored in the htmldb_application_files table.
    But I do not no how to parse the file....
    Can anyone help me or is there anyone who have done that before?
    Thank you,
    Tim

    Tim...
    Here is what I did in a similar situation.
    Let the user download a csv file to use as an excel turnaround document.
    I check digit the primary key. They are not supposed to touch that column.
    They do their excel thing adding data in columns next to the ones they are updating. They now have the original and new data on the same row in the excel document. They save it on a share drive as a csv. A perl script wakes up and parses the csv. Verify's the check digit, checks that the old values still exist in the table... etc, and then does the update if all is well at the row level. The csv is replaced showing the success or failure of the update on each row.
    Probably lots of other ways to accomplish this but I have gotten years of use out of the script. The original csv can come out of almost any application. Mine come from apex, discoverer and some excel queries.
    Bob

  • DB Table for Layout Variant in ALV report

    Please help me by providing the table name which will get an entry when we save Layout Variant in ALV(OO ALV grid) output.

    Hi,
    I have seen the table LTDX which is giving me the Variant names for a particular program. Hope this will help you.
    Database table is LTDX
    Database view is V_LTDX.
    Regards,
    Venaktesh

  • How to populate the logical_group field in V_LTDX (table for layouts)?

    Hi,
    Scenario:
    I have implemented the ALV using CL_SALV_TABLE. In the grid we have a 'Choose Layout' button where we have the options of choose, change, manage etc. the layouts. If we create a layout, the layout is saved in the table LTDX(view: V_LTDX).
    Issue:
    How do we populate the 'Logical_group' field in the table while creating/changing the layouts?
    Please suggest..
    Regards
    s@k

    Solved..:)
    Solution:
    While creating the ALV grid, use the method 'get_layout' of the class CL_SALV_TABLE and get the reference of the layout in a reference variable.
    Data:
          gw_key       TYPE            salv_s_layout_key.
      gr_layout = gr_grid->get_layout( ).
      gw_key-report = sy-cprog.
      gw_key-logical_group = gc_log_grp." Pass the logical group here say logical group: 0001, 0002, etc. for each ALV
    So, whenever you create/ change a layout on the ALV grid, the system automatically passes this logical group and saves it in the table LTDX.
    Regards
    s@k

Maybe you are looking for