CFGRID is not working in CF 9.0.1.274733

Hello,
I have problems with the tag cfgrid, locally works fine, but in the server in CF 9.0.1.274733 doesn't work, it displays:
document.write("
I think that is a server problem, but the hosting company tell me that is a code-related error.
I appreciate if somebody can help me.
Thank you
The piece of .cfm code is this, it works fine locally in CF 8 but not in CF 9.0.1.274733
<cfquery name="seeChains" datasource="ds1" username="***" password="***">
SELECT *
FROM chain
    </cfquery>
    <cfquery name="catalogueRFC" datasource="ds1" username="***" password="***">
SELECT distinct rfc_c
FROM chain
    </cfquery>
<cfform name="chains" format="flash" width="100%" height="500">
  <cfformgroup type="panel" label="Our Chains">
<cfselect query="catalogueRFC" queryposition="below" label="RFC" name="myselect1" value="rfc_c" display="rfc_c" width="200">
         <option value="All">All</option>
      </cfselect>
   <cfgrid name="listChains" query="seeChains" >
         <cfgridcolumn header="ID" name="idcadena" />
         <cfgridcolumn header="Nombre" name="nombre_c" />
         <cfgridcolumn header="RFC" name="rfc_c" />
         <cfgridcolumn header="Teléfono principal" name="telefono1_c" />
         <cfgridcolumn header="Teléfono alternativo" name="telefono2_c" />
         <cfgridcolumn header="Correo electrónico" name="correo_c" />      
      </cfgrid>
   </cfformgroup>
</cfform>   

Hi Adam, thak you for your response.
Locally I don't get any error, it works fine.
You can get a look to the .cfm in the server:
http://www.retaileader.com.mx/sistemarl/ejemploOrdenaFiltraCadenas.cfm
http://www.retaileader.com.mx/sistemarl/ejemplo2OrdenaFiltraCadenas.cfm
The only message from the server is
document.write("
Really I don´t know whats wrong in the server.

Similar Messages

  • CFGrid onError not working correctly

    Hi All,
    I have a CFGrid, format type is 'html' and its bound to a javascript function to populate it.
    The javascript function in turn calls a cfc via ajax, which calls a back end and the grid gets populated. Works lovely, except if there is an exception in the back end and I don't have data. I have put the onError attribute in place in my grid but this seems to get called all the time, even if there is no error.
    If there is an error I am alerting the message and code and it just says undefined.
    Does ANYONE know how to get this working? I've googled but can't find anything on this specific issue.
    Any help would be much appreciated.
    Thanks,
    Orla

    Apparently this is a problem with the iPhone 3.1 OS not working with Ford Sync. I have a Ford Fusion and I have had problems ever since updating my iPhone to 3.0.
    From Ford:
    If your device has been updated to Apple firmware version 3.1 (or greater), then you will experience an INDEXING concern which may limit functionality of the device with SYNC, including longer indexing times (e.g., 30 minutes). Note: Earlier versions of the iPhone firmware are not affected. The Ford SYNC Team is aware and has been in communication with the Apple team regarding the concern. We will post an updated response once more information is known. We appreciate your patience and would like to offer the following recommendations for continued usage of SYNC and your device:
    -Use the AutoPlay feature. SYNC will still playback content on the device that is on the "Now Playing" list of the device. Media control will be limited to the Play, Pause, Next and Previous Track.
    -If the device supports Bluetooth Audio, connect to the device with SYNC BT Audio/Media Stream. Media control will be limited to Play, Pause, but can also be controlled directly on the device.
    -Use the Line In input to connect to the device headphone audio jack. The media will need to be controlled on the device directly.
    -Transfer unprotected contents to a USB flash drive. SYNC supports playback with full media control of iTunes formatted unprotected media.
    -Allow some additional time for the device to index.
    If you have any additional questions, you may also contact our SYNC Support team via chat, e-mail, or phone. Thanks.
    Source:
    http://boards.synccommunity.com/n/pfx/forum.aspx?tsn=1&nav=messages&webtag=fords yncmb&tid=1987

  • CFGRID Binding Not Working in CF9

    I'm having trouble with a CFGRID that works fine in CF8, but when trying to run it on CF9 I get no results and it's like the grid is loading forever. I did have to remove the cfajaximport I was using to get it to load at all, which is does now with the columns and the rest of the grid, but no rows. It's bound to a CFC and I know it works - this is happening to ALL my grids in CF9 now.
    Here's what I've checked:
    - CFIDE folder is mapped
    - CFC is loaded
    - firebug shows a ton of CSS errors from ext-all.css, but the GET request comes back with: {"QUERY":{"COLUMNS":["ID","PAGE","PAGETITLE","SECTION","EDITLINK"],"DATA":[[75,"\/about\/ index.cfm","About the Corporation","About",,"TOTALROWCOUNT":7}
    No rows in the grid though. 
    Grid Code:
                        <cfgrid name="contentGrid" format="html" pagesize="25" selectmode="row" striperowcolor="F0F0F0" striperows="yes" selectcolor="##666666"
                            bind="cfc:assets.cfc.common.getPagesGrid({cfgridpage},{cfgridpagesize},{cfgridsortcolumn}, {cfgridsortdirection})">
                            <cfgridcolumn name="ID" header="ID" width="50">
                            <cfgridcolumn name="section" header="Section" width="300">
                            <cfgridcolumn name="pageTitle" header="Page Title" width="300">
                            <cfgridcolumn name="editLink" header="" width="50">
                            </cfgrid>
    Thanks for any help you can provide!

    Yeah, I finally dumped the SQL value of the query that was being run in the bind and realized that the CF9 MySQL driver hates it when you try to CONCAT a text value and a numeric value, so the query wasn't working.  Using CAST in the query solved the query and then the grid started working again.

  • CFGRID pagesize not working

    We're trying out the new feature in CF8, and I can't seem to
    get this one to work. The CFGRID tag has a pagesize attribute for
    HTML grids. This uses Ajax paging. I can't seem to get it to work.
    No matter what I do, all records appear on one page.
    Here is some simple code. Does this work for anyone else?

    The solution is to create a CFC and use the bind method for
    the data.
    Ben Forta has a great example here...
    http://www.forta.com/blog/index.cfm/2007/5/31/ColdFusion-Ajax-Tutorial-3-Live-Data-Grids

  • CFGRID format=HTML not working in IE8

    I'm using Cold Fusion 10 and trying a cfgrid and it does not work in IE8.  It works perfectly in FF, of course. :-).
    It IS within a Cfform in my .cfm file.  Even when I take it down to it's simplest form to try to debug it doesn't work, but here is my original code:
    <cfgrid name = "FirstGrid"
            height="200" width="700"
            font="arial" fontsize="12"
            query = "Getdates"
            SORT="Yes"
            selectmode="edit"
            format="html"
            >
            <CFGRIDCOLUMN NAME="anumber" DATAALIGN="LEFT"
            BOLD="No" ITALIC="No"
            SELECT="No" DISPLAY="No"
            HEADERBOLD="No" HEADERITALIC="No">
        <CFGRIDCOLUMN NAME="schoolyear" HEADER="School Year"
            HEADERALIGN="LEFT" DATAALIGN="LEFT"
            BOLD="Yes" ITALIC="No"
            SELECT="Yes" DISPLAY="Yes"
            HEADERBOLD="No" HEADERITALIC="Yes">
        <CFGRIDCOLUMN NAME="doh" HEADER="Date of Hire"
            HEADERALIGN="LEFT" DATAALIGN="LEFT"
            BOLD="No" ITALIC="No"
            SELECT="Yes" DISPLAY="Yes"
            HEADERBOLD="No" HEADERITALIC="No" type="date">
        <CFGRIDCOLUMN NAME="leavedate" HEADER="Leave Date"
            HEADERALIGN="LEFT" DATAALIGN="LEFT"
            FONT="Times" BOLD="No"
            ITALIC="No" SELECT="Yes"
            DISPLAY="Yes" HEADERBOLD="No"
            HEADERITALIC="No">
        <CFGRIDCOLUMN NAME="Returnfromleavedate" HEADER="Return From Leave Date"
            HEADERALIGN="LEFT" DATAALIGN="LEFT"
            BOLD="No" ITALIC="No"
            SELECT="Yes" DISPLAY="Yes"
            HEADERBOLD="No" HEADERITALIC="No">
        <CFGRIDCOLUMN NAME="terminatedresignedretireddate" HEADER="Terminated/Resigned/Retired"
            HEADERALIGN="LEFT" DATAALIGN="LEFT"
            BOLD="No" ITALIC="No"
            SELECT="Yes" DISPLAY="Yes"
            HEADERBOLD="No" HEADERITALIC="No">
        </cfgrid>
    Thanks for any help!
    B.

    Sorry, I should have used the code tags. Let me ask that again.
    I have HTML formatted data stored in VARCHAR2 columns on the database for which I am using a stylesheet to format into XSL-FO to resolve the HTML tags. For example, my data template populates a field PARAGRAPH_TEXT with content such as
    <b>some bold text</b>and I am using
    <xsl:apply-templates select="PARAGRAPH_TEXT"/>in my RTF template to process the data using the stylesheet to convert it to
    <fo:inline font-weight="bold">some bold text</fo:inline>The HTML tags are corrrectly resolved when using the BI Publisher Word add-in and the output is correctly rendered in bold text but this does not happen when running on the server in an E-Business Suite environment due to the HTML tags in the output XML being generated as e.g. &lt;b&gt; instead of <b>. Has anybody experienced this and, more importantly, can anybody suggest a way of getting e.g. <b> in the XML instead of &lt;b&gt;

  • Why is Cfgrid not working for me

    I am using CFMX7
    Why is this not working for me?
    This is Gridtest1.cfm
    <cfoutput>
    <CFFORM align="center" ACTION="gridtest2.cfm"
    METHOD="POST"
    name="getstuff" >
    <cfinput type="HIDDEN" name="ID" value="#form.id#" >
    <cfinput type="HIDDEN" name="customerno"
    value="#form.customerno#"
    >
    <cfgrid name="Mygrid" width="960" query="getpermits"
    gridlines =
    "yes" rowheaders="yes"
    selectmode = "edit" height="350" >
    <cfgridcolumn name="id" bgcolor="##FFFFFF" header="ID"
    display="yes" WIDTH="40" select="no">
    <cfgridcolumn name="permitno" bgcolor="##FFFFFF"
    header="Permit
    No" display="yes" width="70" select="yes">
    <cfgridcolumn name="sortorder" bgcolor="##FFFFFF"
    header="SortOrder" display="yes" WIDTH="62" select="yes">
    </cfgrid>
    <div align="center">
    <cfINPUT TYPE="submit" VALUE="Save My Changes"
    NAME="savemychanges"
    >
    </div>
    </cfform>
    </cfoutput>
    This is GridTest2.cfm
    Form fields:
    <cfoutput>[#form.fieldnames#]</cfoutput>
    Form values:
    <cfloop list="#form.fieldnames#"
    index="idx"><cfoutput>#idx# =
    #Evaluate(idx)#</cfoutput>
    </cfloop>
    <cfif isdefined ("form.savemychanges")>
    <cfgridupdate grid="mygrid" datasource = "divwt"
    tablename =
    "tankerpermits" keyonly="yes" >
    </cfif>
    <cfoutput>
    form.#__CFGRID__GETSTUFF__MYGRID#.original.#permitno#
    </cfoutput>
    Output from TestGrid2.cfm reflects a �funny
    looking� grid name and I
    can see in the output that Permitno is definitely a defined
    field.
    Form fields:
    [ID,CUSTOMERNO,SAVEMYCHANGES,__CFGRID__GETSTUFF__MYGRID]
    Form values:
    ID = 13
    CUSTOMERNO = 21691
    SAVEMYCHANGES = Save My Changes
    __CFGRID__GETSTUFF__MYGRID = __CFGRID__EDIT__=3 id N Permitno
    Y
    sortorder Y 1 U 571 z
    Element __CFGRID__GETSTUFF__MYGRID.ORIGINAL.PERMITNO is
    undefined in
    FORM.
    The error occurred in
    C:\cmudintranet\Purple\divwt\bftankertruck\gridtest2.cfm:
    line 147
    #form.__CFGRID__GETSTUFF__MYGRID.original.permitno#
    Thanks in Advance

    Lorna, be careful. This could cause your comments
    to stop working. Blog comments are
    sensitive..................
    .......... Lorna says ................................................
    Allyson, your precaution comes on the heels of me realizing that if I put a song on a blog summary page, then I will have to edit the .js file every time I add a blog entry.
    Whereas MassReplaceIt could solve the problem there, the added issue of problems with comments is enough to make me stay away, so that is what I will do: No music within 250' of the blog guy.
    Lorna in Southern California

  • CFGRIDCOLUMN VALUES Not Working

    I would like my editable CFGRID to display a list in some of
    the CFGRIDCOLUMN's. I have been unsuccessful at displaying values
    for user selection when using the values attribute. Any ideas out
    there? thx
    <cfformgroup type="page" label="Vision">
    <cfgrid name="gridVision"
    query="Vision"
    insert="no"
    delete="no"
    rowheaders="no"
    selectmode="edit"
    height="100">
    <cfgridcolumn select="no" name="visionTestID"
    display="no">
    <cfgridcolumn select="yes" name="enterDate"
    header="Screening Date" width="100">
    <cfgridcolumn select="yes" name="TestType" header="Test Type"
    values="Instaline, Blackbirds">
    <cfgridcolumn select="yes" name="TestNumber">
    <cfgridcolumn select="yes" name="Glasses" header="Glasses"
    values="Tested With, Lost-Broken, Forgotten">
    <cfgridcolumn select="yes" name="BothEyes" header="Both
    Eyes Result">
    <cfgridcolumn select="yes" name="LeftEye" header="Left Eye
    Result">
    <cfgridcolumn select="yes" name="RightEye" header="Right
    Eye Result">
    <cfgridcolumn select="yes" name="Result" header="Pass or
    Fail">
    <cfgridcolumn select="yes" name="visionReferral"
    type="boolean" header="Referral">
    <cfgridcolumn select="yes" name="ScreenerID"
    header="ScreenerID">
    </cfgrid>

    If you are using flash form. This is how I would do it. The
    value does not work because it's a title for the grid.
    <cfform format="Flash" name="Vision" height="250"
    width="1000" preservedata="yes" style="marginTop: 0;
    background-color:##CCCCCC;">
    <cfformgroup type="horizontal">
    <cfgrid name="VisionGrid" query="Vision" format="Flash"
    rowheaders="No" autowidth="yes" onchange="for (var i:Number = 0;
    i<Glasses.length; i++) {if (Glasses.getItemAt(
    ).data == VisionGrid.selectedItem.Glasses) Glasses.selectedIndex
    = i}">
    <cfgridcolumn select="no" name="visionTestID"
    display="no">
    <cfgridcolumn select="yes" name="enterDate"
    header="Screening Date" width="100">
    <cfgridcolumn select="yes" name="TestType" header="Test
    Type" values="Instaline, Blackbirds" width="100" >
    <cfgridcolumn select="yes" name="TestNumber"
    width="100">
    <cfgridcolumn select="yes" name="Glasses"
    header="Glasses" values="Tested With, Lost-Broken, Forgotten"
    width="100">
    <cfgridcolumn select="yes" name="BothEyes" header="Both
    Eyes Result" width="100">
    <cfgridcolumn select="yes" name="LeftEye" header="Left
    Eye Result" width="100">
    <cfgridcolumn select="yes" name="RightEye" header="Right
    Eye Result" width="100">
    <cfgridcolumn select="yes" name="Result" header="Pass or
    Fail" width="100">
    <cfgridcolumn select="yes" name="visionReferral"
    type="boolean" header="Referral" width="100">
    <cfgridcolumn select="yes" name="ScreenerID"
    header="ScreenerID" width="100">
    </cfgrid>
    </cfformgroup>
    <cfformgroup type="horizontal">
    <cfformitem type="text" width="75">Test
    Number:</cfformitem>
    <cfinput type="text" name="TestNumber" width="170"
    bind="{VisionGrid.dataProvider[VisionGrid.selectedIndex]['TestNumber']}"
    onChange="VisionGrid.dataProvider.editField(VisionGrid.selectedIndex,
    'TestNumber', TestNumber.text);"/>
    </cfformgroup>
    <cfformgroup type="horizontal">
    <cfformitem type="text"
    width="75">Glasses:</cfformitem>
    <cfselect name="Glasses" width="170" size="1"
    onchange="VisionGrid.dataProvider.editField(VisionGrid.selectedIndex,
    'Glasses', Glasses.selectedItem.data);">
    <option value="Tested Withmin">Tested
    With</option>
    <option value="Lost-Broken">Lost-Broken</option>
    <option value="Forgotten">Forgotten</option>
    </cfselect>
    </cfformgroup>
    </cfform>

  • 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

  • WHY YOU SHOULD NOT USE SKYPE (and where to file co...

    Approximately two weeks ago, my account was blocked for no apparent reason. I contacted customer support and they didn't know why it was blocked, but told me to go through the account verification process. I asked to speak to someone on the phone to

  • How can I see my software update history?

    Hi guys I just wonder how can I see my system software update history? on Lion we can see in Preferences/Sofware Updates/History but Mountain Lion we dont see to same place?

  • Is my iPhone's warranty still active ? I had a little accident.

    Hello guys. I have a problem with Siri not listening (after some searching I found out that apple will replace my iphone for this problem), but recently I dropped my phone and I cracked the glass in the upper right corner (about a 0.15in crack - almo

  • Adobe InDesign is shutting down. A serious error...

    Please Help me! Last night I was working on a file when the power went out. My no break didn't work (I wonder why!!!) and I didn't have time to save and shut down my mac. When the power came back and I started my computer and InDesign, I tried to ope

  • Position of iconified JInternalFrame window

    Hi, I am attempting to "memorize" the position of a JInternalFrame window when it is iconified. However, if I use the standard getX(), getY(), getWidth() and getHeight() calls, it returns the original position of the JInternalFrame, as if it was deic