Column for a particular column reorganization

Is it possible to allow the reorganization of all, but the first column? My table contains the first column as checkbox to select the line. I don't want the user to rearrange this first column, but let them rearrange the rest of the columns in the table. Is this possible?

This is how I do it:

I have a table with the disableColumnReordering = "false" attribute to allow the reorganization.

And then in the first column, I the rowHeader attribute = 'true '.

It's doing the trick for me.

Tags: Java

Similar Questions

  • request (?) featured: matrices or tables for a particular column sort

    Hello all-

    This may be a stupid question, because I'm always still not quite clear on what are the differences between the matrixes and 2D arrays in LabView. So far the only distinction I seemed to find, it is that certain features of table return errors when the matrices are entered and vice versa.

    Anyway, here's my question.

    Suppose I have a matrix where the first column represents the 'values' that have been measured and the second column 'account'. I would like to take a unordered matrix (i.e., the value column is not ordered) and recover a matrix that has had its lines re-arranged according to the values in the first column.

    For example, if my matrix:

    [5-1;

    0 11;

    1-5;

    3-10]

    I would like to as labview to return:

    [0-11;

    1-5;

    3-10;

    1 of 5]

    When I was trying to find a way to do it (without writing my own sorting routine which, admittedly, wouldn't be too bad, but I'm a lazy programmer ), the only thing I found that came close was the 'matrix of D 1 sort' Subvi. However, even if I had to store the values in a table and charges in another table, I'd be able to do is sort the table values. I wouldn't be able to tell what labview reorganization, I would need in order to perform the same reorganization charges.

    I'm a little surprised that there isn't a quick and intuitive way to do this (at least that I can find). A LabView feature addition that could help with this problem would be if the "1 D Array sort" routine returned a second output - a vector with the mapping of the index used - similar to MATLAB. MATLAB help for the function 'out ':

    "[There, I] = SORT(X,DIM,MODE) also returns a matrix of index I.. «If X is a vector, then Y = x.»

    Of course, there may be a quick fix for what I'm missing...

    Take a look at this post. I don't know that you can change for your particular type of data.

    (in contrast to the first colum, create the sort key, table 2D reconstructed according to key)

  • Filters for a particular column in obiee 11g

    Hello
    I've created a report having 10 columns to measure and filter per month is less than (months in particular) that works perfectly. In fact, my requirement is in a single column to filter equal to the particular month. If it is possible please tell me how. Thanks in advance!

    Hello

    Goto Edit form for that particular column.

    and use the FILTER (measure_column for HELP (condition)).

    for example:

    FILTER ("XXXXX". "measure_column" USING ("OLIVER" ".") " D5. ""' The Times'."" Month' = particular_month))

    Try this... It works very well.

  • How to set the color for a particular column in the table in advance?

    How can we set the color for a particular column in advance table based on a few feteched of vo in process request query parameter?

    Hello

    Reference http://oraclearea51.com/blog/dynamically-color-the-rows-in-an-oa-framework-advanced-table.html

    and prev thread. Can color us the lines in the column of a table

    It will be useful.

    Kind regards
    GYAN

  • get the value of the maximum value of a column for a particular type

    Hello.
    I have a query which returns the output something like

    Type of VersionNo ID ProductID VersionID category unusual
    1130 16650 16650 1193 5 Category1
    1130 16650 16650 1205 5 Category2
    1130 16650 16650 1242 5 category3
    1130 16650 1130 1001 1 Category1
    1130 16650 1130 1081 1 category3
    1131 16656 16656 1193 4 Category1
    1131 16656 16656 1205 4 Category2
    1131 16656 16656 1240 4 category3
    1131 16656 1131 1001 1 Category1
    1131 16656 1131 1081 1 category3

    I want to see the result that all the VersionId for the same ID values should have the same value for the category and it should be the value that is there for the maximum versionNo for a particular Type of «» Something like


    Type of VersionNo ID ProductID VersionID category unusual
    1130 16650 16650 1193 5 Category1
    1130 16650 16650 1205 5 Category2
    1130 16650 16650 1242 5 category3
    1130 16650 1130 1193 1 Category1
    1130 16650 16650 1205 1 Category2
    1130 16650 1130 1242 1 category3
    1131 16656 16656 1193 4 Category1
    1131 16656 16656 1205 4 Category2
    1131 16656 16656 1240 4 category3
    1131 16656 1131 1193 1 Category1
    1131 16656 16656 1205 1 Category2
    1131 16656 1131 1240 1 category3

    Does anyone know how to do this?

    Ok
    Try:

    WITH test_data AS (
    SELECT 1130 RecID, 16650 ProductID,  16650 VersionID, 1193  Category,  5 VersionNo, 'Category1' Type FROM DUAL UNION ALL
    SELECT 1130, 16650, 16650, 1205, 5, 'Category2' FROM DUAL UNION ALL
    SELECT 1130, 16650, 16650, 1242, 5, 'Category3' FROM DUAL UNION ALL
    SELECT 1130, 16650, 1130, 1193, 1, 'Category1' FROM DUAL UNION ALL
    SELECT 1130, 16650, 1130, 1205, 1, 'Category2' FROM DUAL UNION ALL
    SELECT 1130, 16650, 1130, 1242, 1, 'Category3' FROM DUAL),
    -- end test data
    max_data AS (
    SELECT RecID, ProductID, VersionID, Category, VersionNO, Type
      FROM test_data td1
     WHERE VersionNo = (
      SELECT MAX(VersionNo)
        FROM test_data td2
      WHERE td1.RecID = td2.RecID
         AND td1.ProductId = td2.ProductID))
    SELECT RecID, ProductID, VersionID, Category, VersionNO, Type
      FROM max_data
      UNION
    SELECT md1.RecID, md1.ProductID, td1.VersionID, md1.Category, td1.VersionNO, md1.Type
      FROM max_data md1
      JOIN test_data td1
     ON (md1.RecID = td1.RecID AND md1.ProductID = td1.ProductID)
    ORDER BY 1,2,3,5, 6
    
         RECID  PRODUCTID  VERSIONID   CATEGORY  VERSIONNO TYPE
    ---------- ---------- ---------- ---------- ---------- ---------
          1130      16650       1130       1193          1 Category1
          1130      16650       1130       1205          1 Category2
          1130      16650       1130       1242          1 Category3
          1130      16650      16650       1193          5 Category1
          1130      16650      16650       1205          5 Category2
          1130      16650      16650       1242          5 Category3
    

    And you simply:

    WITH max_data AS (
    SELECT RecID, ProductID, VersionID, Category, VersionNO, Type
      FROM test_data td1
     WHERE VersionNo = (
      SELECT MAX(VersionNo)
        FROM test_data td2
      WHERE td1.RecID = td2.RecID
         AND td1.ProductId = td2.ProductID))
    SELECT RecID, ProductID, VersionID, Category, VersionNO, Type
      FROM max_data
      UNION
    SELECT md1.RecID, md1.ProductID, td1.VersionID, md1.Category, td1.VersionNO, md1.Type
      FROM max_data md1
      JOIN test_data td1
     ON (md1.RecID = td1.RecID AND md1.ProductID = td1.ProductID)
    ORDER BY 1,2,3,5, 6
    
  • A query to return all the SQL executed for a particular user instructions.

    Hello

    Is it possible to find all the instructions SQL for a particular user using the views v$? I can do it 10g but I am currently using 9i, the query below does not work.
    select a.username,a.logon_time,b.sql_fulltext 
    from v$session a,v$sqlarea b 
    where a.sql_id=b.sql_id
    and a.username='USER'
    order by a.logon_time desc
    I guess that some columns in these views do not exist in 9i. The output of 9 that I use is 9.2.0.1.0.

    Your help is very appreciated.

    Thank you
    Select this option.

    Dear mark!

    I suggest you use the audit instead of v$ sqlarea. Onlinedocumentation said the next thing Oracle v$ sqlarea:

    >
    V$ SQLAREA lists statistics on the shared SQL area and contains a line by the SQL string. It provides statistics on SQL statements that are stored, analyzed and ready for execution.
    >
    This means that you will only get the SQL statements that are currently in memory. Older statements which are already deleted from memory are not visible for your query.

    Incidentally, if you simply want to know what's wrong with your query then please post your errormessage.

    Yours sincerely

    Florian W.

    Published by: Florian W. the 29.07.2009 12:03

  • How to 'forget' a password for a particular web site?

    Accidentally, I selected the option 'Remember password' on a computer where I don't want to remember the password I entered the computer. Is it possible to erase the password for that particular web site without deleting the other passwords?

    Hi normkoon, you can do in password manager: Password Manager - don't forget, delete, modify and import passwords saved in Firefox

  • Can I enable BITLOCKER for any particular drive? for example D: drive, unit.

    I can activate BITLOCKER for any particular drive? e.g. D: drive, unit.  Without specifically put on for my system disk, IE the drive on which windows and other program files are located.
    Do I necessarily need to make the score, if I want to activate just for a specific drive for example D: drive, unit.

    Hello Rahul,

    -What version of Windows is installed on your computer?

    -

    You can enable BitLocker on one drive other than the drive that has the Windows operating system installed.

    See the following link for more help.

    For Windows Vista:

    Set up your hard disk for BitLocker Drive encryption

    http://Windows.Microsoft.com/en-us/Windows-Vista/set-up-your-hard-disk-for-BitLocker-Drive-encryption

    BitLocker Drive Encryption step-by-step guide

    http://TechNet.Microsoft.com/en-us/library/cc732725 (v = ws.10) .aspx

    For Windows 7:

    Guide step by step for Windows 7 BitLocker Drive encryption

    http://TechNet.Microsoft.com/en-us/library/dd835565 (v = ws.10) .aspx

    It will be useful.

  • How to find the real width of a field (number of characters) for a particular font

    Hello

    Is there a method to find the number of characters that can fit in a field label or a BasicEditField for a particular font.  Font.getAdvance (str) gives the width in pixels.   Based on the width of the screen, I want to calculate the length of the label field number that is, characters that it can take.

    Thank you.

    Well, I did a deeper look at your code. It is a way to walk around a division, true.

    But why not work with integer values?

    int screenWidth = Display.getWidth ();

    int largestCharacterWidth = defaultFont.getAdvance ("W");

    Now you can work with these integers.

    int fieldLength;

    {}

    fieldLength ++;

    } While (filedLength * largestCharacterWidth)<=>

    It would be a little more efficient.

  • ACS 5.4 ASA 8.2.5 disable AAA for the particular user

    Hello!

    I want to disable journaling Ganymede + for the particular user. This user is used only for automated (python script) pooling of vpn tunnel ASA (limited command set - permission on ACS) group to verify the number of users authenticated via VPN. The problem is that this user generate a bunch of logs according to authentication authorization and accounting on ACS. Is there a solution, disable Ganymede + newspapers on ACS for this particular user? Maybe it is possible to modify the AAA on ASA to not connect this particular user?

    Thanks in advance.

    Hi Pawel,

    You can create filters collection for that specific user. When you configure monitoring filters & Report Viewer does not record these events in the database.

    Navigate to: Configuration of the analysis > System Configuration > filters Collection > add a filter

    What follows is the attributes that can be used. You must use the user.

    -Access service

    -User

    -Mac-add

    -Nas - IP

    Example: We get several hits of ASA by 'user' and we want ACS to ignore it. Create a filter by using the user. ACS must now ignore any attempt from the IP Address of the NAS.

    Jatin kone
    -Does the rate of useful messages-

  • How change the font for a particular word in RichTextFiled?

    Hi all

    I use RichtextField to display information on the screen.

    The problem is that I want to put fonts for a particular word without splitting the string.

    for example: if it is the string "I'm a Blackberry developer.

    Now, I want to define "BOLD" police "Developer of Blackberry"

    How do I do that?

    If someone of you can give me the solution.

    Would be a great help.

    Thank you

    Sumit

    You can do this mark as resolved then?

    You might also be interested in this:

    http://supportforums.BlackBerry.com/T5/Java-development/simple-HTMLTextField-implementation/TD-p/454...

  • Is it possible to turn off UAC for a particular program?

    I'm tired of UAC.

    I want to disable UAC for a particular program without any application.

    Help me.

    UAC is a global setting and cannot be disabled selectively...

    How to disable the UAC...

    http://www.Petri.co.il/disable-UAC-in-Windows-7.htm

  • is it possible to restrict access to a particular application for the particular user?

    is it possible to restrict access to a particular application for the particular user

    for example, if an application will not be editable for user mode

    or it will be only editable for a user

    We gave access as a developer of a workspace to a single user

    but we don't want him to change a single application.

    Oracle Application Express 5.0

    Your terminology is mixed - looks like you're talking about limiting applications, a developer can edit in the application builder in a workspace.

    No, you can't.

  • Make a non-overridable property for a particular hierarchy

    Hi all

    Is it possible to make a custom property derived, as unmodifiable, not overridable e for a particular hierarchy.

    Thank you

    Madhu

    Hi Madhu,

    Not the same derivative Overridable property cannot be specifically made for a specific hierarchy overridable but you can write validation that would stop all edits on this property.

    Example of Validation-

    If)

    Equals (String, PropValue (Core.HierName),the HierarchyName),

    Not (IsDefinedPropVal (Custom.PropertyName, Abbrev())),

    True

    )

    Before you enable this validation make sure you make a right-click on the property on the root and 'Clear all below', which will put all the values in this derivative of the hierarchy and then enable this validation that will prevent other substitutions.

    Try this and see if it works.

    Thank you

    Denzz

  • How can I get for a particular Cloud Service resale rights?

    How can I get for a particular Cloud Service resale rights?

    Each Cloud Computing Service has the criteria to resell and required training listed on their respective areas of knowledge. In the KZ, click on the tab "Apply to resell" and you will find steps 1. The first step lists all the items that are included in this family of products. Step 2 lists the criteria. When you have completed all the elements of second stage, and then you select step 3 which will guide you through the actual enforcement process. As mentioned in one of the other questions here, you must also be a Gold member or superior, have an active FUDA (Distribution of full employment agreement) and a CSDA (Cloud Services Distribution Addendum). All products that appear to sell, with links to their respective KZ are at oracle.com/partners/goto/cloud.

  • Enable tracing for a particular session when it hits a certain module

    Database: 11.2.0.3.6 / operating system: Solaris 10

    Customer asked me to turn on tracing on a task that runs every night.  In particular, they only followed the session when the work reaches a certain module.  Is it possible to do?

    I initially though that to create a logon trigger to activate tracing when this (job) user connects, but which would encompass everything that makes the user, including 5 hours of stuff done before the work of sound of the module of interest.

    I also watched dbms_monitor.serv_mod_act_trace_enable to trace a specific module, but that looks like it does the trace in the world on the basis of data, not for a particular user session.

    How can I track a session for that user and capture a part of it?

    Mimi

    > How to accomplish followed a session for that user and capture a part of it?

    Change the code to start the trace at the top of the procedure & stop the trace before you exit the procedure.

Maybe you are looking for

  • iTune

    I use the two mini ipad and iphone, this has happened two times now, support team of itune says it's just for security reasons, I can't complete my purchase, contact iTunes support, it's really what happens for those who want to buy often like me?

  • lots of ads

    My Macbook Air is slow. Sometimes my chrome open boring site full of ads. How can I get rid of him! I ran EtreCheck as suggested in other discussions, but don't know how to do. Library/LaunchAgents/Search.pagerpost.com.ltvbit.plist, this is the bad g

  • request for hp games

    Hello Pllease could someone kindly help me with the following queries. I can not open HP games via the desktop icon, I have to go to start menu and click on games and access to games, there are some that I can't open. I searched the help section, and

  • HP Pavilion 15 - n055TX

    hi............... I'm geslin form sri lanka, I want to install Windows XP Professional SP3 (32 bit) to my laptop (hp Pavilion 15 - n055TX). When I boot on the CD, system the error occurred and see the blue screen. pls advice me...

  • When I try to use the Windows updates to and the following error message: Windows update cannot currently check updates, because the service is not running

    have tried to use windows update and get the following error message: Windows update cannot currently check the updates, because the service is not running. You may need to restart you computer. I rebooted several times. Any help would be greatly app