Problem selecting table rows/cells in Indesign CC

I have a problem when trying to select rows and cells within tables created in Indesign CC. I am using a Macbook Pro on OSX 10.9.4.
As you can hopefully see from the image attached, I am unable to select cells & rows cleanly. Believe it or not the image attached shows the last 2 rows of the table selected. As I drag the cursor to highlight the cells/rows I want the highlighted section jumps all over the place so it is not clear which section of the table is actually selected.
If anyone has any suggestions as to what might be causing this I would appreciate your thoughts.
Thanks
Craig

I believe you should be on 9.1, this issue existed in that version and has been fixed in 9.2.1
I would recommend that you upgrade InDesign CC to at-least 9.2.1
Thanks
Javed

Similar Messages

  • Add selected table row value to PageFlowScope so I can access in taskflow

    Hi all,
    Running into a problem getting a value from a selected ADF table row to a taskflow that is displayed as an inline popup. Here's the scenario. I have a view which displays a table. When I click on an edit btn I display my taskflow as an inline popup. What I would like to do is take the currently selected table row, pull off lets say the row name value and pass it to my taskflow for display. I've tried settting this value inside a mbean when I click the edit btn using:
            AdfFacesContext.getCurrentInstance().getPageFlowScope().put("editTargetNameSource", targetName);
            String tmpClear = (String) AdfFacesContext.getCurrentInstance().getPageFlowScope().get("editTargetNameSource");Which seems to get set but when I attempt to grab this value using EL inside my taskflow jspx page it looks to not be set.
    <af:outputLabel value="Selected Row" id="ol1"/><af:outputText value="#{pageFlowScope.editTargetNameSource}"It seems like pageFlowScope for my popup taskflow != pageFlowScope for the page my table lives in. I've tried setting this as a input page param but I have a feeling I'm missing something. I'd like to be able to set this value inside my bean when a user clicks the edit btn and then display this value in my taskflow popup.
    Any help is appreciated,
    -Wraith

    Thanks for the links Timo. I still must be missing something here. In the vids you linked it looked like he was using regions to pass params from main page to a taskflow; setting a param on child taskflow (causes param to be required when dragging into main page). So I think I understand I add an expected param to my taskflow which somehow will be set by my main page. The part I'm missing is from my main page how can I get the selected table row value and set it in the expected pageflowscope param that my taskflow is expecting?
    I've tried several things:
    1) Using managed bean associated with my main page; setting param inside the bean on main page btn click and then try accessing this mbean param (couldn't access this value as different pageflowscope I believe)
    2) Programmatically setting PageFlowScope as I linked in previous post.
    3) using setPropertyListener I can set a static value setting value in pageflowscope.start and then inside adfc.config for the task set start value to another value expected by the taskflow page. This seemed to work but I can't figure out how to do the programmatic version of this using the currently selected row and its value.
    One who seems to be missing something,
    -Wraith

  • Select Table row.

    Hi.
    I need some help!
    I'm implementing a web dynpro application with a simple table.
    That table has a row popin to show some more complete information about the table row.
    I have also a button on that popin and I want to, when that button is pressed, show that row information on a popup window.
    How can I get the information of that row?
    Regards

    Hi,
    Try this, it will give no of selected records.
    DATA lo_nd_et_postab_1 TYPE REF TO if_wd_context_node.
      DATA lo_el_et_postab_1 TYPE REF TO if_wd_context_element.
      DATA ls_et_postab_1    TYPE wd_this->Element_et_postab_1.
      DATA lt_et_postab_1    TYPE wd_this->Elements_et_postab_1.
      DATA: wa_temp TYPE REF TO if_wd_context_element,
            lt_temp TYPE wdr_context_element_set.
    * navigate from <CONTEXT> to <ET_POSTAB_1> via lead selection
      lo_nd_et_postab_1 = wd_context->path_get_node( path = `ZSHP_EXTENDED_DUE_LI.CHANGING_3.ET_POSTAB_1` ).
      CALL METHOD lo_nd_et_postab_1->get_selected_elements
        RECEIVING
          set = lt_temp.
      LOOP AT lt_temp INTO wa_temp.
        CALL METHOD wa_temp->get_static_attributes
          IMPORTING
            static_attributes = ls_et_postab_1.
        * append ls_et_postab_1 to lt_et_postab_1.  // if you watn use this statement
        CLEAR ls_et_postab_1.
      ENDLOOP.
    Cheers,
    Kris.

  • Bizarre Problem for table row deletion.please help

    Folks
    I am facing a most BIZARRE PROBLEM!!!
    I have a table with a deleteButton by the side.
    The table has 3 rows
    ABC-----DELETE
    BCD-----DELETE
    VDG-----DELETE
    I click on the delete Button of the first row,the record gets deleted from the table,
    Now there are 2 records..
    BCD-----DELETE
    VDG--- -DELETE
    I click on the delete Button of the first row,and I get the error
    java.lang.ArrayIndexOutOfBoundsException: Array index out of range: -1
    The table.getSelectedRow() becomes -1 automatically...
    Now if I comment out the Table deletion statements, and I click on any delete Button
    i get the correct messages
    You clicked row : 1
    you clicked row : 2
    After deletion of the first record,i am unable to delete the 2nd record,i get the
    error above.
    any suggestions
    ActionListener al = new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    System.out.println("Table Row clicked is : " + table.getSelectedRow());
    // Delete row from window.
    ((DefaultTableModel)table.getModel()).removeRow(table.getSelectedRow());
    table.revalidate();
    };

    after deleting the row call this method
    fireTableRowsDeleted()
    -Ashish

  • Dynamically enable a field based on a selected table row

    Hi everyone.
    I'm getting really confused right now, please show me the right way. My approach may be, and probably is, wrong since I am self learning this and all I have is an ASP.NET background.
    I have a page with a table in it. I've created a DataControl for a collection I've made and mapped it to the table. I added a column that shows an "edit" button. On it's click, I open a popup that shows the selected row's data. Naviguation controls are also present on the popup.
    This is working fine.
    My problem comes in the popup. Each row has multiples fields. These fields, shown on the popup, need to dynamically be enable/disable. To toggle those field, the only way I can see right now is to have a function that takes into parameter the rowId and the fieldName. Based on those two fields, I can get the necessary information to know if I need to enable or disable the control.
    What I was aiming for, but then again I totally failed, was to have that function called on the "enabled" EL Expression, returning a Boolean.
    Now that this has been said, can someone guide my on how to dynamically enable/disable each field based on the selected row.
    Thanks !

    Above +
    why don't you create a bean method that returns a Boolean ans through EL Expression Builder select the method to this property.
    btw .. on which components are you setting this?
    Also,
    If there is business logic that prohibits to update this object unless that is met.. you can also do it as..
    In EOImpl .. override isAttributeUpdateable(int i) method eg:
    @Override
    public boolean isAttributeUpdateable(int i) {
    if(i == this.ENAME && "KING".equalsIgnoreCase(this.getEname())){
    return true;
    }else
    return super.isAttributeUpdateable(i);
    and then in UI for the component say
    ReadOnly = #{bindings.Ename.updateable}
    Or, In UI
    disable = #{ bindings.Ename.attributeValue == 'KING' & bindings.Mrg.attributeValue == null ? true : false}
    adf does provides many ways to do it ..
    Cheers, Amit

  • Dis-Select table rows after table update.

    Hello All,
    I have given the user a functionality to update table records on the BSP page.
    I am using multiselect first and then when user clicks on a button, the selected rows becomes editable...
    The user can then edit the rows and after they click on another button, the changes gets reflected in the database table....
    Now my problem is that when the table is updated, i am changing the selectionMode to Multiselect, but the rows still remains selected and i want to clear all the selected rows...i.e <b>dis-select all the rows...</b>
    Please help.
    I am using an iterator..

    Here you go..
    cl_htmlb_manager=>check_tableview_all_rows( rowcount = n
    request = request
    id = '<tableview id>'
    keytable = keytable "Table containing the key values of your itab
    check = '' ). "If its 'X' all items will be selected and ' ' will uncheck all items.
    <i>* Reward each useful answer</i>
    Raja T

  • How to pass the selected table row data from popup to source view

    Hi ,
    I have requirement of passing the data from popup view to source. , searching some data in  popup view and displaying in table,
    Like i am passing some input and click search button will display the data in table, when select any of the row in the table and click on the another button , i should be able to pass the select row to the source view and also should close the popup.
    When i implement , In the popup windiw, when i enter the customer no, and click on search button, it is closing the popup itslef. not able to see the data in popup.
    Can u tell me what is that soultion.
    Regards
    Vijay

    Hi Harsimran
    Thanks for the reply,
    1) Source view
    In  "Source View" i have input field called Customer_no. But,  the end user will not have any idea , what customer no to enter. so i am searching the customer no in the popup view.
    1) Customer_no( This is an inputfiled , to get the customer no from the popup view)
    2) Get Customer NO( This is a button to call the popup view)
    "Get Customer NO" This button action will open the popup view.
    In this popup, i have
    1) Input field (To enter the search term)
    2) Search (To seach the customer no based on the search term)
    3) Table ( To display the search data)
    4) Button in Table tool bar called "Select" .( To close the popup view after selected the required data in the table to pass it back to the source view).
    so in the popup view what happening is, when i click on the search button itself , it is closing the popupview  by transfering the first row of the tbale ,with out select the required row in the table.
    i need to close the window after click on the "Select" button in the toolbar , after selected the required row data to trasfer in the table.
    Can u pelase tell me what are the modifcations i need to do it.
    Regards
    Vijay

  • Select Table row(eg.3rd),rows displayed from the selected row,hiding above

    If we move the horizontal scroll bar of the table and filter a column when there is a selection on the row, the rows are displayed from the selected row. The rows above the selected rows are disappearing(F5 it come back) and the rows are available when there are more rows with vertical scroll bar(above the selected row, if we scroll up).

    Frank,
    Mailed to you the sample application with the table script too. Please review the comments in the mail.
    Thanks and Regards,
    Stanley William
    Edited by: STANLEYWILLIAM on Apr 22, 2013 3:52 PM
    Edited by: STANLEYWILLIAM on Apr 22, 2013 3:52 PM

  • Problems w/Tables and Cells

    Unfortunately I am still using EW and have run into a problem I can't seem to get a grip on. Thus I have several tables w/n tables.
    Problem is that tables/cells do not seem to have their usual borders. At this place on web page,
    Ad Could Go Here - $300.00 / Month, if I change alignment from left to center and back, all the cells below this one changes accordingly. After that, no change using table/cell properties will get them to act independently of one another.
    In order to fix like it was originally, I have to use the undo button. Not sure when this started happening but it did not start out this way.
    Web page is http://www.bladencountytimes.com/agriculture.html.
    krp

    Your table cells are styles with a mix of inline HTML attributes (e.g.: valign="top"), inine styles (e.g.: style="width: 20%; text-align: center"), and references to auto styles defined elsewhere on the page (e.g.: class="auto-style7"). 
    You have a table inside a cell, and the table itself has styling.
    How each cell looks depends on the combinations of all of those.
    You didn't post a link to two pages we could compare (or even to one containing "Ad could go here"), so I have no idea what you did that caused a result you didn't expect, but I will point out that you need to know all of the styles applied,
    and how they combine (which one wins if they conflict) to know what to expect from a change you are making.
    With the individual per-cell styling you are using, the easiest way to make changes is to look in the HTML view and make them by hand.

  • Is it possible to enable/disable table row selection?

    I have a situation where a user can add rows to a "selection" table with a value that is used to perform a query to get a collection of objects associated with that value. Once those objects are available, a second "results" table will be populated with the row(s) returned. When the value is entered in the selection table, a web service call is made to perform the query and return the results. This may take a few moments and I am displaying an indeterminate progress indicator for the selection table row involved to indicate that the data is not yet available - the progress indicator is included as a column in the row; each row has its own indicator. Once the results are received the indicator is hidden to indicate the query for that row has completed. The user may enter as many rows in the selection table as they wish so there is a distinct possibility of multiple queries being executed at a given time. I have also attached a row selection listener to the selection table such that when a given row is selected, the results table will display the corresponding associated row(s).
    What I'd like to be able to do is somehow temporarily disable the selection of any row that has a query in progress, while leaving other rows whose queries have completed be selectable. Once the query completes, the row can then become selectable, thus allowing for the results to be loaded and displayed in the results table. The way it works right now, if the row is selected while the query is still in progress, nothing is displayed (obviously), but then the row has to be re-selected after the query has completed to see the results. This is a viable (though undesirable) solution/workaround if there is at least one other row in the table. However, if the row is the only row in the table and has been selected, it cannot be re-selected (there's no other row to select to allow for re-selection). To boil it down, what I'd like to do is prevent the selection of the row until the query for that row is complete.
    After perusing the JavaFX 2.2 API, I'm not seeing any obvious way to achieve this effect. If anyone has any solutions, suggestions, etc. on how this could be done I'd appreciate it greatly.

    Here's an [url https://github.com/james-d/Conditionally-selectable-table]example. As predicted, keyboard navigation fails if the keyboard presses would result in an unselectable item being selected using the default selection model. The best workaround I can see for this is to register event filters for the appropriate keyboard strokes, as in the previously referenced thread.
    Update: That code won't run in the current (ea b90) release of JavaFX 8.0, and probably a few recent releases; it will however run in the final release (and it runs in JDK 7). See [url https://javafx-jira.kenai.com/browse/RT-30593]RT-30593
    Edited by: James_D on May 22, 2013 7:51 PM

  • Single Selection tables

    Hi all!
    I created a new UIX screen (based on an existing one) with a table that has a single selection column (radio button). This table is displaying child datasource set information. My goal is to select one row and then send the key of the selected row to a new page which will display the details of it. The thing is that I cannot get the selected row from the table. When debugging the index variable is empty as if no row was selected. The funny thing is that a javascript validation passes with no problems but when I try to interact with the JHeadstart classes I get this error.
    What should I do to pass the selected table row to JHeadstart?
    Please let me know if you need more information
    Regards
    Maxi

    Maxi,
    You can generate this by creating a group with table-form layout.
    If other parts of the system cannot be generated again, you could first create a separate application structure file with this group, and generate the required pages and entries in the service xml. You can then integrate the pages ans service content with the existing app.
    This saves you time to figure it out yourself.
    Steven Davelaar,
    JHeadstart Team.

  • 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;

  • How to create editable tablecells for a single table row dynamically?

    Hi
    How to make the cell of a tablerow editable based on flag in backing list object bound to row? I can't decide the editable property while creating table columns. So i can't use setCellFactory() during creation. However setCellFactory() makes all cells in table column editable.How to make non-editable table row cell editable and vice-versa based on flag?

    hi
    good
    if you want to create two different view for a same table than you cant give the same name for the same view,otherwise it would allow you to create the view.Try out with different view name as well as the function group name,i hope this ll work.
    thanks
    mrutyun^

  • WD4A table row unselectable

    Hi ,
    I have developed a WD4A application comprising 3 views. 2 views provide overview screens to 2 different groups of users where they can select the learning forms based on various selection criteria. The third view is to actually show the details of the selected form.
    I have designed one function module to be used by both the overview screens. The function mosule takes the filters via an input structure and returns a table as output. Each view has a table control which is bound to the output table and will show different combinations of columns which are defined at design time itself. So I have 2 table controls in 2 views which are bound to the same context node. The issue is that in one of the views, I am able to select table rows via lead selection, but in the other view the lead selection is not possible. can anyone help?
    Context node details:
    Cardinality     0..n
    Selection     0..n
    Initialization Lead Selection     X
    Singleton     X
    Regds
    Thiru

    The properties for both the tables are the same
    First View:
    ID     TABLE
    accessibilityDescription     
    dataSource     LEARNERVIEW.Z_LMS_INBOX_GET_DATA.EXPORTING_1.P_EXDAT
    design     standard
    emptyTableText     
    enabled     1
    firstActualRow     0
    firstVisibleRow     0
    firstVisibleScrollableCol     
    fixedTableLayout     0
    footerVisible     1
    gridMode     both
    legendId     
    readOnly     0
    rowCount     -1
    rowSelectable     1
    scrollableColCount     -1
    selectedPopin     
    selectionChangeBehaviour     auto
    selectionMode     auto
    tooltip     
    visible     Visible
    visibleRowCount     5
    width     700px
    Events     
    onFilter     
    onLeadSelect     FORM_SELECT
    onScroll     
    onSort     
    Layout Data (FlowData)     
    cellDesign     padless
    vGutter     none
    Second View:
    ID     TABLE
    accessibilityDescription     
    dataSource     APPROVERVIEW.Z_LMS_INBOX_GET_DATA.EXPORTING_1.P_EXDAT
    design     standard
    emptyTableText     
    enabled     1
    firstActualRow     0
    firstVisibleRow     0
    firstVisibleScrollableCol     
    fixedTableLayout     0
    footerVisible     1
    gridMode     both
    legendId     
    readOnly     0
    rowCount     -1
    rowSelectable     1
    scrollableColCount     -1
    selectedPopin     
    selectionChangeBehaviour     auto
    selectionMode     auto
    tooltip     
    visible     Visible
    visibleRowCount     5
    width     700px
    Events     
    onFilter     
    onLeadSelect     FORM_SELECT
    onScroll     
    onSort     
    Layout Data (FlowData)     
    cellDesign     padless
    vGutter     none

  • CSS issue when changing the table row height to 16px

    Hello,
    After changing the table row height through css like this:
    .table-row-cell, .table-cell {
    -fx-cell-size: 16;
    the table rows are correctly displayed with a 16px height but the cell bottoms seem to be incorrectly set.
    For example the following css style (a red 3px bottom border):
    .table-cell {
    -fx-border-width: 0 0 3 0;
    -fx-border-color: red;
    doesn't work anymore with the new row height whereas it works with the 24px standard row height.
    While investigating with Scenic View, I noticed that changing the row height changes the TableRow layoutBounds height (from 24px to 16px so that's ok) but not the boundsInParent height which remains to 27px. I think it should become 19px (16 + 1.5 + 1.5). I don't know if it's a bug.
    Anyway, any help making the css red border working for a 16px row height would be greatly appreciated.
    Regards,
    Bruno.

    Q: Would this help to just use absolute div tags and give me 'ABSOLUTELY ABSOLUTE' positioning?
    No.  APDivs are not a good primary layout method.  Use default CSS positioning (which is no positioning at all).  Align page elements with margins, floats and padding.
    See example -- 2-Column CSS Layout with Grids
    (View Page Source in your browser to see the code)
    http://alt-web.com/TEMPLATES/2-col-fixed-with-grid.shtml
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

Maybe you are looking for