cftextarea Richtext not working

Using ColdFusion 10.   I setup a <cftextarea> with richtext="yes" the correct code for the richtext toolbar.   The screen works on my PC in IE, Chrome, and Firefox.   In a demo for my dozen testers I could not find a single screen where this <cftextarea> with richtext="yes" that it worked on.  The text area was may an inch.   I did some digging and found issues folks logged from CF 8 but nothing new so I was thiking this was a bug but now in Version 10 it's been taken care of.   Also found a reference putting in the "AjaxOnLoad" command which I tried by placing the command after the closing </body> and before closing </html>.   I have tried IE 9 and IE 10 and Chrome but as far as users go it's not working. 
Thanks!

Hi
You mentioned that it is working fine in your machine?
Test the code mentioned below in different browsers during development
<cfform>
<cftextarea name="broadcastContent"   enabled="Yes" toolbar="Basic" toolbarOnFocus="No" visible="Yes" style="height:200px; width:1500px;" skin="silver"  richtext="Yes">  This is a textarea. </cftextarea>         
</cfform>
If this did not work, then go to : C:\ColdFusion10\cfusion\wwwroot\CFIDE\scripts\ajax\FCKeditor, open fckeditor.js (first take a backup of this file)
Change the value in line 307  with this
var sBrowserVersion = navigator.appVersion.match(/MSIE ([\d.]+)/)[1] ;
Restart ColdFusion 10 service and then test the behavior.
Thanks
VJ

Similar Messages

  • CF8.0.1 cftextarea richtext not loading help!!!

    It seams the browser does not parse the result of the cftextarea richtext.
    code....
    <cfform name="form01" >
       <cftextarea enabled="yes" richtext=true name="text01"
         <cfinput type="submit" value="Enter" name="submit01"/>
    </cfform>
    what i get
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <!--
    * FCKeditor - The text editor for Internet - http://www.fckeditor.net
    * Copyright (C) 2003-2007 Frederico Caldeira Knabben
    * == BEGIN LICENSE ==
    * Licensed under the terms of any of the following licenses at your
    * choice:
    *  - GNU General Public License Version 2 or later (the "GPL")
    *    http://www.gnu.org/licenses/gpl.html
    *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
    *    http://www.gnu.org/licenses/lgpl.html
    *  - Mozilla Public License Version 1.1 or later (the "MPL")
    *    http://www.mozilla.org/MPL/MPL-1.1.html
    * == END LICENSE ==
    * Main page that holds the editor.
    -->
    <html>
    <head>
    <title>FCKeditor</title>
    <meta name="robots" content="noindex

    1. Do you have /CFIDE as a directory or virtual directory in all of your IIS sites?
    YES, i can access the cfide/administrator on all domains.
    2. Can the browser access all required javascript files?  Check what files are references in the HTML page your code generates and verify they all exist and are accessable.
    YES, all good.
    3. Does the browser have allow javascript to be run?
    YES
    4. Is the problem consistant across browsers?
    Mostly, but safari is able to display the toolbar but gives javascript errors everywhere.
    PS. The component loads and works fine for one of the domains.

  • CF8.0.1 cftextarea richtext not loading - Please help!!!

    code....
    <cfform name="form01" >
       <cftextarea enabled="yes" richtext=true name="text01"
         <cfinput type="submit" value="Enter" name="submit01"/>
    </cfform>
    what i get

    1. Do you have /CFIDE as a directory or virtual directory in all of your IIS sites?
    YES, i can access the cfide/administrator on all domains.
    2. Can the browser access all required javascript files?  Check what files are references in the HTML page your code generates and verify they all exist and are accessable.
    YES, all good.
    3. Does the browser have allow javascript to be run?
    YES
    4. Is the problem consistant across browsers?
    Mostly, but safari is able to display the toolbar but gives javascript errors everywhere.
    PS. The component loads and works fine for one of the domains.

  • ColdFusion.RichText.setValue not working if cftextarea in a cfwindow

    Title describes the issue.  If I place the cftextarea control outside of the cfwindow, then the ColdFusion.RichText.setValue works fine.  Has anyone else had this issue, and how did you solve it?
    Javascript:
    function  
    showEditTextWindow() {l_sectHeading= document.getElementById('hiddenSectHeading').value;
     var msgbox = document.forms['editTextSectionForm'].textSectionHeading.id;
     var edObj = ColdFusion.RichText.getEditorObject(msgbox);
     var jtext = edObj.GetXHTML(true);
     var msgboxValue = jtext += msgbox;
    ColdFusion.RichText.setValue(msgbox, decodeURIComponent(l_sectHeading));  
    ColdFusion
    .Window.show('editTextSectionWindow');}
    Cfwindow/cftextarea:
    <cfwindow   
    name="editTextSectionWindow"
     headerStyle = "FONT-WEIGHT: normal; FONT-SIZE: 10pt; font-style: normal; COLOR: white; FONT-FAMILY: Arial, Helvetica, sans-serif; TEXT-ALIGN: center; background-color: ##0000a0;"
     bodyStyle = "FONT-WEIGHT: normal; FONT-SIZE: 8pt; font-style: normal; COLOR: black; FONT-FAMILY: Arial, Helvetica, sans-serif; TEXT-ALIGN: center; background-color: white;"
     center="true"  
    closable="true"  
    destroyOnClose ="true"  
    draggable="true"  
    initShow="false"  
    resizable="false"  
    modal="true"
     width="600"  
    height="450"  
    title="Edit Heading Text"<!---minHeight="number of pixels"
    minWidth="number of pixels"
    onBindError = "JavaScript function name"
    refreshOnShow = "false|true"
    source="member/office/dsp_zipCodeRequest.cfm"
    x="numeric pixel coordinate"
    y="numeric pixel coordinate"--->
    >
    <cfform  name="editTextSectionForm">
     < div class="centered">
     <cfparam  name="attributes.sectHeading" default=""><cfparam 
    name="attributes.sectText" default="">
      <cfoutput>
    < div style="text-align: center;">
      < table>
     < tr><td> </td></tr>< 
    tr>
     <td style="vertical-align: top;">Heading:</td>
     <td><cftextarea name="textSectionHeading"
     richtext="true"
     height="60"
     width="500"
     toolbar="Basic"
     bind="hiddenSectHeading"
     value="#attributes.sectHeading#"/>
     </td></ 
    tr>< 
    tr><td> </td></tr>< 
    div id="editTextBodyDiv">< 
    tr>
     <td style="vertical-align: top;">Text:</td>
     <td>
     <cftextarea name="textSectionText" id="textSectionText"
     richtext="true"
     height="250"
     width="500"
     toolbar="Basic"
     value="#attributes.sectText#"/>
     </td></ 
    tr></ 
    div></ 
    table>
     </ div></cfoutput>input type="button" name="updateTextSectionButton" value="Update" onclick="updateTextSection();">
      < input type="button" name="CancelTextSectionButton" value="Cancel" onclick="cancelShowWindow('editTextSectionWindow');"></ 
    div></cfform>
    </cfwindow>

    Why is it that you can't ask a proper question?
    I took the time to answer you question and stated that we can't help you based on the information provided.
    I gave you a couple of pieces of information that we would need to help answer your question.
    I gave you a link that showed you how to write a simple program, incorporating the information that we would need to help solve the problem.
    I suggested that the problem was related to the fact that the value of the scrollbar was not in its final state. I tried to help but I am not a mind reader.
    Why did you bother to repsond to the question without providing any more information? Why is it that when you ask for help you don't listen to the suggestions given in order to help solve your problem?
    If you've read my postings previously, then why do I have to repeat the basics of asking a simple question?
    I don't deny that some of my postings have a bit of an attitude. Its because I get tired of trying to be a mind reader and guessing how one line of code interacts with the rest of your program or guessing what the intent of your code is.
    But at least I made the effort to tell you what was wrong with the question and why we can't provide an definite answer. The least you code have done is provide your demo code.

  • CFWINDOW and a form submit not working as expected

    Hello, everyone.
    I currently have a page that allows certain users the ability to edit content directly, without having to log on to a CMS; the user can click an edit button if they have permission which will open a CFWINDOW that contains the pre-populated form for editing.
    If I open the form directly in a browser (IE7 on WinXP SP3) and click the submit button, all is well.
    However, when I use the EDIT link and open the form in the CFWINDOW, clicking submit will post all form data EXCEPT the input="file"; upon submit, I get an error saying that the field for file doesn't exist.
    Any idea what could be causing this?
    Thanks,
    ^_^
    PS.  If required, I can post some code; but I cannot provide a link as this is on a private internal network that the public does not have access to.

    Here's the code I have, thus far.
    Main webpage (this calls the CFWINDOW):
    <cfoutput>
         <div class="more-info">
         [<a href="javascript:void(0);" onclick="windowModal('Edit_NU','#trim(url.thisNav)#',500,700,'Edit News & Updates - #ucase(url.thisNav)#','edit_nu.cfm?thisNav=#trim(url.thisNav)#',true)">edit</a>]
         </div>
    </cfoutput>
    windowModal function:
    function windowModal(win_name,TID,h,w,t,f,m){
         var windowName = typeof win_name === 'undefined' ? 'CFWindowName' : win_name;
         var thisID = typeof TID === 'undefined' ? 0 : TID;
         var thisHeight = typeof h === 'undefined' ? 400 : h;
         var thisWidth = typeof w === 'undefined' ? 700 : w;
         var thisTitle = typeof t === 'undefined' ? "_" : t;
         var thisDocument = typeof f === 'undefined' ? "faq.cfm?faqID="+thisID+"" : f;
         var thisModal = typeof m === 'undefined' ? true : m;
         ColdFusion.Window.create(windowName,
              thisTitle,
              thisDocument,
              {width:thisWidth,height:thisHeight,center:true,resizable:true,modal:thisModal,draggable:thisModal});
         //ColdFusion 9 bug fix
         ob = ColdFusion.Window.getWindowObject(windowName);
        ob.center();
         ob.body.applyStyles("background-color:#fff");
         ColdFusion.Window.onHide(windowName,destroyWindow);
    function destroyWindow(name){
         ColdFusion.Window.destroy(name,true);     
    edit_nu.cfm
    <cfset client.thisNav = trim(url.thisNav) />
    <iframe src="edit_nu2.cfm" name="NU_update" width="100%"
         marginwidth="0" height="100%" marginheight="0" align="top" scrolling="No" frameborder="0" hspace="0" vspace="0">
    Your browser does not support iFrame and cannot be used for this action.
    </iframe>
    edit_nu2.cfm:
    <cfoutput query="resultset">
    <cfform action="edit_nu2.cfm?nuid=#resultset.NU_ID#&amp;thisNav=#trim(url.thisNav)#" method="post" enctype="multipart/form-data" preloader="no" format="html" onsubmit="return getFileName();">
    <cfswitch expression="#val(resultset.active_ind)#"><cfcase value="1"><cfset variables.yesChecked = 1><cfset variables.noChecked = 0></cfcase><cfcase value="0"><cfset variables.yesChecked = 0><cfset variables.noChecked = 1></cfcase></cfswitch>
    <table width="100%">
         <tr>
              <td style="width:25%; text-align:right; vertical-align:center;">Page & ID: </td>
              <td style="width:75%; text-align:left; vertical-align:top;">#client.thisNav# - #resultset.NU_ID#      Active:<cfinput type="radio" name="active_ind" value="1" checked="#val(variables.yesChecked)#" /> Y <cfinput type="radio" name="active_ind" value="0" checked="#val(variables.noChecked)#" /> N</td>
         </tr>
         <tr>
              <td style="text-align:right; vertical-align:top;">Large HL: </td>
              <td style="text-align:left; vertical-align:top;"><cfinput type="text" name="large_headline" visible="true" style="width:98%;" value="#resultset.NU_large_headline#" maxlength="100" /></td>
         </tr>
         <tr>
              <td style="text-align:right; vertical-align:top;">Small HL: </td>
              <td style="text-align:left; vertical-align:top;"><cfinput type="text" name="small_headline" visible="true" style="width:98%;" value="#resultset.NU_small_headline#" maxlength="50" /></td>
         </tr>
         <tr>
              <td style="text-align:right; vertical-align:top; height:130px;">Image: </td>
              <td style="text-align:left; vertical-align:top;"><cfif isDefined("resultset.NU_large_image") AND len(resultset.NU_large_image) gt 0><cfset variables.imageData = resultset.NU_large_image /><cfset variables.thisWidth = 300 /><cfimage action="writeToBrowser" source="#ToBinary(variables.imageData)#" width="200" /><cfelse>None</cfif></td>
         </tr>
         <tr>
              <td style="text-align:right; vertical-align:top;">Upload/Replace: </td>
              <td style="text-align:left; vertical-align:top;"> </td>
         </tr>
         <tr>
              <td style="text-align:center; vertical-align:top;" colspan="2"><input type="file" name="NU_image" style="width:95%;" /><br /><input type="hidden" name="NU_image_name" /></td>
         </tr>
         <tr>
              <td style="text-align:right; vertical-align:top;">Article: </td>
              <td style="text-align:left; vertical-align:top;"> </td>
         </tr>
         <tr>
              <td style="text-align:center; vertical-align:top;" colspan="2"><cftextarea richtext="yes" name="article_content" tooltip="Content" value="#resultset.NU_article_content#" style="width:97%;" height="350"></cftextarea></td>
         </tr>
         <tr>
              <td style="text-align:right; vertical-align:top;">Inserted: </td>
              <td style="text-align:left; vertical-align:top; font-weight:bold;">#resultset.NU_inserted_by# on #DateFormat(resultset.NU_inserted_dttm,'mm-dd-yyyy')# #TimeFormat(resultset.NU_inserted_dttm,'hh:mm tt')# </td>
         </tr>
         <tr>
              <td style="text-align:right; vertical-align:top;">Last Updated: </td>
              <td style="text-align:left; vertical-align:top; font-weight:bold;">#resultset.NU_updated_by# on #DateFormat(resultset.NU_updated_dttm,'mm-dd-yyyy')# #TimeFormat(resultset.NU_updated_dttm,'hh:mm tt')# </td>
         </tr>
         <tr>
              <td colspan="2" height="*" style="text-align:center; vertical-align:top;"><cfinput type="submit" name="submitBtn" value="Update"></td>
         </tr>
    </table>
    </cfform>
    </cfoutput>
    I've got the form inside an iFrame, already.  If I open edit_nu2.cfm directly in a browser, it works with no problem.  But opening it in the JS created CFWINDOW prevents the contents of the input type="file" from being recognized.
    ^_^

  • RTE not working in chrome and mozilla

    Hi
        I have an urgent issue.. My RTE is not working in chrome and mozilla.. It is showing up in my dialog; but when i enter data and submit it is not storing in CRX. Also non of the plugins is active
    Any help weill be appreciable
    Thanks
    Veena

    Hi Sham
         After lot of debug i found out the following issues
    In RTE if we put styles plugin only this issue is happening
    The issue happens because the RTE is getting disabled because of the following in RichText.js
    if (CQ.Ext.isIE) {
                var editorSheet = this.doc.createStyleSheet();
                for (cssIndex = 0; cssIndex < cssCnt; cssIndex++) {
                    styleToAdd = cssToAdd[cssIndex];
                    for (sheetIndex = 0; sheetIndex < styleSheetCnt; sheetIndex++) {
                        styleToCheck = styleSheets[sheetIndex];
                        rules = styleToCheck.rules;
                        ruleCnt = rules.length;
                        ruleToCopy = null;
                        for (ruleIndex = 0; ruleIndex < ruleCnt; ruleIndex++) {
                            ruleToProcess = rules[ruleIndex];
                            ruleText = ruleToProcess.selectorText;
                            if (ruleText == "." + styleToAdd) {
                                editorSheet.addRule(
                                        "." + ruleText, ruleToProcess.style.cssText);
                                break;
            } else {
                var styleDef = this.doc.createElement("style");
                styleDef.type = 'text/css';
                var cssText = "";
                for (cssIndex = 0; cssIndex < cssCnt; cssIndex++) {
                    styleToAdd = cssToAdd[cssIndex];
                    for (sheetIndex = 0; sheetIndex < styleSheetCnt; sheetIndex++) {
                        styleToCheck = styleSheets[sheetIndex];
                        rules = styleToCheck.cssRules;
                       ruleCnt = rules.length;
                        ruleToCopy = null;
                        for (ruleIndex = 0; ruleIndex < ruleCnt; ruleIndex++) {
                            ruleToProcess = rules[ruleIndex];
                            if (ruleToProcess.type) {
                                if (ruleToProcess.type == CSSRule.STYLE_RULE) {
                                    ruleText = ruleToProcess.selectorText;
                                    if (ruleText == ("." + styleToAdd)) {
                                        ruleToCopy = ruleToProcess;
                                        break;
                        if (ruleToCopy) {
                            cssText += ruleToCopy.cssText;
                            break;
                styleDef.appendChild(this.doc.createTextNode(cssText));
                headEl.appendChild(styleDef);
    The above lines are from 650-701 in RichText.js of CQ5.4 . They have handled the code for IE seperately from lines 650-670
    The error is happening in line number 679 ; Where the ruleCnt is returning null for some sheetIndex and so the code is breaking and the RTE is disabled.
    If i add the following line of code
    if(ruleCnt == null){
    continue;
    just after line 679 . This issue seems fixed. But i think it is not the proper way to fix it and it is only a temporary fix. I dont know if it is a CQ issue.
    Does any one have any solution for this.
    To replicate the scenario
    Create a rtePlugin in ur richtext widget
    add a styles dropdown with styles in it
    run this in chrome or any other browser except IE
    If you have a proper solution please let me know
    Thanks
    Veena

  • Why the document.execCommand('InsertImage', false, URL) is not working

    Hi I am using this code to upload the images in the Mac Safari browser. Its not working in Mac safari(loading the image. Just return the blank or empty). But its working the all other remain browser(ie, mozila, opera, safari). Using Code :
    frames[0].focus();
    frames[0].document.execCommand('InsertImage', false, URL);
    alert(frames[0].document.execCommand('InsertImage', false, URL); � return false. But the other browser return true.
    frames[0].focus();
    URL Like = http://palani/graphics/IMAGE_GALARY/rose5.jpg].
    This image is not loading the Mac safari HTML richText Editor.
    Pls anybody give a correct solution to me.
    Palani

    Hi Stevejluke . I am trying to load the images in javaScript.
    This is js file contains the code. The values is passing correctly.
    code is :
    function imageLoadingToRichText(imageName, rte) // palani
         LoadsImage(imageName.name, rte); // (or)document.getElementById('introductionText'));
         // rte is richText in Jsp page like --->>> writeRichText('introductionText', document.getElementById('hiddenIntroductionText').innerHTML, null, null, null, null);
    Another the richText.js file contains the below part.
    function LoadsImage(ctl, rte ){
    frames[0].focus();
    frames[0].document.execCommand('InsertImage',false, ctl);
    frames[0].focus();
    }

  • Not work tablet UI on Prestigio 5080 PRO tablet

    I read that browser.ui.layout.tablet = "1" can fix this problem. But it not works. I can work only in pnone interface that is not good for my 8'' tablet.

    Would it be possible for you to share the problematic pdf and OS information  with us at [email protected] so that we may investigate?
    Thanks,
    Adobe Reader Team

  • Why self-defined access sequences of free goods can not work?

    Hi gurus,
    I have maintained access sequences of free goods self-defined.but when i creat the SO it does not work!
    when i used the standard access sequences ,it is OK .
    Can anybody tell me why?
    thanks in advance

    Dear Sandy,
    Go to V/N1 transaction select your self defined access sequence then go in to the accesses and fields and check all fields are activated.
    Make sure that these fields are flowing in your sales order.
    I hope this will help you,
    Regards,
    Murali.

  • Adobe bridge raw not working with windows vista in photoshop cc, why?

    adobe bridge raw not working in photoshop cc, is there a fix?

    Your sure your using photoshop cc on windows vista?
    I was under the impression that photoshop cc would not even install on windows vista.
    What version of camera raw do you have?
    In photoshop under Help>About Plugin does it list Camera Raw and if so which version is it?
    (click on the words Camera Raw to see the version)
    Camera raw doesn't work if it's a camera raw file or some other file type such as jpeg or tif?
    What camera are the camera raw files from?
    Officially camera raw 8.3 is the latest version of camera raw that will work on windows vista.

  • Adobe Bridge CS5 in windows 7 not working?

    Adobe Bridge CS5 in windows 7 not working. I was using bridge perfectly for last 2 years. It stops working since 3 days. I tried to install updates. Showing some error to install.
    Tried to install creative cloud..again some error. Error code : 82
    Could you please advice how I can fix my adobe bridge.

    https://www.youtube.com/watch?v=xDYpTOoV81Q&feature=youtu.be
    please check this video I uploaded..this is what happens when I click adobe bridge.. just blinks and go off. bridge not working on task manager

  • ADOBE CLOUD ON MY DESKTOP WILL NOT WORK. IT LOADS UP BUT NOTHING FILLS THE WINDOW

    ADOBE CLOUD ON MY DESKTOP WILL NOT WORK. IT LOADS UP BUT NOTHING FILLS THE WINDOW

    BLANK Cloud Screen http://forums.adobe.com/message/5484303 may help
    -and step by step http://forums.adobe.com/thread/1440508?tstart=0
    -and http://helpx.adobe.com/creative-cloud/kb/blank-white-screen-ccp.html

  • Partner application logoff not working

    We have a partner application registered with sso with custom login screen. The login works fine. We use the following code to logoff the partner application in logoff.jsp
    response.setHeader("Osso-Return-Url", "http://my.oracle.com" );
    response.sendError(470, "Oracle SSO");
    session.invalidate();
    but the logoff is not working properly. It is not invalidating the session and the logout http request is not going from the application server to the sso server.
    Are there any additional configurations for SSO logoff.Any help is appreciated.
    Thanks

    Hi
    The WF should also trigger if i add the Partner function in UI.If i change any Attribute the WF triggers but i dont want to change the attribute when i add the partner function.
    If i have only one event for WF that is Partner Change the WF will not trigger it for the 1st time when i save the UI. But next i come to the same saved doc and add a partner function then the Wf triggers.
    So this means that Partner change is active.
    the issue here is i need to trigger the WF on , the 1st time i save the UI, for which i wil be using Attribute Change and next time when i come back to saved doc the and add only the partner function and no changes are made to attributes the WF should again trigger.
    Thanks
    Tarmeem

  • IPhone 4 Voice Memos not working/saving

    Hi there,
    I'm having trouble with my voice memos too. Up until yesterday they were working fine and now, even though the record button works, the stop button does not and I can only pause them. Worse again is that the button to go into the menu to view all voice memos is not working so I can't play them from my iPhone and nothing new is saving to my iTunes. Please help!

    I've always had the "Include Voice Memos" option selected. I think that only pertains to syncing voice memos from iTunes to the iPhone after it has been copied to iTunes. It has to be the new OS/iTunes not communicating that new memos have been recorded. For some reason they won't sync when I want them to, and then a few syncs later they magically appear.
    By the way, I'm VERY comfortable with the iTunes and iPhone systems. I've been using iTunes for 5 years, and I've been recording class lectures with the iPhone voice memo app (and another app) for a couple years. It's not an error of not seeing that the memos were added; they don't exist in my library or music folders.
    JUST OUT OF CURIOSITY, POST WHICH FIRMWARE YOU ARE RUNNING EXACTLY!!!
    I'm on an iPhone 4, running firmware 4.0.1

  • Installed Premiere Pro CS4 but video display does not work?

    I just got my copy of CS$. After installing Premiere I found two things that seem very wrong:
    1) video display does not work, not even the little playback viewer next to improted film clips located on the project / sequence window. Audio works fine.
    2) the UI is way too slow for my big beefy system.
    My pc is a dual boot Vista-32 and XP system with 4GB of memory installed and nvidia geforce 280 graphics board with plenty of GPU power. The CS4 is installed on the Vista-32 partition. My windows XP partition on the same PC with Premiere CS2 works great and real fast.
    Any ideas how to solve this CS4 install issue?
    Ron

    I would like to thank Dan, Hunt, and Haram:
    The problem is now very clear to me. The problem only shows up with video footage imported into PP CS4 encoded with "MS Video 1" codec. So this seems to be a bug. The codec is very clearly called out and supported within various menues but video with this codec just will not play in any monitor or preview window. In addition the entire product looks horrible with respect to performance while PP CS4 trys its best to play the video. Audio will start playing after about 30 seconds. And once in awhile part of video shows up at the wrong magnification before blanking out again.
    My suggestion to the Adobe team: fix the bug and add some sample footage to the next release so new installations can test their systems with known footage.
    My PC is brand new with the following "beefy" components:
    Motherboard
    nForce 790i SLI FTW
    Features:
    3x PCI Express x16 graphics support
    PCI Express 2.0
    NVIDIA SLI-Ready (requires multiple NVIDIA GeForce GPUs)
    DDR3-2000 SLI-Ready memory w/ ERP 2.0 (requires select third party system memory)
    Overclocking tools
    NVIDIA MediaSheild w/ 9 SATA 3 Gb/sec ports
    ESA Certified
    NVIDIA DualNet and FirstPacket Ethernet technology
    Registered
    CPU: Intel Core 2 Quad Q9550
    S-Spec: SLAWQ
    Ver: E36105-001
    Product Code: BX80569Q9550
    Made in Malaysia
    Pack Date: 09/04/08
    Features:
    Freq.: 2.83 GHz
    L2 Cache: 12 MHz Cache
    FSB: 1333 MHz (MT/s)
    Core: 45nm
    Code named: Yorkfield
    Power:95W
    Socket: LGA775
    Cooling: Liquid Cooled
    NVIDIAGeForce GTX 280 SC graphics card
    Features:
    1 GB of onboard memory
    Full Microsoft DirectX 10
    NVIDIA 2-way and 3-way SLI Ready
    NVIDIA PureVideo HD technology
    NVIDIA PhysX Ready
    NVIDI CUDA technology
    PCI Express 2.0 support
    Dual-link HDCP
    OpenGL 2.1 Capaple
    Output: DVI (2 dual-link), HDTV
    Western Digital
    2 WD VelociRaptor 300 GB SATA Hard Drives configured as Raid 0
    Features:
    10,000 RPM, 3 Gb/sec transfer rate
    RAM Memory , Corsair 4 GB (2 x 2 GB) 1333 MHz DDR3
    p/n: TW3X4G1333C9DHX G
    product: CM3X2048-1333C9DHX
    Features:
    XMS3 DHX Dual-Path 'heat xchange'
    2048 x 2 MB
    1333 MHz
    Latency 9-9-9-24-2T
    1.6V ver3.2

Maybe you are looking for

  • I changed my Apple ID and I keep being asked to verify my email.

    I just recently changed my Apple ID because I switched email accounts from Yahoo! to Gmail. The ID change went through and I can log in to my Apple ID on the website, but when I try to connect to the iTunes Store to update an app, either it continuou

  • What's the best way to use an enum to validate statuses

    I am trying to write and use an enum to represent a status code and validate status code values. Ultimately the input data from another system and the database will be 1 or 2 i.e.the indexes and the java code will use the LIVE and CANCELLED when refe

  • How to specify finite simulation stop time in VI generated using SIT connection manager

    Hello, I have a SIMULINK model which I want to run on a desktop ETS. I'm following this procedure: 1. Convert the SIMULINK model in a .DLL using RTW build in Matlab. The target of this build is nidll.tlc. 2. Create a host VI with required indicators

  • How to set the default start page (login) of apex itself?

    Hi! I've successfully upgraded from 3.2 to 4.0! I'm using the pl/sql embedded gateway. When I enter the url http://s01:8081/apex I get an error (page cannot be displayed (404)). But when I enter http://s01:8081/apex/f?p=4550:1:1481295403790110 the ap

  • Adf Mobile selectOneChoice Problem

    Hi, i have a data control which is created from a wsdl with find operation and it returns a list to selectOneChoice.There is a no problem up to there . Problem starts with other selectOneChoice, thats like first one but one difference is it accepts a