Pasting Table rows

One of my clients recently pointed out the following issue after going from FM7.2 to FM8:
In frame 7, it was possible to copy a row from the structure view (click on tablerow element and "Copy"), then insert the cursor in the structure view between to row and "Paste".
From v8 upwards (have confirmed it for Frame 9 as well), following this same procedure does not result in an actual pasting of new rows. There is a row on the clipboard (selecting another row and pasting results in the "do you want to add below/above/replace dialog"), and it looks like Frame does register some form of action. Trying an "Undo" does nothing, while a next undo reverts an action performed before trying to paste the row.
Bug? Feature? Undocumented change?
Doesn't look like it's a "known issue" at least, as there's not much to be found on the matter (I've google my little heart out).
Any info is welcome

When you select a row in the displayed table, look at the structure. You will notice that the row element is NOT selected, just the cell elements. You are correct that if you select the row element in the structure view and cut, you cannot paste the row at the appropriate place. On the other hand, you can insert a row element from the Elements catalog, which inserts the appropriate cell elements also. I think Frame is doing NOT actually copying or cutting the row element, but just the cell elements it contains. I am using Frame 9.
I think it is doing this to avoid problems in Frame 7. I used Frame 7 up until a few months ago. I had come across tables created by others that included row elements WITHOUT cell elements. I could not see them in the graphic view, only in the structure view. And in the structure view, I could NOT delete them. I do not recall trying to add cell elements to them. The only way to get rid of them was to create a new table and copy and paste the good rows from the old table to the new one, and then delete the old one. I had to be careful how I did it because sometimes the copy would bring one of those empty row elements along. I think the trick was to avoid selecting multiple rows when one of the rows was next to an empty row element. To this day, I have been unable to find a scenario that caused the creation of empty row elements in a table.
So, my GUESS is that the copy/cut mechanism in Frame 7 had some bugs that were corrected in Frame 8 and 9. The result is that one cannot actually copy or cut row elements, even though the structure view shows them as selected. The delete rows and paste rows dialog box handles all the row cutting and pasting.
Van

Similar Messages

  • Copy-and-paste table row results in hang in Contribute 6.5 Mac

    Am running Adobe Contribute 6.5 for Mac on OS X 10.8.2 Mountain Lion.
    Cannot copy-and-paste a table row from one page to another without having Contribute hang. Get spinning multi-colored beach ball and have to eventuall Force Quit Contribute.
    This worked correctly in Contribute 3 on OS X 10.7.x Lion.
    Any suggestions? Any Adobe engineers who have seen this behavior?

    Can you try restoring default preferences of Contribute. Please refer to the link below:-
    http://help.adobe.com/en_US/contribute/using/WS9bb3bf4338822288-4d5ec4dc12bd2bd955c-8000.h tml

  • Framemaker10: can't cut and paste tables, rows, or columns

    When I select a table row, copy, and then try to paste it as a new row, only text pastes in. When I Edit>Paste Special, the only options provided are Text and Unicode Text.
    I used to be able to cut and paste rows but that is no longer an option. Has anyone experienced this? Know a fix?
    Editing my maker.ini files does not fix it.

    Exactly how are you attempting to copy/paste?
    For a whole table, I select the marker, copy, paste wherever.
    For a row, I'm able to position my cursor in a row, highlight the row, then paste either at the end of that table or separately.
    Haven't tried columns, but they probably work the same way.

  • How can I export table row in internet explorer?

    I need to export a single table row on a website and I can't figure out how to do it.  The source view for the row I need is:
    tr class="alt">
    <td id="16ZwhxLjCN8fafA8wuYEnMFtGJGrFy6qcE">16ZwhxLjCN8fafA8wuYEnMFtGJGrFy6qcE</td>
    <td></td>
    <td></td>
    <td>0.00065227</td>
    <td>0.01233629</td>
    <td>0.00371003</td>
    </tr>I can get the table ID using the code below, but I don't know how to get the rest of the values. The table ID does not change but the numerical values do.$ie = New-Object -com InternetExplorer.Application
    $ie.silent = $false
    $ie.navigate2("mywebsite.com")
    $ie.Document.getElementById("16ZwhxLjCN8fafA8wuYEnMFtGJGrFy6qcE")

    Hi Tom,
    this may not be quite the perfect solution, but it works for me at least. I'm not using the IE ComObject, but rather the .NET Webclient for it ...
    # Load downloader function
    function Get-WebContent
    <#
    .SYNOPSIS
    Downloads a file
    .DESCRIPTION
    Download any file using a valid weblink and either store it locally or return its content
    .PARAMETER webLink
    The full link to the file (Example: "http://www.example.com/files/examplefile.dat"). Adds "http://" if webLink starts with "www".
    .PARAMETER destination
    The target where you want to store the file, including the filename (Example: "C:\Example\examplefile.dat"). Folder needs not exist but path must be valid. Optional.
    .PARAMETER getContent
    Switch that controls whether the function returns the file content.
    .EXAMPLE
    Get-WebContent -webLink "http://www.technet.com" -destination "C:\Example\technet.html"
    This will download the technet website and store it as a html file to the target location
    .EXAMPLE
    Get-WebContent -webLink "www.technet.com" -getContent
    This will download the technet website and return its content (as a string)
    #>
    Param(
    [Parameter(Mandatory=$true,Position="0")]
    [Alias('from')]
    [string]
    $WebLink,
    [Parameter(Position="1")]
    [Alias('to')]
    [string]
    $Destination,
    [Alias('grab')]
    [switch]
    $GetContent
    # Correct WebLink for typical errors
    if ($webLink.StartsWith("www") -or $webLink.StartsWith("WWW")){$webLink = "http://" + $webLink}
    $webclient = New-Object Net.Webclient
    $file = $webclient.DownloadString($webLink)
    if ($destination -ne "")
    try {Set-Content -Path $destination -Value $file -Force}
    catch {}
    if ($getContent){return $file}
    # Download website
    $website = Get-WebContent -WebLink "http://www.mywebsite.com" -GetContent
    # Cut away everything before the relevant part
    $string = $website.SubString($website.IndexOf('<td id="16ZwhxLjCN8fafA8wuYEnMFtGJGrFy6qcE">'))
    # Cut away everything after the row
    $string = $string.SubString(0,$string.IndexOf('</tr>'))
    # Split the string into each individual line
    $lines = $string.Split("`n")
    # Prepareing result variable
    $results = @()
    # For each line, cut away the clutter
    foreach ($line in $lines)
    $temp = $line.SubString(4,($line.length - 10))
    # for the first line, the td has an id, which this compensates for
    if ($temp -like 'id="16ZwhxLjCN8fafA8wuYEnMFtGJGrFy6qcE">*'){$temp = $temp.SubString(($temp.IndexOf(">") + 1))}
    # Add cleaned line to results
    $results += $temp
    You may need to adapt the string parsing beneath the function, if the text you posted is not literally identical to the way this function returns it. It worked for a string block acquired via copy&paste from your post anyway. :)
    I certainly would be more than happy to read a more elegant version, if someone has one to offer.
    Cheers,
    Fred
    There's no place like 127.0.0.1

  • Why can't I copy/paste tables correctly? (CS6)

    Sorry for having to ask such a basic question. I am new to ID.
    I am following this tutorial:
    http://tastytuts.com/video/managing-formatting-text-tables-in-adobe-indesign
    At 25:10, he creates a 2x16 table into which he pastes a table from iWork Pages. He does this by:
    - Selecting the entire table in Pages
    - Selecting every cell in the blank ID table
    - Copying the Pages table and hitting paste in ID
    The Pages table is mapped, cell for cell, to the ID table.
    However, when I try this method, only the lefthand side of the ID table is populated. Every Pages cell ends up in the left hand column (the number of rows increases to accommodate them) and the right hand side is left empty.
    What am I doing wrong? Is this the standard way of copying/pasting tables? Is there a better method?

    Arghh. As far as I can tell, I'm doing all that. It just won't paste properly.
    Here's what I do:
    Using type tool, I click on the destination frame.
    I insert the 2x16 table.
    I select all the cells in Pages and copy them.
    Using type tool, I select all the cells in ID.
    I hit paste.
    The only thing I can think of it that ID is expecting the table in one format, and Pages is copying the table to the clipboard in another format. 

  • Pasting tables from Word into Dreamweaver MX

    Hi everybody,
    Did a search for this but didn't find anything.
    I used to be able to paste tables (or individual rows and
    columns) from Word XP directly into a Dreamweaver MX table.
    Yesterday, I had to reinstall Dreamweaver MX due to a computer
    crash and now can no longer paste in Word tables.
    The rows or columns being copied simply delete the
    Dreamweaver table and get pasted as text only.
    Am i missing something like a patch or an update? Is there an
    option or preference that can be set?
    Any suggestions would be greatly appreciated.

    Thanks speculumcm.
    However, Dreamweaver MX does not have a Copy/Paste option
    under Preferences.
    I have noticed that after the Word table gets pasted as text
    (deleting the Dreamweaver table in the process) the Edit option to
    undo says "Undo Paste as Text" and not "Undo Paste".
    It is possible that somewhere there is a 'Paste' option set
    to 'Paste as Text' and not 'Paste the Object'?

  • Acrobat - Insert Table (Rows/Columns)

    I need to insert a table over a plan (architectural plan) so that we can indicate start and finish dates for work activities.  Is any one aware of a plug-in facility that will allow you to create a table (Rows/Columns) of varying quantity/size? Similar to draw table in MS Word.
    Thanks

    The only way I know to do this is to create the table in a word processor or such. You could do this for all of the tables you need. Create a new PDF of the tables. Then use the object touchup tool (or object select?) to copy the table from the table PDF to the drawing. You may have to look for where it is copied and move it to where needed. The paste seems to work differently in different versions of Acrobat.

  • Why is an entire page of table rows duplicating in FrameMaker 10?

    I have a long table in one of my chapters in FrameMaker 10. The table is seven pages long, but an entire page worth of table rows is duplicated, so the table really only should be six pages long. The first four pages look like this:
    Page 1: Rows 1-7
    Page 2: Rows 8-16
    Page 3: Rows 8-16
    Page 4: Rows 17-28
    The headers and footers are completely unaffected. All of the index markers in the table rows are also duplicated, so all of the index markers on Page 3 are also showing up in the IX file. I’ve combed through the file for unresolved cross-references, but I can’t find any. Also, if I insert a blank row on Page 2, the set of rows is no longer duplicated. If I highlight the entire table, Page 2 does not appear to be highlighted. I can’t select or edit anything on Page 2.
    I’m absolutely mystified about why this is happening. Any insight on what is causing this set of phantom rows to appear?

    Hi,
    I noticed this problem several times in the past years. MIF-washing always helped, but sometimes the table rows duplicated again.
    With FrameMaker 10 I did not notice this bug yet.
    Best regards
    Winfried

  • Set Table Row Background image

    Hi all,
    I'd like to set a Table row background image, but I only find a way to set a background image for each column, is there any way to set an image  as background for a whole row?

    Hi Pakojones,
    Based on my test, it is not support to make the image tile in a row. The BackgroundRepeat values of tablix is Repeat, RepeatX, RepeatY, or Clip. In SSRS, just chart BackgroundRepeat can be set to Fit.
    Reference: http://technet.microsoft.com/en-us/library/dd239334.aspx
    In SSRS, we can put tablix in a rectangle, then add background image for the rectangle. We can tile the image over the whole tablix. If we want to make the image tile in a row, we can put the single row in a rectangle to work around it. In this situation,
    we have to seamless paste the tablix in the end.
    Alternatively, since the issue is by design, I recommend you that submit this suggestion at
    https://connect.microsoft.com/SQLServer/ . If the suggestion mentioned by customers for many times, the product team may consider to add the feature in the next SQL Server version. Your feedback is valuable
    for us to improve our products and increase the level of service provided.
    Regards,
    Alisa Tang 
    Alisa Tang
    TechNet Community Support

  • Styling table rows in 8

    Is there a way to apply CSS to table rows (and/or cells) in JavaFX 8?
    I used DataFX' CSSTableRow in 2.2. but that doesn't seem to be compatible with 8.

    See related sample for JavaFX TableView row highlighting sample using table row apis and css.
    Styling tables is tricky as they have all of these complicated style rules for subtle combinations like selected and focused or selected and not focused or hovered, etc.  You can do basic styling by overriding those subtle styles, but if you want to keep those subtle styles, it becomes difficult (at least for me).
    Source code for modena.css is available and a the best styling reference for these kind of complicated things.
    You can either:
    1. copy and paste style rules from modena and change them.
    or
    2. override css paint constant values for your table:
    .table-row-cell {
       -fx-control-inner-background: mistyrose;
       -fx-text-background-color: coral;

  • View a single table-row as multiple rows in a GridControl

    Hi,
    is it possible to distribute the entries of a single row of a table/RowSetInfo over multiple lines of a GridControl?
    I've seen an example on the Internet (http://www2.gol.com/users/tame/swing/examples/JTableExamples4.html) which does this without database connection but it seems as if it's necessary to replace the default JTable, TableModel and UI by customized ones. As far as I've seen it's not possible to replace the JTable which is used by a GridControl? So is there any other way to do this? (A modification of the JTable-UI itself doesn't suffice as the JTable yields wrong row- and column-numbers on mousclick-events and therefore the components of the second row are not enabled properly).
    Thanks in advance
    null

    |I've seen an example on the Internet |(http://www2.gol.com/users/tame/swing/exampl|es/JTableExamples4.html) which does this |without database connection but it seems as |if it's necessary to replace the default |JTable, TableModel and UI by customized |ones.
    You wont be able to replace the JTable. But you can change all the attributes on the internal table which the grid uses (see getTable() method). The datamodel for the grid is impemented by oracle.dacf.control.swing.GridDataSource. You can possibly extend this class. You can also change the Table column model and the renderers used by the Table.
    |So is there any other way to do this? (A |modification of the JTable-UI itself doesn't |suffice as the JTable yields wrong row- and |column-numbers on mousclick-events and |therefore the components of the second row |are not enabled properly).
    Could you expain how the mapping between cell renderer and the table (row, col) is done in the extended JTable - which class ?.
    (http://www2.gol.com/users/tame/swing/exampl|es/JTableExamples4.html)
    null

  • Opening a new view in a new window on click of a table row entry.

    Hi Guys,
    How to open a new View of a same application in a new window (just like a pop up) on a click of a Table Row entry?
    I am using NWDS 7.0 version. So please suggest acccorrdingly.

    Hi Nikesh,
    first of all you will have to declare use of onLeadSelect event handler for your table (note that it will only be triggered when a lead selection occurs not a multiselection).
    Also, you can build at design time a View and a Window (for example, PopupWin) in your WebDynpro Component, and embed the view into the window.
    In your code for onLeadSelect function, you can use something like this to pop up the window.
    public void onActionRowSelection(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionSeleccionTabla(ServerEvent)
        IWDWindowManager windowManager = wdComponentAPI.getWindowManager();
        IWDWindowInfo windowInfo = wdComponentAPI.getComponentInfo().findInWindows("PopupWin");
        IWDWindow window = windowManager.createModalWindow(windowInfo);
        window.setWindowPosition(WDWindowPos.CENTER);
        window.setWindowSize(new WDCssSize(450, WDWindowUnitOfLength.PX) , WDCssSize.UNDEFINED);
        // Store handle ti window in context attribute to able to close it later
        wdContext.currentContextElement().setPopup(window);
        window.show();
        //@@end
    Hope it helps,
    David

  • How to pass hidden field values on a click of a table row

    hi all,
    href = "bookAndNonBook.do"
    I am very new to struts. I have created a table using displaytable tag which displays results in a tabular format. In addtion, i have a hidden field (prodType), the table rows are getting highlighted when i get my mouse on a particular row.
    Following is the code from the results.jsp file
    <body
    onload="addRowHandlers('row', 'rowMouseOver')"
    bgcolor="#FFFFFF" text="#000000" leftmargin="100" topmargin="50"
    marginwidth="" marginheight="" rightmargin="30">
    <html:form action="/bookAndNonBook" method="post">
    <display:table name="sessionScope.productSearchList" id="row"
    sort="list" export="true" defaultsort="1" defaultorder="ascending"
    pagesize="15" decorator="org.displaytag.decorator.TotalTableDecorator"
    class="dataTable">
    <display:column property="prodType" title="ProdType" class="prodType"
    headerClass="prodType" media="html" />
    <display:column title="Title" property="titleName" sortable="true"
    class="title" headerClass="title" />
    </display:table>
    </html:form>
    </BODY>
    I am calling a funtion addRowHandlers which passes the table id (which is row) and the rowMouseover for highlighting the rows on mouse over.
    the code for function addRowHandlers is
    function addRowHandlers(tableId, rowClassName) {
    var previousClass = null;
    var table = document.getElementById(tableId);
    var rows = table.getElementsByTagName("tr");
    for (i = 1; i < rows.length; i++) {
    rows.onmouseover = function () {
    previousClass = this.className;
    this.className = this.className + " " + rowClassName ;
    this.style.cursor="hand";
    rows.onmouseout = function () {
    this.className = previousClass;
    this.style.cursor='';
    rows.onclick = function (){
    var cell = this.getElementsByTagName("td")[0];
    var ProdType = cell.innerHTML;
    alert("value of prodType = " + ProdType);
    when i run the above code and click on a particular row it returns me the value in the hidden field i.e. prodType for that particular row
    Now where i am having problem is i want that on the basis of prodType my jsp file should call different actions for different prodType as returned....somwhat a function like this
    function submitProduct(prodType) {
    if(prodType == "BK")
    resultsForm.action = "/bookProduct.do";
    else if(prodType == "NB")
    resultsForm.action = "/nonbookProduct.do";
    but i am unable to figure out that how do i this..
    Any help will be really appreciated
    Thanks
    Sam

    can you please suggest some good struts forums where i can post my question
    thanks in advance
    Sam

  • Table.rows.find() returns null in a table where the row exists.

    Hi...
    I am working in a Project in Visual Studio 2013 where I have to read an Excel report related with a list of business opportunities. Some of the Fields that are involved in it are:  Opportunity ID, BU, Account, close date, Account Manager,
    Total Value and so on. As soon as I get the conection with the Excel Report, I fill a DataTable and declare the columns [Opportunity ID] and [BU] as my Primary Keys.  In that way, an Opportunity value may have one o more rows
    with different BU code each of them.  In consequence, you can define one row in the table if you specify the [Opportunity ID] and the [BU] values.
    My problem starts when I try to get information of those rows that have an specific value of [Opportunity ID]. For that situation I make a "foreach" structure where I check the BU codes that are involved with that Opportunity. So
    I use the Find() Method to get the information of the row specified by the Opportunity ID and BU.  The first time it goes to find the information it gets the results successfully but in the next cycle changing just the [BU] using the same [Opportunity
    ID] value, the find() method returns a "null" and I do not know why because I am sure that the row exists in the table.  I have verified the "Unique" property for the  [Opportunity ID] and [BU] columns (which are
    my primary keys)  and they are in false which is OK.
    I share the code that I am using...
    Hope someone can help.
    Thanks.
    Alfmar.
    void ObtenTotalesxBUs(string Opportunity, string[] BUs, Object[] TotalBUs, Object[] ExpTotalBUs)
    ArrayList TotalesBUs = new ArrayList(); //Required information from the row.
    ArrayList ExpTotalesBUs = new ArrayList(); //Required information from the row.
    foreach(string businessUnit in BUs)
    Object[] LlaveBusqueda = { Opportunity, businessUnit }; //Provide values to the Primary Keys.
    DataRow RenglonInfo = null;
    RenglonInfo = TablaFunnel.Tabla.Rows.Find(LlaveBusqueda); //Find method receives the Primary Keys values. Here is where I have a "null" in return the second time changing just the [BU] field.
    TotalesBUs.Add(RenglonInfo["Total"]); //Get the required information from the row.
    ExpTotalesBUs.Add(RenglonInfo["Expected Total Value"]); //Get the required information from the row.
    TotalBUs = TotalesBUs.ToArray();
    ExpTotalBUs = ExpTotalesBUs.ToArray();}

    Hi Viorel..
    Thanks a lot for you help.
    I am absolutely sure that the second ítem of BU is valid and exist in the table because I tried to make a "Select" statement in the table providing the values of [Opportunity ID] and [BU] and I get the expected record. So, why is not
    working using Find() with the defined Primary Keys??? 
    I tried this in order to test that the record exists...
    if(RenglonInfo == null)
    string strSelect = "[Opportunity ID] = '0000218256' AND [BU] = 'SFW'";
    RenglonInfo2 = TablaFunnel.Tabla.Select(strSelect);

  • Check for empty table row before adding date

    On the form below, when I click the green + button (far right), a new table row is created with today's date. the user can then enter more text to the right of the date. Problem is when the form is saved and reopened, the text the user enters is deleted and new today's date added because it is in the intialize event. How do I script to check and make sure each dated row is empty before adding today's date?
    https://acrobat.com/#d=qTINfyoXA-U6cDxOGgcSEw
    Thanks,
    ~Don

    Hi Don,
    One option would be to use the caption area of the textfield for the date and leave the value portion free for the user to input their data:
    if (xfa.resolveNode("this.caption.value.#text").value === "") {
              this.caption.value.text = util.printd("[mm/dd/yy] ", new Date() );
    See here: https://acrobat.com/#d=VjJ-YsXLKmV6QU84JrAAIw.
    Hope that helps,
    Niall

Maybe you are looking for

  • Profit-Center derivation in case of intra-company with external P/O

    Hello, I work within ECC 6.0 with new G/L and profit center accounting. I wonder about the system behaviour in the following case: 1. profit center (PC) #1 is doing a sales order and needs material from PC# 2. PC #2 generates a purchase order (naming

  • Trying to access e-mail from my phone

    I don't know what's been done recently with Verizon's remote websites, but it needs to be undone.  Until very recently, I was able to check my e-mail by pulling up webmail.verizon.com on my phone's browser and signing in just as I would from a comput

  • What exactly is J2EE?

    I've been learning tomcat and jsp's. I have a few small applications under my belt and I wanted to move on to J2EE. Is J2ee basically just a file structure you add to your app, a bunch of librarys or something you add to each and every app you have?

  • Trying to find out phone number in new flat

    Hi, My fiancee and I have recently moved into our new flat, sorted out the rest of utilities and now moving on to setting up the internet.  We've found a provider we like, but they need the phone number for the flat to check what kind of service they

  • Can't tab edit lyrics.

    When I'm entering lyrics for the first time I can just tab to the next note while I'm typing in the words. But when I go back to edit the lyrics the tab doesn't work!!!! What am I doing wrong. It's unbelievably frustrating.