Trying to create a heat map

I am trying to recreate this kind of report and need some example code
http://bp2.blogger.com/_F4cjbG7L4no/RyRmRZSz2vI/AAAAAAAAAAM/frAGvZrcyo8/s1600-h/linecalimage.jpg
I require the table cells to appear as colors based on if the value is null or not null
When the user mouse overs the cell they should see some values.
I have tried every option I could google and either I get the colors or the mouseover but not both.
If someone could point me to a good example or walk through for this it would be great.
Thanks in advance.

Create a view in your schema maybe like this...
CREATE OR REPLACE VIEW V_HEATMAP AS
SELECT
CASE
WHEN (t.COL001 IS NULL) THEN
'<div style="background-color:red">'
|| '<a href="'
|| '#'
|| '" title="'
|| t.COL002
|| '">'
|| '      '
|| '</a>'
ELSE
'<div style="background-color:green">'
|| '<a href="'
|| '#'
|| '" title="'
|| t.COL003
|| '">'
|| '      '
|| '</a>'
END AS demo_col
FROM demo_table t;Add a SQL report to the page, make the report source like:
SELECT * FROM V_HEATMAP;Edited by: cmcneil on Mar 24, 2009 3:35 PM
Edited by: cmcneil on Mar 24, 2009 3:46 PM
Edited by: cmcneil on Mar 26, 2009 1:36 PM - found the code tag :)

Similar Messages

  • Create a Heat Map in Oracle Apex 4.1 version

    Hi,
    I want to generate a Heat Map for Apex 4.1 version.
    However I did not see any option which will create a Heat Map in the Charts/Maps sections.
    Please advice how this can be achieved.
    -Sanchita

    Did you check the forum for an answer? Just did a quick scan and found this thread:
    APEX 4.0 Maps - How to create heat maps / Add Custom Maps
    Thank you,
    Tony Miller
    Dallas, TX

  • Create a Heat Map Key

    Hi
    I've created a custom map, and have it set up so that each part of the map has a color key graduated based on a formula, and all works fine.  What I want to add is a key to the colours used.  I've used a Spreadsheet component with the following:
         Range     
    10,000     or over     red
    7,500     -9999     light red
    5,000     -7499     pink
    2,500     -4999     light pink
    2,499      or under     white
    The colours are the actual cell and font colours, however when I select this range the only correctly displayed colour in design or preview is red.  The rest of the cell colours are displayed something like:
         Range     
    10,000     or over     red
    7,500     -9999     orange
    5,000     -7499     green
    2,500     -4999     khaki
    2,499      or under     blue
    So it displays the correct font colour but the incorrect cell format colour.  I'm guessing this is a bug, so any ideas on how else could I display a colour key for the map?
    Thanks
    Charles
    Edited by: Charles Davies on May 12, 2009 2:48 PM

    Hi Charles,
    How did you pick your cell color?
    If I use the Excel Paint Bucket drop down list it only has a few colors to choose from anyway (I have Excel 2003 not 2007), are you using one of the colors in that list?
    If you use the Rectangle component in Xcelsius (Arts & Backgrounds) you can fill that with any color you like...
    Regards,
    Matt

  • Create a heat map

    I'd like to display some data using a heat map format, something like this:
    My data is basically X,Y coordinates.  Each coordinate pair has an amplitude value.  I want to map the amplitude value into a color gradient and plot it as a smooth graph.  I could do this manually using the Canvas control, but then each point would be graphed as a rectangle of a certian color.  The points wouldn't blend into each other (unless there's some way to blend colors on a Canvas control).  I also thought about using the 3D graph control, but I don't want an actual surface graph.  I want to use color as my thrid dimension.
    Does anyone have any suggestions on how to do this?
    Tony G.

    Hi Tony,
    Would blending using the canvas control be possible using the alpha channel? Check out the shipping example "alphablend.cws" for an example of this with the Canvas control. I'm not sure if this is going to be applicable to your graph, but hopefully it's useful!
    Best,

  • Creating a sample mapping - facing the following issues

    Hi,
    I am trying to create a sample mapping, just one source and one target. I did teh following steps
    1) Created a new folder under Projects
    2) Created a new interface under first folder
    3) In Mapping pulled one source table and pulled another table for target
    4) When trying to save I get 2 critical errors, NO LKM selected, NO IKM selected errors. Where would I define these and how to bring it into the mapping?
    5) I also got 2 warnings - Mapping should be enabled, Mapping text should not be empty
    Thanks for your time and help.

    #4 - Import the LKM and IKM you plan to use into the project Knowledge Modules. Then, in the Interface, select the Flow tab and choose the LKM and IKM.
    #5 - You need to map your source columns to the target columns after you have added your source and target datastores.
    Take a look at the documentation posted by Oracle. There are many good Oracle By Example tutorials to get you started.
    http://www.oracle.com/technetwork/middleware/data-integrator/learnmore/index.html
    Regards,
    Michael Rainey

  • Where is CopyEvolve trying to create the mapping table?

    SQL*Plus: Release 10.2.0.1.0
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
    With the Partitioning and Data Mining options
    I am trying to use DBMS_XMLSCHEMA.copyEvolve .
    ORA-30945: Could not create mapping table 'XDB$MAPTAB481'
    ORA-01031: insufficient privileges
    I can create a table in my own schema. I am left to assume copyEvolve is trying to create the table someplace else, but where?
    The oracle docs say "If there are schema-based XMLType tables or columns in other database schemas, you need privileges such as the following: CREATE ANY TABLE" I have CREATE TABLE but not CREATE ANY TABLE (and have little hope of getting it from our DBAs!) but I didn't think this would be an issue since the XML schema I am trying to evolve is only used by an object in my schema. Anyone have any idea what privilige it is that I am missing?
    Thanks,
    ggb

    Hi,
    There is a LastActiveTime column in collection views(such as dbo._RES_COLL_SMS00001).
    It records the date of last communication.
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • SSRS Heat Map help

    Hi 
    I have SQL 2012 and while having a play around with a report I wanted to use a heat map ( or treemap ) as I believe it was called.
    Any way I found that it one of the posts here points you to
    http://www.sqljason.com/2012/03/heat-maps-for-ssrs-using-map-control.html
    So I downloaded the dll
    Went to my dw and executed the following
    CREATE ASSEMBLY HeatMap from 'c:\HeatMap\HeatMap.dll' WITH PERMISSION_SET = SAFE
    CREATE PROCEDURE dbo.CreateHeatMap (@Width real, @Height real, @SqlStrng nvarchar(4000))
    AS
    EXTERNAL NAME HeatMap.StoredProcedures.TreeMapGeography
    Then executed the proc
    DECLARE    @return_value int
    EXEC    @return_value = [dbo].[CreateHeatMap]
            @Width = 20,
            @Height = 25,
            @SqlStrng = N'Select WKDAY ,  SUM (TotalTransactions) ts FROM ReportingDW..f_transactionstolive group by WKDAY  '
    SELECT    'Return Value' = @return_value
    when It comes up with the following
    Msg 6522, Level 16, State 1, Procedure CreateHeatMap, Line 0
    A .NET Framework error occurred during execution of user-defined routine or aggregate "CreateHeatMap":
    System.FormatException: Input string was not in a correct format.
    System.FormatException:
       at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
       at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
       at StoredProcedures.TreeMap..ctor(DataTable TreeMapData, Single Height, Single Width)
       at StoredProcedures.TreeMapGeography(SqlSingle Height, SqlSingle Width, SqlString select)
    Im now not sure what to do any help would be great .
    I just want a simple square treemap or heat map that highlights the size of each process in rectangles and cant believe how difficult it is.
    Many Thanks
    Robert

    Hi Robert,
    In your case, the issue may be due to that you have create an assembly, and then you register the assembly on a Microsoft SQL Server database. Then, you install a different version of the assembly in the Global Assembly Cache (GAC).
    In order to work around the issue, please use the ALTER ASSEMBLY statement to update the assembly in the database. If the problem still exists after you do this, drop the assembly from the database, and then register the new version of the assembly in the
    database.
    There is a similar issue for your reference.
    http://support.microsoft.com/kb/949080/en-us
    If the issue is persist, I recommend you post the issue in the following forum:
    .NET Framework inside SQL Server
    It is appropriate and more experts will assist you.
    Regards,
    Alisa Tang
    If you have any feedback on our support, please click
    here.
    Alisa Tang
    TechNet Community Support

  • Creating a bit map index on a partitioned table

    Dear friends,
    I am trying to create a bitmap index on a partitioned table but am receiving the following ORA error. Can you please let me know on how to create a local bit map index as the message suggests?
    ERROR at line 1:
    ORA-25122: Only LOCAL bitmap indexes are permitted on partitioned tables
    Trying to use the keyword local in front leads to wrong syntax.
    Thanks in advance !!
    Somnath

    ORA-25122 Only LOCAL bitmap indexes are permitted on partitioned tables
    Cause: An attempt was made to create a global bitmap index on a partitioned table.
    Action: Create a local bitmap index instead
    Example of a Local Index Creation
    CREATE INDEX employees_local_idx ON employees (employee_id) LOCAL;
    Example is about btree and I think it will work for bitmap also.

  • How to create a PortalSite map in a tree structure

    Hi,
    We are trying to reuse SAP Portal EP 7.3 standard functionalities related to create a Portal Site Map.
    I've seen the procedure to create a Workset map iview (http://help.sap.com/saphelp_nw73/helpdata/en/49/32a7a9e8c45aaae10000000a42189d/frameset.htm), but we are interested in generate this map contained in a tree structure, because currently the SAP EP 7.1 brings the menu and option format.
    I would like to know if this is possible using the standard functionalities or it is required to develop any application?
    Please if you could help me it would be really useful.
    Thanks in advance,

    Thanks for your help Srinivas,
    I was trying to know if it was possible to assign a style or layout to the site map iview created using the standard map iview delivered by SAP EP 7.3. I was looking for documentation but it is not enough at all and in my project we are still working with SAP EP 7.0
    Please, if anyone could know about the map site iview standard and the available styles or maybe it is not changeable.
    In that case, the only way it would be a development to get the tree structure.
    Thanks!!!!

  • Error when trying to create Server Pool

    Hi there,
    I've been trying to create a server pool in the Oracle VM Manager. However I am getting the following error:
    (11/23/2012 12:41:06:471 PM)
    OVMAPI_4010E Attempt to send command: create_pool_filesystem to server: gunnar.blpc.com.bb failed. OVMAPI_4004E Server Failed Command: create_pool_filesystem lun /dev/mapper/271480530748fbd8c 2021663b7dffb10a 0004fb00000500004641e478723eecdc 0004fb00000100008126e601b77c2155 0004fb00000200002021663b7dffb10a, Status: org.apache.xmlrpc.XmlRpcException: exceptions.RuntimeError:Command: ['mkfs.ocfs2', '-b', '4K', '-C', '4K', '-J', 'size=4M', '-N', '32', '-L', 'OVS_POOL_FILESYSTEM', '-U', '0004fb00000500004641e478723eecdc', '--global-heartbeat', '--cluster-stack=o2cb', '--cluster-name=2021663b7dffb10a', '--force', '/dev/mapper/271480530748fbd8c'] failed (1): stderr: mkfs.ocfs2 1.8.2
    /dev/mapper/271480530748fbd8c is apparently in use by the system; format forced anyway.
    stdout:
    WARNING!!! OCFS2 uses the UUID to uniquely identify a file system.
    Having two OCFS2 file systems with the same UUID could, in the least,
    cause erratic behavior, and if unlucky, cause file system damage.
    Please choose the UUID with care.
    Cluster stack: o2cb
    Cluster name: 2021663b7dffb10a
    Stack Flags: 0x1
    NOTE: Feature extended slot map may be enabled
    Proceed (y/N): Aborting operation.
    Fri Nov 23 12:41:06 AST 2012
    Fri Nov 23 12:41:06 AST 2012
    I am connecting to iSCSI storage and I am sure that the oracle vm server is the only device connecting to the target.
    Please let me know if anyone has any suggestions.
    Thanks

    Seems like there's already an OCFS2 fs on that LUN. Could it be, that you tried to create a server pool on that LUN before, or that this target has been used to host some other OVM repository? If that is the case, then you need to wipe the LUN, before you can create a new OVM repository or server pool for that matter on it.
    But please… double check that this LUN isn't in use anywhere else, since you could loose data, if you'd wipe it!

  • Issue while trying to create Sales Order from Inbound Idoc ORDER05

    Hi All,
    I am trying to create a sales order through an Inbound idoc ORDERS05 created out of a Purchase order. The header pricing conditions from the Purchase orders gets populated in E1EDK05 segment and this needs to go to the Sales order header conditions while trying to create the Sales order.
    But when the fields are getting incorrectly mapped to the Sales order. Issue  being, the segment E1EDK05-BETRG contains the condition value. But this fields gets populated to the KOMV-KWERT (condition value) screen field on the Sales order header conditions. But this should have got mapped to field KOMV-KBETR (Rate). If I look at the Purchase order, E1EDK05-BETRG is the field getting fetched from field KOMV-KBETR on the Purchase order. So this should have correspondingly got mapped to KOMV-KBETR on the Sales order as well.
    This looks like a standard behavior. But if any of you have encountered this issue before please let me know if any Correction instructions are available for the same. If this some issue in Pricing conditions configuration, do let me know.

    Hi Paaavan
    You can set a break-point include "FV45PFAP_VBAP_BEARBEITEN_VORBE" that is called by both the SAP Standard and BAPI where the data is prepared and checked in the internal table XVBAP. Compare both SAP standard VA01 and your 'Z' program for what may be different in XVBAP.
    I think the problem my be with regards to the business_object number that is hardcoded in the standard function module. It has given me issues before and hence I tend to use the function module  SD_SALESDOCUMENT_CREATE to create sales documents with.
    Regards,
    Marius

  • I'm trying to create a Windows partition using Boot Camp. An error comes up telling me that I need to reformat my current partition(s) into one single partition. However, it's already formatted in the correct format, and is already a single partition.

    As made clear in the title:
    I'm trying to create a Windows partition using Boot Camp. An error comes up telling me that I need to reformat my current partition(s) into one single partition. However, it's already formatted in the correct format, and is already a single partition.
    My computer recently had a kernel panic, which apparently the corruption was in the system and needed to be erased and re-installed. I have a complete back-up using an external hard drive, and I am definitely not willing to do another one of those to reformat a partition that is already singular. I restarted the computer after ejecting my back-up, and after turning off time machine (thinking that boot camp was recognizing it as a secondary partition), however the error still occurs.
    Is there any way to get around this?

    diskutil list:
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *750.2 GB   disk0
       1:                        EFI                         209.7 MB   disk0s1
       2:                  Apple_HFS Macintosh HD            749.3 GB   disk0s2
       3:                 Apple_Boot Recovery HD             650.0 MB   disk0s3
    /dev/disk1
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                            Windows7               *2.9 GB     disk1
    diskutil cs list:
    No CoreStorage logical volume groups found
    mount:
    /dev/disk0s2 on / (hfs, local, journaled)
    devfs on /dev (devfs, local, nobrowse)
    map -hosts on /net (autofs, nosuid, automounted, nobrowse)
    map auto_home on /home (autofs, automounted, nobrowse)
    /dev/disk1 on /Volumes/Windows7 (udf, local, nodev, nosuid, read-only, noowners)
    From my very basic knowledge - it still looks as if there is only one partition (not including the windows 7 CD necessary to install the windows partition).

  • Windows can't create a network map/appearance of B...

    Hi
    I have had BT infinity for somewhat over a month now without any problems, until yesterday. That I am aware of two things have changed but in what order they changed I do not know.
    'Firstly' I connected a brand new but several years old i.e. unused, LG 1T network drive and tried to get through the software installation process without success (can't create acceptable login details ). However I could see etc. the drive if I typed its network address into a browser's address window. BUT at that point the Windows network map started breaking. That was yesterday and I have, for the moment, removed the drive and deleted its info from the Homehub 5b.
    Today I noticed that two new wireless networks have appeared, BTWifi-X and BTWifi-with-Fon. These appear and disappear as and when my homehub is switched on and off and, given what I have read, I assume these are the hotspot networks I am providing.
    If I have my laptop connected to the homehub via LAN, Windows can create a network map providing no other computer is connected via WAN. Conversely when any computer is simultaneously connected to the homehub via WAN Windows loses the ability to create a network map, this includes the situation where one computer is connected via WAN and LAN. I often use my employer's WAN when at work and frequently forget to switch the WAN off, meaning that when I come home the laptop is initially often connected via WAN and LAN. That I am aware of, Windows has not previously had a problem creating a network map when this has happened.
    There does not seem to be a problem if my phone (android) is connected to the homehub via WAN or if I have two computers connected to the homehub via only WAN nor if two computers are connected to the home hub via only LAN
    One other thing I have also noticed is that the network map, when created, seems to contain, at times, a switch, a hub, Homehub5 and BThub5**** as if there a multitude of connectors.
    I would like to get back the ability for windows to create network maps whatever connections are made.
    Any suggestions?
    Thanks

    Claybourne wrote:
    Hi
    I have had BT infinity for somewhat over a month now without any problems, until yesterday.
    That I am aware of two things have changed but in what order they changed I do not know.
    'Firstly' I connected a brand new but several years old i.e. unused, LG 1T network drive and tried to get through the software installation process without success (can't create acceptable login details ). However I could see etc. the drive if I typed its network address into a browser's address window. BUT at that point the Windows network map started breaking. That was yesterday and I have, for the moment, removed the drive and deleted its info from the Homehub 5b.
    Today I noticed that two new wireless networks have appeared, BTWifi-X and BTWifi-with-Fon. These appear and disappear as and when my homehub is switched on and off and, given what I have read, I assume these are the hotspot networks I am providing.
    If I have my laptop connected to the homehub via LAN, Windows can create a network map providing no other computer is connected via WAN. Conversely when any computer is simultaneously connected to the homehub via WAN Windows loses the ability to create a network map, this includes the situation where one computer is connected via WAN and LAN.
    I often use my employer's WAN when at work and frequently forget to switch the WAN off, meaning that when I come home the laptop is initially often connected via WAN and LAN. That I am aware of, Windows has not previously had a problem creating a network map when this has happened.
    There does not seem to be a problem if my phone (android) is connected to the homehub via WAN or if I have two computers connected to the homehub via only WAN nor if two computers are connected to the home hub via only LAN
    One other thing I have also noticed is that the network map, when created, seems to contain, at times, a switch, a hub, Homehub5 and BThub5**** as if there a multitude of connectors.
    I would like to get back the ability for windows to create network maps whatever connections are made.
    Any suggestions?
    Thanks
    You seem to be using WAN to mean a Wireless connection when it means something else. Is this correct.
    Your HH 5 B should provide a better network map than windows. Do you know how to log into your Home Hub Manager to get this and other information ?
    Have you set up your HH 5 B as recommended in this forum ?

  • Adapter Status Error :  Error in creating message ID map for JMS message:

    Currently in the SAP XI 3.0 JMS Adapter, I am receiving the following error
    Error in creating message ID map for JMS message:
    ie. Error while processing message 'de8265f6-c864-4479-1137-9bab17b78b3b';  detailed error description: com.sap.aii.adapter.jms.api.channel.filter.MessageFilterException: Error in creating message ID map for JMS message: ID:c3e2d840d8d4d7f14040404040404040c44f8e2213630b01 at com.sap.aii.adapter.jms.core.channel.filter.InboundDuplicateCheckFilter.filter(InboundDuplicateCheckFilter.java:103)
    Although I am receivng this error, when I check the details of the message processing, all steps are successful and the message is set to status : DLVD
    Audit Log for Message: de8265f6-c864-4479-1137-9bab17b78b3b
    Time Stamp     Status     Description
    09.06.2009 13:27:24     Success     New JMS message with JMS message ID ID:c3e2d840d8d4d7f14040404040404040c44f8e2213630b01 received. The XI message ID for this message is de8265f6-c864-4479-1137-9bab17b78b3b
    09.06.2009 13:27:24     Success     JMS message converted to XI message format successfully
    09.06.2009 13:27:24     Success     RRB: entering RequestResponseBean
    09.06.2009 13:27:24     Success     RRB: suspending the transaction
    09.06.2009 13:27:24     Success     RRB: passing through ...
    09.06.2009 13:27:24     Success     RRB: leaving RequestResponseBean
    09.06.2009 13:27:24     Success     Transform: using Transform.Class: com.sap.aii.messaging.adapter.Conversion
    09.06.2009 13:27:24     Success     Transform: transforming the payload ...
    09.06.2009 13:27:24     Success     Transform: successfully transformed
    09.06.2009 13:27:24     Success     Application attempting to send an XI message synchronously using connection JMS_http://sap.com/xi/XI/System.
    09.06.2009 13:27:24     Success     Trying to put the message into the call queue.
    09.06.2009 13:27:24     Success     Message successfully put into the queue.
    09.06.2009 13:27:24     Success     The message was successfully retrieved from the call queue.
    09.06.2009 13:27:24     Success     The message status set to DLNG.
    09.06.2009 13:27:25     Success     The application sent the message synchronously using connection JMS_http://sap.com/xi/XI/System. Returning to application.
    09.06.2009 13:27:25     Success     The message was successfully transmitted to endpoint http://sapxia.swets.nl:8000/sap/xi/engine?type=entry using connection JMS_http://sap.com/xi/XI/System.
    09.06.2009 13:27:25     Success     The message status set to DLVD.
    Not sure why this is occurring.......

    No, not using correlation id.
    I was able to resolve the issue on this queue by changing the following setting
    Under the PROCESSING tab, under XI SETTINGS
    Time period for Duplicate Check for EO(IO) (secs) it was set to 86400
    I have changed this to 300 seconds and the adapter has now gone green.
    BUT......
    That said, I have the exact scenario on another sender JMS channel set to 300 seconds and it exhibits the same issue.
    correlation settings:
    Set XI message id  to  = GUID
    Set Xi conversation

  • OWB trying to create merge when should be update statement

    Hi there
    Have a problem whereby when set target update type of table to update, OWB trying to create a merge and failing with message merge sttament cannot be generated because column <column_name> is used for both matching and update.
    A matching column cannot be updated in a merge statement.
    We are trying to only update certain rows in a target table.
    What is the best way to do this in a mapping in normal sql we
    would do
    update table
    set cola = 12, col b=14
    where cola = 10
    Many Thanks

    Hi there
    Thanks for this. I get your idea of doing filter on target at start.
    However in our situation I'm not certain how to achieve what we require, being new to OWB.
    We have a source staging table with various tranasctions (updates, inserts and deletes all flagged with a timestamp. We need to process these as follows:
    1) Inserts become inserts on the target table
    2) Deletes become updates on target table, expiration date set to timestamp of record on source table. Here we need to limit the update to only update open record thus not changing history for the code concerned. Open record identified as expiration date set to '31/12/4000'
    3) Updates become Updates, setting expiration date on current record to timestamp of staging table record, again only updating currently open record which is identified by expiration date set to '31/12/4000'.
    What I thought of doing would be mapping
    starting with target table going into a filter to get open records '31/12/4000'. This with joiner operator to staging table and the results of joiner to target table load type set to update. This would handle deletes and the update part of updates.
    However this wouldn't take care of the inserts and the second part of updates, i.e. the requirement to insert new record to cater for the update.
    Thought about two mappings, one with target type of update as above and another for inserts, but problem would be need to process all records in staging table in right order, e.g in one day could have insert then update. Couldn't run insert mapping first as update mapping would then run and close off the inserted record.
    Basically looking for advice on best way to achieve the above.
    Many Thanks

Maybe you are looking for

  • How do i get desktop icons out of the hide mode???

    my baby got on my computer and started pressing the keyboard and now my icons are hidden. i have only had my computer for 6 days so i have no idea how to get the icons from the hide mode. when i put the cursor down to the bottom of the desktop the ic

  • XML and binary with field separator stock quote

    Hi All, I'm doing a comparison of data transmission between XML and binary with field separator. Example of XML <nasdaq> <high>100.00</high> <low>90.00</low> </nasdaq> Example of binary with field separator 100.00|90.00 Of course, using XML will cons

  • Problem with new build, Motherboard/Case

    Hi, I bought a new pc that arrived Friday, It is my first build so bare with me on some bits. But to cut it short I have the NZXT Phantom case with a P67A-GD53 Motherboard, And when I screw it all down to the case I cannot fit my GPU in (GTX 570 Powe

  • SelectItem and object

    Hello all, i would like to add all users to a SelectOneMenu. This is what i do: userlist.add(new SelectItem(user, user.getName))This works fine. All user names are rendered in the SelectBox. Now i want to choose a user fron the list and use it in my

  • Album View Freezes with iTunes 11.1.2

    After installing iTunes 11.1.2, any time I display the album view, iTunes freezes for between 30 seconds to 1 minute. If you are starting iTunes with the album view as the default, it will freeze on starting as well. Also any changes when in album vi