Multiple tabs in table cell (FM 7)

Hey gang,
I've got a table that requires multiple tab stops in one table cell.  They're easy enough to place--I use the Tab Stops segment in Paragraph Designer--but I cannot move back and forth between the tabs. Each tab stop must be numbered.  For example, I inserted seven tab stops in the cell.  Is there a way to step through the tab stops without leaving the cell? 
Thanks in advance!
-terry-

I need to add that the above may not work, depending on your platform and FM release.
On FM7.1/Unix, Find randomly fails to find things in tables, and tabs are no exception. The hack above did not work.
On FM9/Win7, Find of \t did navigate between tabs in a table.
The real parent problem here may be: who gets to see the keycode from the [Tab] key? It appears that the OS GUI gets first crack at it, and what's passed to the app may not be an 09h character but some window nav event (that has to be converted back to an \x09 when the intent is to type a tab into the text, but when the focus is in an FM table, FM thinks you want nav).
An FM-specific sub-problem is that FM doesn't support tables within tables (actually, it does, but you have to create a new text frame inside an anchored frame inside the table cell). Tables within tables would eliminate the temptation to tab.
Tabs, of course, have been a CS problem forever, as there was never an agreed industry standard for what they meant (move 8 spaces, or move to next multiple of 8 space from left, or move to next tab stop, and what if none are defined, etc.). In FM, users who use tabs are generally doing so from habit from other word processors, and are grabbing the margin tab tool, rather than defining stops in Paragraph Designer. A later author updates the para format, resetting all overrides, and bye bye tabs.
I usually use borderless tables these days for body text layouts that might historically have been done as tabs.
If I need column-control inside table cells, I'll often use as many columns as needed, and straddle them in the cells that don't use the extra columns).

Similar Messages

  • Select from multiple entries in table cell.

    Hi All,
    I'm having issues when trying to do a simple select from an access database:
    <CFQUERY NAME="GetAllByMonth" DATASOURCE="dsn">
    SELECT * FROM table WHERE  strMonth = '#url.strMonth#' AND strDisplay = Yes
    order by strOrder_id
    </CFQUERY>
    Table cells in rows contain coma separated values:
    January, February, March, April, May, June, October, November, December
    Unfortunately the query returns no values. I've tried changing the "=" with "like", "contains" but with no results.
    Difficult to know what to search for so any help gratefully recieved.
    Ta
    Trevor

    Here is an absolutely crazy "hack" that I once used when dealing with a database like that.  It had hundreds of thousands of rows with comma separated values that for various legacy could not be changed.
    So one day I did this ...  SELECT DISTINCT column_from_purgatory FROM table_from_hell.
    Much to my surprise, there were less than a hundred DISTINCT values in that column.  (They were, fortunately, reasonably-sized VARCHARs.)
    So I built a table of those values, then created a separate table into which I could put each of the comma-separated parts, and then wrote a small (Perl) script to populate the two.  For example, a row containing "January, March, April" would be linked to three rows containing one month-name each.
    Now, as long as I had a way to be sure that this pair of lookup-tables was always complete (which was slightly problematic), I had something that I could actually JOIN to.  It wasn't pretty ... in fact, it was butt-ugly ... but it saved a tremendous amount of processing time for this application.

  • How do I insert the tab character in a table cell in Pages 5.2?

    I'm typing text in a table cell.  I need to insert a tab in the text.  I've tried all of the modifier keys with the tab.  I read somewhere it would be CTRL>TAB, like Word, but that navigates to the Inspector.

    You will need to add a Unicode keyboard. System Preferences > Keyboard > Input Sources. Click the + button in the lower left. Scroll all the way to the end and select Others > Unicode Hex Input. Select and Add this. Check the box that says Show input menu in menu bar. Exit System Preferences.
    From the Finder menu, select your recent Unicode Hex Input source (it is a black box with white U+ in it). Now, position your cursor in your table cell between the characters where you want to insert a tab character. Press and hold your option key, then type 0009 (zeroes). This is the Unicode sequence for the tab control character. Space will open in your text. Tabs in table cells survive PDF export. The tab mark will not appear with Show invisibles enabled.
    Switch back to your normal country input source in that Finder input source menu.

  • How to access jtable cells in multiple tabs?

    Hi,
    in my program when I push a button 3 tabs are created. And all these tabs have a table in it. What I want to do is that When I push other button I want to access all these tables and cells. and get the cell values. How can I get the value of one cell in the jtable when I have multiple tabs?
    thanks in advance.

    This is my main window
    public class AuditClient extends javax.swing.JFrame {
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {                                        
    createCheckList();
    public void createCheckList() {
    CheckList.createCheckList(CheckListChildPane);
    private javax.swing.JTabbedPane CheckListChildPane;
    private javax.swing.JPanel CheckListParentPanel;
    And This is the CheckList.java : This code create tabs and tables in it. (from xml file).
    public class CheckList extends JPanel implements ActionListener{
    JTable table;
    public CheckList(Object[][] TheData) {
    MyTableModel model = new MyTableModel();
    model.setData(TheData);
    table = new JTable(model);
    JScrollPane scrollPane = new JScrollPane(table);
    add(scrollPane);
    class MyTableModel extends AbstractTableModel {
    public String[] columnNames = null;
    public Object[][] data = null;
    public final Object[] longValues = null;
    public void setColumnNames(String[] cols) {
    this.columnNames=cols;
    public void setData(Object[][] datas) {
    this.data=datas;
    public int getColumnCount() {
    return columnNames.length;
    public int getRowCount() {
    return data.length;
    public String getColumnName(int col) {
    return columnNames[col];
    public Object getValueAt(int row, int col) {
    return data[row][col];
    public Class getColumnClass(int c) {
    return getValueAt(0, c).getClass();
    public static void createCheckList(JTabbedPane CheckListChildPane) {
    //creates tabs and tables in it
    I want to access the tables (which I created in CheckList java) from my main window. I want to get the cell values of these tables
    thanks

  • Tab stops in table cell

    ID CS3 - If I have multiple tab stops in a table cell, is there a keyboard shortcut I can use to "tab" over to these stops?

    hmmm...my test layout seems to work well, but I will add another few rows of data. I have approximately 20 to 30 fields, and one of the fields references an image. So far, the two test rows have populated the fields correctly in ID when I've created the merge document. Was there any particular issues, or could you point me to something specific so I can check it out?

  • Table Cell Editor which allows to input multiple lines of text...

    Hi there
    Does anyone know how to write a table cell editor which allows users to input multiple lines of text? please provide some sample if possible...
    Thanks
    Ken

    I'm assuming you also want the renderer to display multiple lines? if so, make a class that extends JTextArea and that implements the TableCellEditor and TableCellRenderer interfaces, then set instances of this as the editor and renderer for the TableColumn in question. The implementation of most of the methods in these interfaces is trivial, often just this.setBackground() based on the table.getSelectionBackground() or table.getBackground(), a this.setText() based on the value passed in, then just a 'return this'.
    You might want to make an abstract class which implements these interfaces for you, and which delegates to a simple abstract method that you override to return the renderer/editor component.
    Note that you must use two instances of the class you make, one for the renderer and one for the editor, since it must be able to be able to render the remainder of the table's cells without interfering with the JTextArea performing the editing. (alternatively you could make two classes that extend JTextArea, each just implementing one of the interfaces, but this is more effort I think.) Also note that you must increase the table's row height to get more than one row visible.

  • View Database Tables in Multiple Tabs

    How do you configure JDev to allow you to open and view multiple database tables in multiple tabs. Currently if I open 1 table and then open another, it loads them within the same tab.

    User,
    please always give us your jdev version, as the solution might depend on it...
    Check it you find an option to pin the tab before you double click on the next table...
    Timo

  • Why can't I tab to the next table cell? That used to work.

    Now only the arrow keys work to move from cell to cell in a Pages table. I'm using the newest Pages on a brand-new iMac with Mavericks. When I tab in a table cell, the insert line only moves a half-inch or so.

    Jan,
    Many features were left behind in the Version 5 edition of Pages. This is a minor one, in the grand scheme.
    Clicking on another cell also moves the focus, if that's any easier for you.
    Jerry

  • Scrollbars w/ one table across multiple tabs

    Please help, I'm stumped on this...
    User has requested that a single table be displayed across multiple tabbed canvases. Problem is that each tabbed canvase contains mulitple record data.
    I can define a scrollbar using the block property pallette and have the scroll bar then display on the first tab. How can I define and display a scroll bar on the second and third tabs?
    In the past, I created a stacked canvas view that replaces the 2nd/3rd tabs. In this instance, the user has requested that the data not be displayed via a stacked scrolling canvas.
    Any ideas?

    You mean the scrollbar does not scroll??
    What is the number of records displayed value of
    your block?
    Your scrollbar should be working when your number of
    records exceed the number of displayed items. Visual
    attributes is for look and feel only.
    Let's say your block number of records displayed is
    5 and you have 10 records the scrollbar is not
    scrolling??
    Regards,
    TonyCorrect. The scroll bar is not scrolling. For the base table block that is spread across three tabs, the number of records displayed is 5. When I execute the query, 6 records are returned. On the first tab, I used the block item property to set up the scroll bar x/y settings and height/width. Within the first tab, the scroll bar is working fine.
    When the second tab is activated (e.g. it is the top most tab page) (w/ the stack canvas overlay scrollbar), the bar appears in the correct position but there is no functionality attached to it. In other words it just appears as a bar like one would find on a bar graph. The bar does not resemble a scroll bar (visually) nor does it operate like one. Ditto for the 3rd tab.
    Do I need to attach a Dummy block with 5 records to each stacked canvas overlay scrollbar in order to have the look/feel and functionality of a scroll bar?
    Thanks,
    Steve

  • Access table cells using tab key with iterators

    Hi,
    I use a tableview with iterator and allow users to mouseclick certain column cells. I capture these user interactions using server event "onCellClick". But I cannot access these cells using tab key instead of mouse click. But tab key is a must for visibly challenged users.      Is there any way to access table cells using tab keys (with iterators)?
    I use icons in those cells to replace  check box and change the icons to differentiate checked/unchecked status.

    Hi Craig,
    Thanks for your effort.
    But I was able to solve my problem. I don't think I gave all the information to simulate my problem in your environment. I used images in certain table cells and was not able to access those cells using tab key or access key. Tag <b><img></b> doesn't have the attributes <b>tabindex</b> and <b>access key</b>.
    I solved the problem by surrounding the <b><img></b> by anchor tag <<b>A>,</b> which has both attributes. I did these changes within the iterator method <b>RENDER_CELL_START</b> using CL_BSP_BEE_TABLE.
    In the event handling, I had to do separate processing for  mouse click event and key press event for those cells.
    For visibly challenged users:
    They can access those cells by tab key or access key and the key press event is used to capture when they hit enter key.
    So this problem is irrelevant to service packages (SP38,..).

  • Inserting multiple checkboxes into a table cell

    Hi all, new to Livecycle so I could use a little advice.
    I'm trying to insert multiple checkboxes into a single table cell, but as far as I can tell that seems impossible as one checkbox fills the entire cell. Now how do I go about splitting the table cell into 2 rows so that I can insert both of the checkboxes?
    I've also got to add a button to create new rows for the table on click so I don't know if that will factor into the answer.
    |        Header               |           Header2             |           Header3           |
    |                                  |                                      |__________________|
    |                                  |                                      |                                    |
    I hope this crappy ascii drawing comes out right, but that's what I need to happen.
    Thanks!

    Hi Chris,
    I think this should give you what you need: Working with a Multiple Select List Item
    --Jennifer                                                                                                                                                                                                                                                                                                                                                                                                   

  • How can I have multiple lines in a table cell???

    hi
    how can I separate lines in a table cell in LV5.1.1??
    EndOfLine doesn't work, neither does CR or LF..
    has anybody an idea???
    thanks

    thanks.. but there is nothing like "multi line input" in my LV (5.1.1).. I think it might be impossible to
    do it in 5.1.1, it's really time to upgrade ;-)
    cheers

  • How to paste tabbed data directly into FM7 table cells?

    <<<<on edit.... changed FM8 to FM7... I have FM7, not FM8>>>
    Hello
    I'm working on a documentation job that requires a pasting external data into existing table cells in FM7.
    I have tried several things but I can't find a way to paste the data directly into the table cells.  The source data can be delimited text, or spreadsheet cells. Neither can be pasted into an existing table.   The only way I can make this work is to first paste it into FM as text, then convert it to another table, and then copy/paste from that table into the existing one.  This is a lot of extra work and it seems there should be a way to paste external data directly across table cells.   I also tried "paste special" but that is not an option when I have table cells selected.
    Any ideas???
    It would be much appreciated!
    Thanks
    Gary Beckwith

    Gary, just had a thought -- I've worked on several projects where I used variables in tables that might work better for you.
    Basically the idea is to pre-populate the tables in your chapter with variables in the cells, and then import a minimalist MIF file that only contains the variable definitions for the pre-existing variables.  The minimalist MIF file can be made quite easily from a database or from an Excel CSV or TSV export by using various scripting utilities to convert comma-delimited text into the MIF syntax.
    I've created chapters that had hundreds of thousands of cells with variables in them, and updating the variables is incredibly quick.
    The best way to approach the variable naming is to come up with a convention that is easy to apply, I found .r1c1 etc to be a good starting point (the period so that the variables all sort in the same place in FM, the lower-case letters to make the variable's name as horizontally short as possible.

  • How do you move multiple tabs?

    Is it possible to move multiple tabs?
    I have about half a dozen tabs in a table that all need to move right by about 15mm or so. Tried shift clicking to select multiple tabs but that doesn’t seem to work.
    Really hope I don’t have to select each individual tab to move them.
    Sorry if this has been asked before but I can’t find an answer.
    Thanks in advance.

    OK, let me try to understand.
    You have some tab-delimited information. Is the whole frame just the text like this:
    If so, just move the frame over +15mm
    Or, if it has other text before or after the tabbed-delimited text like this:
    The above text is a table. But it looks like the other text.
    You can select all the text and make it a table, then just merge the cells for the paragraphs.
    You can then delete the indents for the table as well as the borders.
    But I agree that just a half dozen tab stops are easy to move.

  • Equivalent of a frame break in table cells?

    Hi,
    I'm working in tables a lot more than I used to. I was wondering if there was an easy way to move the info from one cell to the next one since I've got a few places where I should have had multiple tabs in the original information that I converted to tables (I was stripping out millions of tab characters but apparently I needed to leave a few in since some cells should be empty in the table). I don't know if cells are still connected to each other (?). I know column break and frame break don't work so just wondering if anything would or if they're completely separate things now (where I'd need to cut and paste).
    Thanks & hope that made sense,
    Phyllis

    Beware, though, the slightly odd paste behaviour. ID refuses (silently) to paste cells if source and destination do not have the same merged/unmerged properties.
    For instance, you can't copy one single cell to another which consists of two merged ones; you have to workaround using text selections (and that doesn't span multiple cells).
    On a happy note, try this! Copy a single cell, select an entire column, paste. The cell value gets repeated! Great for placeholders, or those yearly finance reports where everything turns out as "$0.00".

Maybe you are looking for

  • TS1591 My work iMac doesn't recognize my iPhone 4s.

    My iPhone 4s works perfectly with my home iMac and but recently my iMac at work has stopped recognizing it. It doesn't show up in iPhoto, iTunes, nothing. Doesn't draw a charge when plugged in to my work computer, either. It was working fine up to th

  • Exclamation marks when i click on thumbnail in i photo

    Hi all, When I click on the thumbnails in IPhoto the picture won't come up, I just get an exclamation mark. I restored my librry from time machine, but not sure where I am going wrong. Any advice appreciated Thanks

  • WSAD TCP/IP Monitor problem.

    Hi guys, I am running into a poblem using WSAD, the request or response window in TCP/IP Monitor randomly disappeared, I had to close and reopen the WSAD to solve this problem, anyone has any idea how to fix this? Thanks a lot! Jin

  • Scanning from Photoshop CS4, using a Brother MFC-8420

    Hi all, I'm trying to scan from within Photoshop CS4 (File -> import -> Brother Twain -> etc). It worked fine with Tiger/PPC/CS2. But since I have Leopard on an Intel Mac Pro, no dice. All I can use is the 'Brother Control Center' which allows me to

  • HT5100 The Notes button in iTunes U is disabled. Why?

    The Notes button in iTunes U is disabled. Why? Any help appreciated.