Wrong Behavior in forum table resize

Look at the attached image.
When an author name is very long (circled in red), it should be the one that is split on several line and the topic (thread) should be kept on as few line as possible otherwize you end up with that ugly result as seen on the image.
PJM
As a side note, apparently this forum does not accept PNG file.....
Got EasyXML?
JKI.VIPM.EasyXML.OpenG.LAVA.Builder.blog
Attachments:
ni forum.gif ‏24 KB

PJM_LabVIEW -
I will see what they can do about the table size issue - thanks for reporting it!
I have added the PNG file format to the list of acceptable attachments, so you should be able to add those from now on.
Thanks for the feedback!
Molly K.
Web Support & Operations Manager
National Instruments

Similar Messages

  • Strange behavior in a table with dropTarget and delete action

    I am having a strange behavior in a table with drag and drop and action component to delete row.
    Steps:
    Drag the first row to the table and appears in the destination table (works well)
    Select and change the value by 156, appears an error (works fine)
    delete the row, the row disappears (works well)
    Add the first row again and the value is 156 instead of 158 (why ????)
    I guess the error is the deletion that is not correct, but do not know how?
    Can anyone help?
    I add the source code if you see where I'm wrong
    Java class:
    +public class BeanExample {+
    private ArrayList<RowExample> starttValues;
    private ArrayList<RowExample> endValues;
    +public BeanExample() {+
    super();
    +}+
    +public void setStarttValues(ArrayList<BeanExample.RowExample> starttValues) {+
    this.starttValues = starttValues;
    +}+
    +public ArrayList<BeanExample.RowExample> getStarttValues() {+
    +if (starttValues == null) {+
    starttValues = new ArrayList<BeanExample.RowExample>();
    starttValues.add(new RowExample("1", new Number(158)));
    starttValues.add(new RowExample("21", new Number(12565464)));
    +}+
    return starttValues;
    +}+
    +public void setEndValues(ArrayList<BeanExample.RowExample> endValues) {+
    this.endValues = endValues;
    +}+
    +public ArrayList<BeanExample.RowExample> getEndValues() {+
    +if (endValues == null) {+
    endValues = new ArrayList<BeanExample.RowExample>();
    +}+
    return endValues;
    +}+
    +public void validatorExample(FacesContext facesContext, UIComponent uIComponent, Object object) {+
    Number number = (Number)object;
    +if ((number.longValue() % 2) == 0) {+
    FacesMessage message = new FacesMessage(FacesMessage.SEVERITY_ERROR, "ES PAR", "ES PAR");
    throw new ValidatorException(message);
    +}+
    +}+
    +public DnDAction handleDrop(DropEvent dropEvent) {+
    Transferable transferable = dropEvent.getTransferable();
    DataFlavor<RowKeySet> rowKeySetFlavor = DataFlavor.getDataFlavor(RowKeySet.class, "loteDrag");
    RowKeySet rowKeySet = transferable.getData(rowKeySetFlavor);
    +if (rowKeySet != null) {+
    CollectionModel dragModel = transferable.getData(CollectionModel.class);
    +if (dragModel != null) {+
    Object currKey = rowKeySet.iterator().next();
    dragModel.setRowKey(currKey);
    RowExample table = (RowExample)dragModel.getRowData();
    getEndValues().add(new RowExample(table.getId(), table.getValue()));
    return dropEvent.getProposedAction();
    +}+
    +}+
    return DnDAction.NONE;
    +}+
    +public void borrarFila(ActionEvent actionEvent) {+
    endValues.remove(0);            RequestContext.getCurrentInstance().addPartialTarget(FacesContext.getCurrentInstance().getViewRoot().findComponent("pc1:t2"));
    +}+
    +public static class RowExample {+
    private String id;
    private Number value;
    +public RowExample(String id, Number value) {+
    super();
    this.id = id;
    this.value = value;
    +}+
    +public void setId(String id) {+
    this.id = id;
    +}+
    +public String getId() {+
    return id;
    +}+
    +public void setValue(Number value) {+
    this.value = value;
    +}+
    +public Number getValue() {+
    return value;
    +}+
    +}+
    +}+JSF
    +<?xml version='1.0' encoding='windows-1252'?>+
    +<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"+
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    +<jsp:directive.page contentType="text/html;charset=windows-1252"/>+
    +<f:view>+
    +<af:document id="d1">+
    +<af:form id="f1">+
    +<af:panelGroupLayout id="pgl1">+
    +<af:table value="#{beanExample.starttValues}" var="row"+
    rowBandingInterval="0" id="t1" rowSelection="single"
    displayRow="selected" contentDelivery="immediate">
    +<af:column sortable="false" headerText="Id" align="start" id="c2">+
    +<af:outputText value="#{row.id}" id="ot1"/>+
    +</af:column>+
    +<af:column sortable="false" headerText="Value" align="start" id="c1">+
    +<af:outputText value="#{row.value}" id="ot2"/>+
    +</af:column>+
    +<af:collectionDragSource actions="COPY" modelName="loteDrag"/>+
    +</af:table>+
    +<af:panelCollection id="pc1">+
    +<f:facet name="toolbar" >+
    +<af:toolbar id="dc_t2" >+
    +<af:commandToolbarButton shortDesc="Delete"+
    icon="/imagesDemo/delete_ena.png"
    id="dc_ctb3" immediate="true"
    +actionListener="#{beanExample.borrarFila}"/>+
    +</af:toolbar>+
    +</f:facet>+
    +<af:table value="#{beanExample.endValues}" var="row"+
    +rowBandingInterval="0" id="t2">+
    +<af:column sortable="false" headerText="Id" align="start" id="c3">+
    +<af:outputText value="#{row.id}" id="ot3"/>+
    +</af:column>+
    +<af:column sortable="false" headerText="Value" align="start" id="c4" >+
    +<af:inputText value="#{row.value}" autoSubmit="true" id="it1" validator="#{beanExample.validatorExample}"/>+
    +</af:column>+
    +<af:collectionDropTarget actions="COPY" modelName="loteDrag"+
    +dropListener="#{beanExample.handleDrop}"/>+
    +</af:table>+
    +</af:panelCollection>+
    +</af:panelGroupLayout>+
    +</af:form>+
    +</af:document>+
    +</f:view>+
    +</jsp:root>+

    I think the problem is the validator
    I changed the practical case, I added an InputText to enter new values in the first row.
    +<af:inputText immediate="true" label="new value" id="it2"+
    +valueChangeListener="#{beanExample.newvalue}" autoSubmit="true"/>+
    +public void newvalue (ValueChangeEvent valueChangeEvent) {+
    +String valor = (String)valueChangeEvent.getNewValue();+
    +Number valorNumber=null;+
    +try {+
    +valorNumber = new Number (valor);+
    +} catch (SQLException e) {+
    +}+
    +RowExample example = (RowExample) endValues.get(0);+
    +example.setValue(valorNumber);+
    +example.setId(valorNumber.toString());+
    +RichTable table = (RichTable)FacesContext.getCurrentInstance().getViewRoot().findComponent(id);+
    +RequestContext.getCurrentInstance().addPartialTarget(table);+
    +}+
    Case 1
    I drag the first row to the target table (ok)
    The new row appears (ok)
    Enter the value 77 in the InputText (ok)
    id content and value change (ok)
    Case2
    I drag the first row to the destination table
    The new row appears (ok)
    Change the value of the first row by 80 (ok)
    errors appears (by validator) (ok)
    Enter the value 77 in the InputText (ok)
    the id is changed but the value NO (*KO*)
    I do not understand the behavior
    Edited by: josefuente on 27-oct-2010 16:03

  • SQL job running DTEXEC.EXE via PowerShell step produces wrong characters in result tables. Running the same DTEXEC.EXE in PowerShell x86 window produces correct results.

    I've created a package in SSDT (Visual Studio 2012) to import DBF tables into MSSQL 2014 via a wizard.
    Source DBF files contain tables with Russian (Cyrillic) characters in records fields.
    Created package works fine, produces correct results (imports Cyrillic characters as needed) while:
    •debugging in VS2012
    •deploying package in SSISDB and running the package via PowerShell x86:
    &"c:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn\DTExec.exe" /Server "server\mssql2014" /ISServer "\SSISDB\import\Integration Services Project16\Package1.dtsx";
    But when I create a SQL Agent job with a single PowerShell step that contains the same command and run the job it produces wrong characters in resulting tables. So, the problem is in wrong code page (or encoding). The correct tables with records are
    produced and job runs without errors.
    I tried
    chcp 1251; # 855, 866 -- all of them
    &"c:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn\DTExec.exe" /Server "server\mssql2014" /ISServer "\SSISDB\import\Integration Services Project16\Package1.dtsx";
    in SQL Agent PowerShell step, but with no positive result.
    Anyone encountered such a behavior? How to fix it?
    v

    What if you run this package without PowerShell?
    Arthur My Blog

  • Wrong picture in AFRU table for scrap...

    Hi Experts,
    When I confirming co11 and entering scrap, it show wrong picture in AFRU table.
    e.g. : For first time i entered 2 scrap.
            Seconf time i entered  1 scrap.
    But in table it shows 5 scrap.
    Which is the right table ? How to finf scrap qty for same prod. order. ?
    Yusuf
    null

    no answer. Closed.

  • What's wrong with this Forum? Why does Adobe take so long to reply to posts?!

    What's wrong with this Forum? Why does Adobe take so long to reply to posts?!
    This is actually "specific" to this Photoshop Forum.
    I typically get responses back from other Adobe forum promptly.
    Chime in.

    The Adobe engineering folks DO duck in here from time to time - and that's a BLESSING!  Please name any other big company where you get to interact with the engineers AT ALL.  I can't.  But I suspect the engineers actually have a lot oof real work to do, and their time here is necessarily limited.
    Your comments are more along the line of "I pay a huge amount, for that I expect better support".  These are very valid comments.  But reality is different from what we may expect, and this forum is not the place to expect Adobe support participation AT ALL.  In fact, the technical support people at Adobe often direct users to come here (something I've always found amusing).
    At the higher level, Adobe may simply not be spending enough on support for literally millions of users.  Is is greed or smart business to try to minimize support cost?  That's up for individuals to decide.
    I suggest you write a snail-mail letter to the Adobe president if you're not getting the support you need.
    -Noel

  • Cell editor removed when table resized

    I'm using Java 1.5.0_06 in my application. I have a JFrame which contains a JTable. I use FormLayout (which is like GridBagLayout). When the frame resizes, the table resizes too.
    When I enter edit mode in a cell of the table and resize the frame (and the table), the cell exits edit mode. The editor of the cell is removed when the table is resized which causes the value that I had entered in the cell to be lost.
    Is there a way to stop cell editing when the frame is resized instead of the cell just exiting edit mode.
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.table.DefaultTableModel;
    import com.jgoodies.forms.factories.FormFactory;
    import com.jgoodies.forms.layout.CellConstraints;
    import com.jgoodies.forms.layout.ColumnSpec;
    import com.jgoodies.forms.layout.FormLayout;
    import com.jgoodies.forms.layout.RowSpec;
    public class ResizableTableTest extends JFrame {
         final JScrollPane _scrollPane;
         public static void main(String[] args) {
              ResizableTableTest frame = new ResizableTableTest();          
                frame.addWindowListener(new WindowAdapter() {
                     public void windowClosing(WindowEvent e) {
                          System.exit(0);
                frame.setSize(451, 340);
                frame.setVisible(true);
         public ResizableTableTest() {
              super();
              getContentPane().setLayout(new FormLayout(
                   new ColumnSpec[] {
                        new ColumnSpec("default:grow(1.0)"),
                        FormFactory.RELATED_GAP_COLSPEC,
                        FormFactory.DEFAULT_COLSPEC},
                   new RowSpec[] {
                        new RowSpec("default:grow(1.0)"),
                        FormFactory.RELATED_GAP_ROWSPEC,
                        FormFactory.DEFAULT_ROWSPEC,
                        FormFactory.RELATED_GAP_ROWSPEC,
                        FormFactory.DEFAULT_ROWSPEC,
                        FormFactory.RELATED_GAP_ROWSPEC,
                        FormFactory.DEFAULT_ROWSPEC,
                        FormFactory.RELATED_GAP_ROWSPEC,
                        FormFactory.DEFAULT_ROWSPEC}));
              _scrollPane = new JScrollPane();
              getContentPane().add(_scrollPane, new CellConstraints(1, 1, CellConstraints.FILL, CellConstraints.FILL));
              addTableToScrollPane();
         private void addTableToScrollPane() {
               JTable table = new JTable();
             DefaultTableModel model = (DefaultTableModel)table.getModel();
             table.setRowSelectionAllowed(false);
             table.setCellSelectionEnabled(true);
             //Add some columns
             model.addColumn("column A");
             model.addColumn("column B");
             model.addRow(new Object[]{"item1", "apple"});
             model.addRow(new Object[]{"item2", "banana"});
             model.addRow(new Object[]{"item3", "carrot"});
             model.addRow(new Object[]{"item1", "grape"});        
             _scrollPane.setViewportView(table);          
    }thanks,

    I would assume that on the resize of the table the
    editing cancelled event is being fired...
    You could try overriding the method in the JTable and
    when it gets fired, fire the editing stopped method
    instead... not sure whether that will work thoughI tried that, but it didn't help. On searching for this problem, I saw a bug report on this very problem.
    Here's info on a related bug in java:
    Cell editing does not complete when JTable loses focus
    Lost newly entered data in the cell when resizing column width
    And here's an interesting article:
    Why Editable Table Cells Are Evil
    Message was edited by:
    petes1234

  • There is something wrong with the forum

    There is something wrong with the forum. it is messed up.!
    I been a little bit observant this past few days, I observed alot of problems..
    here are a few, ( there are actually alot more, but I could not describe it. its just very weird.
    I thought someone hacked to my profile and used it to ask that one, but when I clicked on it, it was just one of the questions I have responded to.
    sometimes I can not post to threads, an error would come up, most especially if I reply to a reply,
    sometimes, when I Post images it would work the first time I post it, but when I search for it again, only the links are given, no images anymore.
    sometimes I get booted out randomly, in the middle of writing a reply
    sometimes the posts switches from threaded to flat , flat to threaded, and sometimes both.
    sometimes when I checked on the stuffs>discussion, the post is highlighted but there is no new response or like, and even there was, I can see which one is it, especially to the posts that had many reply already
    sometimes it still sends email to my gmail eventhough i have unsubscribe to the post already,
    sometimes get error 504, and some other numbers I forgot.
    sometimes during writing a response the blinking thing that indicates where are you writing goes missing or on the wrong place.
    OH come on..! I am trying to help, you don't want one?
    and don't blame it on ,my browser ( i checked and used IE9, FIREFOX, and even CHROME), or to my internet connection.( i got the best there is for home connections), or to my laptop ( it's a little bit old, but it still kicks butt holes) and tried it already with other pc/internet connection/and whatnot.
    I am still sometimes visiting my previous home (NOKIA FORUM) and I don't experience those, and we even have live chat over there,
    this forum needs a revamp. and how I wish this could be repaired via Sony Update Service, or PC Companion, but of course if it was possible I would have done it already.
    We try to help users, make the forum conducive for users trying to help users. \m/
    best of luck,,
    MARLON LB :smileywink:

    This is how the forum looks for me.
    But during around midnight, (gmt +8) the forum changes to this

  • Is there a way to stop table resizing? 

    Is there a way to prevent Dreamweaver from resizing tables
    automatically, even after you've told it that you want the table to
    be only, say, 800 pixels wide? Currently, if you make a mistake and
    you paste a long URL in a table, it resizes the table, rather than
    just cutting it off or otherwise prompting you about what it
    intends to do. Likewise, if you insert a graphic that's too big for
    the table, rather than just cropping the graphic and letting you
    know you need to make adjustments, it screws up the table
    permanently. Likewise, anytime you insert anything in a column, it
    resizes all the other columns, even if what you inserted fits
    perfectly and does not require resizing. Lately, the only thing I
    use Dreamweaver for is editing HTML. I find that, because of its
    automated "features" that screw everything up and make it
    impossible to fix, it's actually faster in the long run, to write
    the code by hand and avoid the Design mode like the plague. It's
    like throwing a firecracker into your HTML. Here's to hoping
    someone can tell me how to make Dreamweaver tables behave.

    Nope. The closest you can get is border-spacing, but it's
    poorly supported.
    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
    ==================
    "crash" <[email protected]> wrote in message
    news:[email protected]...
    > can't you set that with margins? I'm kinda wincing when
    I say that,
    > but.....unless you're using borders, in which padding
    would work, margins
    > *might* do the trick.
    >
    > sounds like a hack, though, even if it works. i bet it'd
    break under
    > stress...
    >
    > good call..
    >
    > "Murray *ACE*" <[email protected]>
    wrote in message
    > news:[email protected]...
    >> Cellspacing is one....
    >>
    >> --
    >> 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
    >> ==================
    >>
    >>
    >> "crash" <[email protected]> wrote in
    message
    >> news:[email protected]...
    >>> IMO, it sure is.
    >>>
    >>> I don't think there's an attribute you can set
    in a table in HTML that
    >>> you can't set via CSS, and in several cases
    there's more.
    >>>
    >>> I did a quick workup not long ago as an example
    for somebody at work. I
    >>> had no problem controlling the tables with CSS,
    and by doing that I
    >>> allowed myself to develop new looks for the site
    by just editing one
    >>> file and changing the CSS link. (or re-naming my
    other files).
    >>>
    >>>
    http://cdcdigital.com/two/index-table.php
    >>>
    >>> HTH,
    >>>
    >>> Jon
    >>>
    >>> BTW - I *did* see a wdith=100 in there when I
    was just checking, so
    >>> please forgive any other mistakes.
    >>> "Alan Smithee Jr." <[email protected]>
    wrote in message
    >>> news:[email protected]...
    >>>>> yup, CSS. ;o)
    >>>>
    >>>>
    >>>> Thanks for that informative reply. :.)
    >>>>
    >>>> But seriously...Yes, CSS is ANOTHER way but
    why is it a SUPERIOR way?
    >>>>
    >>>
    >>>
    >>
    >>
    >
    >

  • Table resize failing

    I do an insert table and a 2x2 table appears. If I attempt to
    resize it by placing the mouse over the right-most grid line,
    clicking, and dragging, it gives me an error dialog with the title
    Adobe Flash Player 9. The text inside is:
    An Actionscript Error has occurred
    Assertion failed: in is not a recognized units value
    at global/vu.core.util::Assert()
    at vu.editor.app.util::UnitsFormatter/formatForUnits()
    at vu.editor.app.util::UnitsFormatter/format()
    at vu.editor.display.drag::SizeReport/updateLabel()
    at vu.editor.display.drag::SizeReport()
    at vu.editor.display.drag::TableResizeHandler()
    at vu.editor.display::MouseHandler/onMouseDown()
    Any idea what I'm doing wrong? This occurs both on Firefox 3
    and Internet Explorer 6. Version is 9,0,115,0.
    Thanks.

    Welcome to Buzzword, we hope you enjoy using Buzzword as much
    as we do.
    I am glad to hear that the problem was resolved once you
    updated Flash.
    Yes, table columns can be easily resized, and a good
    reference for explaining this can be found in the Buzzword Help
    under
    Using
    Tables.
    Let us know how you make out with tables.

  • S10-2: Wrong Clockspeed. ACPI Table Error [solved]

    Hi everybody.
    I am proud owner of an S10-2 with an Atom N280 CPU that runs at 1.66 GHz in WinXP. However under Linux (Kubuntu 9.04 and 9.10, as well as other distributions) the maximum CPU clock is 1.33 GHz. The following is the output of cpufreq-info:
    cpufrequtils 005: cpufreq-info (C) Dominik Brodowski 2004-2006
    Report errors and bugs to [email protected], please.
    analyzing CPU 0:
    driver: acpi-cpufreq
    CPUs which need to switch frequency at the same time: 0
    hardware limits: 800 MHz - 1.33 GHz
    available frequency steps: 1.33 GHz, 1.07 GHz, 800 MHzm
    available cpufreq governors: conservative, ondemand, userspace, powersave, performance
    current policy: frequency should be within 800 MHz and 1.33 GHz.
    The governor "ondemand" may decide which speed to use
    within this range.
    current CPU frequency is 800 MHz.
    cpufreq stats: 1.33 GHz:0.00%, 1.07 GHz:0.00%, 800 MHz:0.00% (16821)
    analyzing CPU 1:
    driver: acpi-cpufreq
    CPUs which need to switch frequency at the same time: 1
    hardware limits: 800 MHz - 1.33 GHz
    available frequency steps: 1.33 GHz, 1.07 GHz, 800 MHz
    available cpufreq governors: conservative, ondemand, userspace, powersave, performance
    current policy: frequency should be within 800 MHz and 1.33 GHz.
    The governor "ondemand" may decide which speed to use
    within this range.
    current CPU frequency is 1.33 GHz.
    cpufreq stats: 1.33 GHz:0.00%, 1.07 GHz:0.00%, 800 MHz:0.00%
    When I boot the machine with the kernel parameter acpi=off the CPU runs at 1.66 GHz. But this is not a solution as a mobile computer without ACPI is completely useless.
    Obviously the problem is an error in the BIOS' ACPI table that misleads the kernel to think the maximum speed was 1.33 GHz.
    There is also an Ubuntu-bug describing the problem in more detail:
    https://bugs.launchpad.net/ubuntu/+source/cpufreqd/+bug/422858
    Has anyone else observed similar behavior?
    I would be very interested in any kind of workaround or information about how to contact Lenovo and ask for a corrected BIOS.
    Best
    Solved!
    Go to Solution.

    Same here in Fedora 11:
    # cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq
    1333000
    S10-2, model 20027, bios 1ACN21WW(V1.12).
    I'm also experiencing another problem which is probably related to errors in the BIOS
    http://forums.lenovo.com/t5/IdeaPad-S-series-Netbooks/s10-2-no-NX-bit/td-p/174434
    The posters in the Ubuntu bug you refer to seem to have it as well.
    Mind checking if you have it too?

  • Is it standard behavior for VL10A/table VEPVG to show two records when a Sales Document has been blocked?

    Hi Experts,
    Is it standard behavior for VL10A to show two records when a Sales Document has been blocked? Their only difference is the field Delivery Block. In VL10A, the first record has a delivery block of BLANK, the second has 99.
    Here's how to replicate the issue.
    Create sales order.
    When you check VL10A, the Sales document is there.
    Change sales order field (RSD) in VA02, Save.
    When you check VL10A, there are now two records, one has a blank delivery block, the other has 99.
    The expected result here is that after changing in VA02, there will be only 1 record in VL10A and it should have delivery block of 99.
    Assumptions:
    1. We know that VL10A retrieves its records from VEPVG. The problem is, in VEPVG, delivery block is a key field. So I think that during VA02, when the delivery block of 99 is assigned, this creates a record in VEPVG instead of updating the existing one. Is this standard behavior, and are my assumptions correct?
    Thanks in advanced experts. Appreciate your prompt response,
    Jack

    Hello Jack,
    This is the standard behavior. When I check in our system, I too can see two entries but with different good issue date and delivery date and the block is specific to good issue date, delivery date.
    So there is no problem in it. try to give the delivery date which includes two table entries delivery date and execute the transaction VL10A.
    Regards,
    TP

  • Probelm with InDesign CS5 table resize

    I am having problems resizing tables in InDesign CS5.
    The width can be in- and decreased, however the height just won't move up nor down when pulling in the lower right corner nor anywhere else on the columns baseline.
    Anybody else having this problem?
    Is it a bug or maybe just me not understanding things correctly in the help section...?
    Any input is appreciated so knock yourselves out. :-)

    Hey again!
    I figured it out. Just made a complete new document and tried again.
    This time everything works as it's supposed to.
    I assume the problem has something to do with the fact that I overtook the job I am currently working on from a colleague and thus there was some form for corruption or similar.
    At least when starting from a fresh it's all working fine again.
    But you just gave me the idea to check this possibility so I rated your answer as helpful.
    However I have no clue what to do with the old document in order to change that. I guess it's one of those InDesign mysteries that so often occur but I also assume that copying and pasting will be sort of a solution..., well here and now at least.
    So unless you know what could be the reason for the corruption I'll thank you very much for your time and kind help.

  • Import Schema with tables resized

    I've created a new database and would like to import a schema from another database. I want everything from the schema I'm importing however I want to resize the tables.
    I was wondering what would be the best way to handle this. I can create the tables first with the new specs and then import the schema with the "ignore=yes" option. I'm not sure however if this will cause errors. Any suggestions?
    Thanks.

    Hi,
    If you exported data with "compress=y" option (which is the default) tables would be automatically reorganized (import create one extent = total actual size).
    Anyway, if you need a different size for your tables, the procedure you posted is correct.
    Paolo

  • Wrong add_child info at table actions in Querybuilder at Apex 4.x

    I found it in Apex4.0 (but not reported) and found same behaviour in Apex4.0.1
    If you use qurybuilder for joined tables (create sql) you choose a table then click on "table actions"box and you will get add_parent, add_child.
    This works fine for DEMO_ORDER_ITEMS: you see Add_Parent and you can choose
    join ORDER_ID to DEMO_ORDERS_OrderID and
    join PRODUCT_ID to DEMO_PRODUCT_INFO.PRODUCT_ID
    But for DEMO_PRODUCT_INFO you get only an EMPTY add_child ??
    =>thats wrong
    For DEMO_ORDERS you will find
    in BOTH (?) add_parent and add_child
    join CUSTOMER_ID to DEMO_CUSTOMERS.CUSTOMER_ID and
    join USER_ID to DEMO_USERS.user_id
    => thats wrong for the child
    For DEMO_CUSTOMERS,DEMO_USERS you will get an EMPTY add_child
    => thats wrong
    The joining works fine at apex.3.x but not for apex4.x

    Thanks for letting us know. I have filed bug# 10055032 for that issue.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins

  • Migration from Designer: wrong alias for used table/view in views

    Hello,
    I am using SQL DM version 3.3.0.744.
    when importing a view from Designer, a query is build with aliases for the used tables/views which are the same as the table/view name. When using a where clause in Designer, you refer to the alias of the table/view, like t1.col1= t2.cola. Here t1 and t2 are the aliases of the underlying tables.
    In Designer the following DDL is generated:
    CREATE OR REPLACE FORCE VIEW VIEW5
    (COL2
    ,COL1)
    AS SELECT T2.COLA COL2
    ,T1.COL1 COL1
    FROM TAB2 T2
    ,TAB1 T1
    WHERE t1.col1= t2.cola
    After importing the view in Data Modeler, the following DDL is generated:
    CREATE OR REPLACE VIEW VIEW5 ( COL2,
    COL1 )
    AS SELECT
    TAB2.COLA COL2,
    TAB1.COL1 COL1
    FROM
    TAB2 TAB2,
    TAB1 TAB1
    WHERE
    t1.col1= t2.cola ;
    So by using the wrong alias, the where clause is invalid and the query builder doesn't show the joins.
    The solution for this is to use the alias of the used table/view instead of the table/view name. Can you raise a bug for this?
    Thanks in advance,
    Joop

    Thanks for your time. I did all possible way, but still the same problem. I mean
    EXP 8... IMP 8
    EXP 8... IMP 9
    EXP 9... IMP 9
    Today I found that, NLS_LANG of two databases are different. Oracle 8i is : WE8ISO8859P1
    AND Oracle9i is : WE8MSWIN1252
    So I created a new database from scratch with Oracle 8i character set :WE8ISO8859P1 and then use imp9i to import the file. Still the same problem.
    Thanks,
    Arash

Maybe you are looking for

  • How to install Adobe CC with elevated admin rights?

    I am trying to install the trail version of Illustrator CC, but the install script comes back with the message "Installation Failed" Administrator priviedges are required to install. Please Install later." I can install programs on my computer, but i

  • Delete emails from iPhone 5 but not from server?

    How do I delete emails from iPhone 5 but not from server?

  • How do I create an interactive PDF file with variable data

    We would like to basically do a 'mail merge' of our list of customers with an interactive PDF file (including videos, menus, etc - not just form fill out and web links) to create a single PDF file that contains multiple mail pieces ... one for each c

  • PDF form responses coming back uneditable

    I have created a lengthy form in InDesign (v.9.2) for a client, which I have exported to PDF then extended in Acrobat Pro (11.0.06) under File > Save as Other > Reader Extended PDF > Enable More Tools. This makes the form savable (if that's a real wo

  • IDOC TO JDBC Erroe Handling

    Hi, All we have to send ZIDOC To ORACLE system. SAP->XI->JDBC(Asy)scenario. Here how we can handle if it is 1. Network failure(System Errors) 2. Business Errors There is no BPM we decided: IDOC data will insert into ORACLE sys uing value mapping (whi