Table cells not editable in Contribute

I have a date table (inside a CSS layout) which displays incorrectly in Contribute Edit mode.This is the URL http://www.greencs.co.uk/accreditations.html
In Contribute Edit mode, the right hand column of the table (which contains the PDF certificates) is pushed far out to the right (beyond the rest of the layout) which makes it impossible for the cells in this column to be edited. This also happens in Dreamweaver; the table width is 598 pixels but the Display width (in parenthesis in Dreamweaver) is 1300 px. Does anyone know why the Display width, which I assume Contribute is using in Edit mode, is so wide..... and how I can constrain it.
I have tried adding various table cell widths but to no avail. Help.....
Many thanks

This problem has been solved by placing the logo images in their own table cell instead of floating left. The float and adjacent text caused the problem. Thanks to Neil Gibson @cvwcreative who came up with the solution on Twitter.

Similar Messages

  • Local client copy error - Table "BKPF" not edited due to excessive number

    Hi,
    I am performing a local client copy on our ECC 6.0 system. Client copy took more than 12 hours and its still in progress with 7 tables still to be copied. Logs in SCC3 -
    ===
    2 ETA163 Table "BKPF" not edited due to excessive number of errors
    2 ETA057 WARNING: Cancelled several times
    2 ETA163 Table "COEP" not edited due to excessive number of errors
    3 ETA311 Process "00002" started on server "sfrndevsap15"
    (time: "17:20:51")
    2 ETA297 Error: Table "ONROV" error in DDIC - Check table with SE14
    2 ETA057 WARNING: Cancelled several times
    2 ETA163 Table "FAGLFLEXA" not edited due to excessive number of errors
    3 ETA311 Process "00003" started on server "sfrndevsap15"
    (time: "17:20:52")
    4 ETA346 "FAGLFLEXC :"" 0 0 0 DEL.""
    0 0 17:20:52"
    2 ETA057 WARNING: Cancelled several times
    2 ETA163 Table "HRP1001" not edited due to excessive number of errors
    3 ETA311 Process "00004" started on server "sfrndevsap15"
    (time: "17:20:52")
    4 ETA346 "VSAFVU_CN :"" 0 86123 0 DEL.""
    0 29 17:21:21"
    2 ETA057 WARNING: Cancelled several times
    2 ETA163 Table "PCL4" not edited due to excessive number of errors
    ===
    Please help ASAP, as this is effecting our testing team.  I have tried to copy individual tables also using a transport request number and SCC1 to copy it to the target client.  This is also taking quite a long time.
    Thanks in advance,
    Abdul

    Hi Abdul,
    What does your system log say ?
    Check this SAP Note
    Note 579783 - CC ERROR: Loss of data - table not copied
    run the report RSCC_VERIFY to check if the table is consistent within the source client.
    SAP will only provide support for RSCC_VERIFY messages if there is a specific problem in an application in the target client that can be assigned immediately to the messages.
    RSCC_VERIFY is delivered with SAPKB46B49, SAPKB46C35 and SAPKB46D24. In older releases, you can create the report in the ABAP editor (transaction SE38) in accordance with the attached advance correction. Use the development class or the STRM package for this.
    Regards,
    Siddhesh

  • JavaFX2.2 TableView:How to make a table cell be edited without mouse click?

    Hi,
    I've encounter a problem with editable table cells. I'm using the TableView in my project just as the Tutorial on Oracle (http://docs.oracle.com/javafx/2/ui_controls/table-view.htm).
    According to it, I use the setCellFactory method to reimplement the table cell as a text field with the help of the TextFieldTableCell class. However, I found the steps is a little complex to get to the point where the cell can be edited:
    1.Let the table cell be selected by using direction key.
    2.Press “Enter” to converts the cell to a text filed so that it is ready to be edited.
    3.Clicking in the text field allows the contents to be edited
    The problem is step 3, that you must use the mouse to click before you can input data in this table cell.
    So, is there a solution to avoid step 3? That is the text field allows the data inputting when you just press “Enter”(step 2).
    By the way, English is not my native language. Hope I have made myself clear.

    Hi,
    You need to pass the focus to the text field when the startEditing event occurs. In the class that extends TableCell you use for cellFactory:
    public void startEdit() {
    super.startEdit();
    createTextField();
    setText(null);
    setGraphic(textField);
    * put focus on the textfield so user can directly typed on it
    Runnable r = new Runnable() {
    @Override
    public void run() {
    getGraphic().requestFocus();
    Platform.runLater(r);
    }

  • Straddled FM Table Cells Not Merged in WebHelp

    Using TCS2 on Win XP, generating WebHelp — my straddled table cells in FM are not merged in WebHelp.
    Is this a known problem, or is there a way to make this work?
    Thanks!

    Hi Mike,
    I'm confused to where you applied the vertical alignment. Normally, I would set this for the table cells and not the table.
    CSS has indeed an order in rendering: There is a point system for determining the CSS to apply. See http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-understanding-css-specific ity/ for a short introduction.
    And as an extra to the point system, the place where the styling is present, also determines the styling. Browsers use the following hierarchy (in descending order)
    User style sheet defined in the browser.
    Inline styling.
    Style block in page.
    External style sheet
    You can overwrite styling from a lower order using the !important declaration. You can use this to make sure that inline styling will not be able to overwrite styles from your style sheet. (Unless the inline styles use !important themselves.) Example:
    table.mytable td {
         vertical-align: middle !important;
    This will make all the content of table cells in the table with the class mytable to be vertically centered.
    Greet,
    Willam

  • Vertical alignment in table cells not working in generated output

    Using RH9 WebHelp. I have created a simple table style. Because I could not find out how to make cell vertical alignment (top, center, bottom)  part of the style definition, I have been applying it manually to individual whole tables using the cell alignment properties.
    This worked fine for a while, but at some point I noticed that even though the tables look right in Design view, with top-aligned cells contents, it gets hosed in generating output and all tables now come with vertically centred cell contents even through the in-line formatting for top alignment is still there in the code.
    Any ideas?

    Hi Mike,
    I'm confused to where you applied the vertical alignment. Normally, I would set this for the table cells and not the table.
    CSS has indeed an order in rendering: There is a point system for determining the CSS to apply. See http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-understanding-css-specific ity/ for a short introduction.
    And as an extra to the point system, the place where the styling is present, also determines the styling. Browsers use the following hierarchy (in descending order)
    User style sheet defined in the browser.
    Inline styling.
    Style block in page.
    External style sheet
    You can overwrite styling from a lower order using the !important declaration. You can use this to make sure that inline styling will not be able to overwrite styles from your style sheet. (Unless the inline styles use !important themselves.) Example:
    table.mytable td {
         vertical-align: middle !important;
    This will make all the content of table cells in the table with the class mytable to be vertically centered.
    Greet,
    Willam

  • "Referenced" Table Cells not copying formatting of the source table

    Hi-
    I have one sheet that has a rental inventory table that is quite large.  On another page, I have a "printable" version that has filtering applied to hide certain columns.
    What I did orginally was duplicate the table on the inventory page, cut it, then go to my printable sheet, and paste it.  I now have a duplicate version of the original.  Then I go and select all cells, hit delete and all the contents disappear leaving me with the correct formating.
    At this point I can type in cells and see that the formating is intact (certain cells are in Bold for example).
    I delete the test contents, then reference the first cell (a1) to the source table, then copy the references across that entire printable table.  Once I've done that, all of the contents of the source table now appear in the "printable" table. 
    The problem is, that once I reference the source table, the formatting goes away.  The data shows up correctly:  ie, =Equip List :: B2, but the specific cell formating is gone.
    What am i doing wrong here?
    Thanks
    Matt

    "I delete the test contents, then reference the first cell (a1) to the source table, then copy the references across that entire printable table."
    If you do this by selecting and Copying the first cell containing the formula, that "copy" includes the formatting of the copied cell. If you then Paste, the Paste includes that format setting. You could try Edit > Paste and Match format.
    If that doesn't work, you could try this:
    Enter, then fill the formula as you've done, then set the format of each cell or group of cells to include the attributes you want at that location.
    Regards,
    Barry

  • VALIGN in table cells not responding

    I'm trying to change the vertical alignment of content in a table within a fluid grid layout. Before putting the table into the fluid grid (I made it in a separate html5 document), the alignment was fine, but when I copied it in, VALIGN had no effect, and all content defaults to the top of the cell. Is there any way I can change this? I've tried resetting the VALIGN after copying it into the fluid grid, and the table's code reflects that it should be aligned to the bottom, but it still appears at the top, both in Dreamweaver, and every browser I've tested it in.
    Thanks in advance.

    Hi guy -
    I am afraid you are using such obsolete layout methods, you're in for a heap of problems.
    Take a look at the "errors" reported by the W3C validator
    http://validator.w3.org/check?uri=http%3A%2F%2Fwvadmin.dns-systems.net%2FtestHome.html&cha rset=%28detect+automatically%29&doctype=Inline&group=0
    I would put your logo and header text in the same container, and left float the image.

  • Set focus to a cell - not editable

    Hello, i have an item renderer that consists of a combobox in a datagrid which has roughly 10 columns.  Columns 2 (combobox), 5 (regular text fields), and 7 (regular text fields) are editable.  So when I tab - i want it to goto column 2, then 5, then 7, then 2 again.  However, when i set "editedItemPosition" to "2", the combobox renderer disappears and it becomes a textfield.  How do i make it so the combobox within the renderer is in focus?
    Thanks in advance.

    I tried that.  And it still doesn't work.
    Not sure if it matters, but the advanceddatagridcolumn editable property is set to false.

  • Table extension not editable

    Hi Experts,
    I have created a item level table extension for the SC business object through spro. The custom fields of the table extension have been added at below place.
    - Define Append for Fields of Customer Table on Item on Database
    - Define Append for Fields of Customer Table on Shopping Cart Item
    The Table extension is visible with Add, Delete button but I am unable to edit any field in the table extension.
    Am I missing any step or do I need to check any other place?
    Thanks

    Hello Srinivas,
    Add entry in configure control of fields of table extensions(In create table extensions and supply with data).
    Object set type :TICUS
    Structure field name : custom field
    Object type : BUS2121
    set level : item
    Field visible : X
    field enable : X
    Regards,
    Neelima

  • Restricting data in the table cell

    Hi,
    I want to know how to restrict the data entereed in the table cell not more than 10 characters. How can i handle this.

    You need to supply your own cell editor instead of using the default one. Create a subclass of JTextField that consumes the keyPressed event when the text length is 10 characters, and call:
    theTableColumn.setCellEditor(new DefaultCellEditor(theTextField));

  • [iPhone] Not hiding cell accessories when table is in editing mode

    I've got a UITableView, and I want the cells to show disclosure indicators when the table is in editing mode... is there a way to do this? I've implemented this line
    - (UITableViewCellAccessoryType)tableView:(UITableView *)aTableView accessoryTypeForRowWithIndexPath:(NSIndexPath *)indexPath {
    return UITableViewCellAccessoryDisclosureIndicator;
    but the accessories are still hidden. Is there a property of the table I'm missing somewhere?
    Thanks!

    You need to set
    cell.hidesAccessoryWhenEditing = NO;
    for the cell(s) you want in your
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    Andreas

  • Table cell renderer works with any L&F, but not with Windows

    Hi,
    I created a table cell renderer / editor for a combobox in a table cell. This works all as expected, but if the Look&Feel is com.sun.java.swing.plaf.windows.WindowsLookAndFeel, which is the system L&F on Vista, the selected values in the combobox are not shown in the cell after loosing focus. Metal LF and Motif LF work, and a third party one "TinyLF" works as well.
    Can anyone imagine why, and what needs to be changed to get a cross platform consistency without Metal LF?
    A compilable demo:
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.io.IOException;
    import java.security.NoSuchAlgorithmException;
    import javax.swing.DefaultCellEditor;
    import javax.swing.DefaultComboBoxModel;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JTable;
    import javax.swing.UIManager;
    import javax.swing.UnsupportedLookAndFeelException;
    import javax.swing.table.DefaultTableModel;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.table.TableColumn;
    import javax.swing.table.TableModel;
    public class Test {
        static class CellRendererWithComboBox extends JLabel implements TableCellRenderer {
            JLabel label = new JLabel();
             * Set this renderer to the given column
             * @param column
             * @param r
             * @param editable
            public void setRendererTo(JTable table, int column, boolean editable) {
                TableColumn col = table.getColumnModel().getColumn(column);
                JComboBox xc = new JComboBox(new DefaultComboBoxModel(new Object[]{1, 2, 3, 4, 5, 6, 7}));
                col.setCellEditor(new ComboBoxEditor(xc));
                col.setCellRenderer(this);
                xc.setEditable(editable);
            @Override
            public Component getTableCellRendererComponent(JTable table, Object value,
                    boolean isSelected, boolean hasFocus, int row, int column) {
                if (hasFocus && isSelected) {
                    if (isSelected) {
                        label.setForeground(table.getSelectionForeground());
                        label.setBackground(table.getSelectionBackground());
                    } else {
                        label.setForeground(table.getForeground());
                        label.setBackground(table.getBackground());
                    label.setText((value == null) ? "" : value.toString());
                    return label;
                } else {
                    label.setText((value == null) ? "" : value.toString());
                    return label;
            class ComboBoxEditor extends DefaultCellEditor {
                private final JComboBox box;
                private boolean fire = true;
                public ComboBoxEditor(JComboBox b) {
                    super(b);
                    this.box = b;
                    b.setLightWeightPopupEnabled(false);
                @Override
                public boolean stopCellEditing() {
                    if (fire) {
                        super.stopCellEditing();
                    return true;
                public void stopCellEditingSilent() {
                    fire = false;
                    stopCellEditing();
                    fire = true;
        public static void main(String... aArgs) throws NoSuchAlgorithmException, IOException {
            try {
                UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
            } catch (ClassNotFoundException classNotFoundException) {
            } catch (InstantiationException instantiationException) {
            } catch (IllegalAccessException illegalAccessException) {
            } catch (UnsupportedLookAndFeelException unsupportedLookAndFeelException) {
            JFrame p = new JFrame();
            JTable t = new JTable();
            TableModel m = new DefaultTableModel(new Object[][]{
                        new Object[]{1, 2, 3, 4, 5, 6, 7},
                        new Object[]{1, 2, 3, 4, 5, 6, 7},
                        new Object[]{1, 2, 3, 4, 5, 6, 7},
                        new Object[]{1, 2, 3, 4, 5, 6, 7},
                        new Object[]{1, 2, 3, 4, 5, 6, 7}},
                    new Object[]{1, 2, 3, 4, 5, 6, 7});
            t.setModel(m);
            Test.CellRendererWithComboBox f = new CellRendererWithComboBox();
            f.setRendererTo(t, 1, true);
            p.setLayout(new BorderLayout());
            p.add(t, BorderLayout.CENTER);
            p.pack();
            p.setVisible(true);
    }

    1) Your custom cell renderer does nothing extra, so you can depend on default renderer.
    2) Instead of extending JLabel and implementing TableCellReneder, you should extend DefaultTableCellRenderer and override its get renderer method because DefaultTableCellRenderer itself extends JLabel and aditionally it does some optimizations etc., which you can miss if you implement your own renderer.
    3) If you set foreground and background color in last else statement also, then you can see the values correctly in windows L&F as well.
    Thanks!

  • How to stop editing in a table cell

    i m using JTextArea as renderer and editor for table cell. While editing i want to stop editing in that cell at some perticular instance. i have used stopCellEditing() function on TableCellEditor but still the Caret does not goes away and when i press any key it still types that character at that place. I want to hide the Caret and do not want any character to print in the cell after calling stopCellEditing().

    What you have already done, and the resulting behavior is unclear from your post. Post more details.

  • Table cells editing

    I have a table with few rows and columns filled up with certain values. I edit a cell. Now if i get the DataVector of the table this edited value is not obtained. If I try clicking some other cell after editing then get the DataVector the edited value is obtained. Why is this??? Should I have any Listeners added?? Please reply in depth

    Hi,
    hmm ... it seems, that the editing progress was not finished in the first case. JTable updates an entry in the datamodel only if the editing process is finished. As long as you see the blinking cursor in this field, editing is in progress and you can avoid storing by pressing ESC - but when you TAB to another cell or click another cell, the editing process is finished and the data is updated in the datamodel.
    greetings Marsian

  • If the table cell can not receive a virtual key?

    Hello,
    Want to execuate a "copy/paste" function in the table control. I hope type the "Ctrl+c" to copy  text in a cell, but nothing to do with the "ctrl" key pressed.
    David

    Table can receive and trap Ctrl + someCharacter in keypress event: you can discriminate the keys pressed with this code:
    if (event == EVENT_KEYPRESS) {
    if (GetKeyPressEventModifiers (eventData2) == VAL_MENUKEY_MODIFIER) {
    sprintf (msg, "Ctrl + %c pressed.", GetKeyPressEventCharacter (eventData2));
    MessagePopup ("Notice", msg);
    else if (event == EVENT_VAL_CHANGED)
    MessagePopup ("Notice", "Cell value changed.");
    Unfortunately, if the table is in edit mode Ctrl-C and Ctrl+V appear to be trapped by the system at low level and not to be passed to the control callback. Within CVI you can trap EVENT_VAL_CHANGED event, but I see no way to discriminate between a user type-in and a paste operation except for trapping whether a previous keypress event was received, which can be a troubled way to go. I can't see a way to trap Ctrl+C.
    There may be a method to get those event using some windows API but I don't know it.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

Maybe you are looking for

  • Online Rebuild Index Vs Shrinking With Compact Segment with Release space

    Hi All, I want to know which is the better option from these as far as availabiltiy of index is concerned I have been doing online INdex rebuild and haven't faced much problems but new to Shrinking What Grid COntrol says about shrinking is "This will

  • BPM - Parallel process

    Hi All, I have multipe messages in a multiline container in a BPM. Now i want to send each message individually to a webservice and get the response.Want to acheive this requirment in parallel process so that the total time is less. Please let me kno

  • Use visual composer for maintenance transaction of R/3

    Hi: Can I use the visual composer as a tool to connect to maintenance transaction of R/3. Can I use it to build a sales order or a porches order in the R/3.

  • Automatically route determination for Normal PO - Inbound delivery

    dear MM experts, we are successful route determination for STO & SO, now we wud like to know whether normal PO, route automatically determined or not. -while creating PO, we don't find the shipping tab, unlike in sto, or -while creating inbound deliv

  • Import powerpoint with png images on slide(s)

    L.s., I imported several ppt documents with png images on the slides, I noticed that sometimes png images are damaged or not visible. My search for differences between the source files was not succesfull. Has this behaviour been noticed before? Regar