Flash CFGRID Skipping Every Third Column

I can't figure out why this is doing this... I have a cfform that contains a cfgrid. When I make that cfgrid an applet, all my columns show up just fine, and as I expect them to. However, I like the flash form a lot better, so I converted my code to flash. But when I converted to flash, suddenly every third column shows up as blank. If I set the colum to select="yes" and I select that area, suddenly I see the right values with a bunch of leading spaces. Below is the code. I have tried everything imaginable to get this to work but it just is not happening. Any help is greatly appreciated:
    <cfgrid name="cartItems"  width="800" selectMode="edit" delete="yes" deletebutton="Update Cart"  rowheaders="no">
        <cfgridcolumn name="quant" header="Quantity" select="no" type="numeric">
        <cfgridcolumn name="itemName" header="Item Name" select="no" type="string_nocase" >
        <cfgridcolumn name="itemDescription" header="Item Description" dataalign="center" select="true" type="string_nocase">
        <cfgridcolumn name="itemPrice" header="Item Price" select="no" type="currency">   
        <cfgridcolumn name="totalPrice" header="Total" select="no" type="currency">
        <cfif isCurrency>
            <cfgridcolumn name="currencyNeeded" header="Cost in #currencyName#" type="numeric">
        </cfif>
        <cfgridcolumn name="checked" header="Delete" type="boolean" width="46" select="yes" >         
        <cfloop index="i" from="1" to="#ListLen(offerName)#">
            <cfif NOT isCurrency>
                    <cfgridrow data="#ListGetAt(quant, i)#, #ListGetAt(offerName, i)#,
                                    #ListGetAt(offerDescription, i)#,
                                    #ListGetAt(price, i) * ListGetAt(quant, i)#,
                                    #ListGetAt(price, i)#">
            <cfelse>
                <cfset currencyRequired = currencyPerDollar * #ListGetAt(price, i)#>
                <cfgridrow data="#ListGetAt(quant, i)#, #ListGetAt(offerName, i)#,
                                    #ListGetAt(offerDescription, i)#, #ListGetAt(price, i)#,
                                    #ListGetAt(price, i) * ListGetAt(quant, i)#,
                                    #currencyRequired#">
            </cfif>           
        </cfloop>       
        </cfgrid>
Here is what I get in when the form is set to Flash:
As you can see, I am missing item description.
I have another verision that runs based on a <cfif>. When that one runs, I get the following:
Notice that it's always the third colum that is being truncated. However, if I select the cell, the values are really there... they are just not showing up.
Can someone please help with this? I really appreciate any instruction you can give.
Al

Thanks again. After reading some more Oracle chapters and using EM I scheduled an immediate full backup and selected the options that deleted the archived logs from disk after they are successfully backed up; and deleted obsolete backups. This cleared the \ArchiveLog directory from 25GB to around 150MB. However the full backup of databases totalling 9GB came to 20GB..I am not sure if this is correct..
More background info:
I'm not a DBA and don't have a DB background but I am responsible for the server infrastructure so do need to ensure that we have a good backup/recovery strategy.
This is the only Oracle server we have and is quite small scale at present.
We do not use a tape backup system. Instead we use a hard disk based backup, Evault. Using its proprietry technology it in effect gives us a 'full' physical backup each evening across our WAN.
With SQL I have backup strategy for each database that means that an SQL .dmp file is created each evening and based upon our evening backup strategy means that we get another level of version control should we need to recover.
I would like a similar type solution here:
- To have a once weekly full backup ie) Friday evening. The remaining 6 evenings are incremental. The backups will be directed to the server hard drive.
- To have a retention period of 31 days
We will also have the additional version control from the server backup. Does this sound a reasonable strategy?
Is this achievable through EM using the scheduled backup option?
Thanks, MJ

Similar Messages

  • How to export every second or every third image out of lightroom?

    Hi,
    I have collected 30000 photos from a WebCam and I would like to make a time lapse. Pictures are taken every 15 Minutes and they are in sequence order (00001...00002...etc). I actually dont need them all for the time lapse and would like to export only lets say every third or every fourth picture. How can I do this with Lightroom?
    Thx for your help,
    Felix

    Hi thx for your help,
    I have now come to complete different solution. Because I am renaming all files before the import to Lightroom (with vRenamer, cool programm), I have found a little terminal command (extremly fast) which does exactly what I want (I just googled that, so not my credit):
    mkdir -p ~/Desktop/NewFolder ; IFS="\n" ; find ~/Desktop/TestFiles -type f | sort -f | while read ; do scp "${REPLY}" ~/Desktop/NewFolder/ ; read ; read ;  done
    Newfolder = the folder in which the nth copies going into
    Testfiles = the source folder
    At the end there ; read ; read  which will skip 2 files. If you wish to skip more files than add more "read" as you like.
    After doing this I got in "NewFolder" something like pic_001 pic_004 pic_007 etc. I than rename the files with vRenamer to get them in sequence 001,002,...etc and essentially import them into lightroom.
    Cheers
    Felix

  • How do I auire data at every third pulse of an external trigger?

    I need to aquire 2048 data points where each one is triggered by the third pulse of an external trigger (TTL). Currently I can aquire 2048 data points where each is triggered by every pulse of an external trigger but I need to be able to do this at every third trigger pulse. It seems that I can't do this simply by entering "2" into the "skip count" input of the "Additional Trig Parameters' input of the "AI Start" VI. My attempt is in the VI titled TriggerScanA.
    Further more I will need to know the actual trigger scan rate for data analysis. This is also prooving difficult since even when I am triggering off every external trigger pulse the actual scan rate only returns zeros. My attempt is i
    n the VI entitled TriggerScanB.
    Thankyou.
    Attachments:
    Trigger_Scan_VI's.llb ‏211 KB

    Greetings,
    This sounds like an interesting application. I would suggest that you use your external pulse train as a scan clock, not as a start trigger. Furthermore, since you want to acquire data every third pulse, you will need to use one of your device's counters to divide-down this signal. To accomplish this task, you will need to configure the counter for pulse train generation with an external source - your external pulse train. You will then need to choose the correct "raw counts" to generate a pulse train with a frequency that is 1/3 of that of your external signal. I would suggest that you examine the example Generate Pulse Train (DAQ-STC).vi for this purpose. Now, you can perform a finite analog input acquisition of 2048 data points u
    sing this pulse train as your scan clock. Finally, to determine the frequency of your scan clock, you will need to us your device's other counter to perform a frequency measurement of either pulse train.
    I believe that this will be your best approach to accomplishing this task. Good luck with your application.
    Spencer S.

  • Flash CFGRID Rows

    Is there a way to limit the number of rows on a Flash CFGRID?
    The maxrows attribute just limits the number of data rows to
    display, not the number of rows on the grid. The grid's always show
    7 rows, whether there is data or not, but I want to shorten
    that.

    I can't help with the flash grid, but the html grid problem
    can be solved with a custom column renderer
    http://blog.cutterscrossing.com/index.cfm/2007/11/30/CF8-Ajax-Grid-Renderers-and-Events
    Check out the above link and instead of an image replace with
    a check box.
    Ken

  • Flash CFgrid Limitations?

    Hey Guys-
    I have a situation that I'm a little confused with. I have a
    Flash-based CFGrid, populated with a query. This query, I added a
    null/empty column to and use that to display a checkbox for each
    row. This works fine. I use the checkboxes to select what rows will
    be sent to the next page for some processing.
    The problem I am having is, when you submit, only 8 rows are
    sent on to the next page. Even if you select more than 8
    checkboxes. Now, if I change the grid format to HTML, it sends on
    more than 8 no problem.
    The issue with an HTML grid is the column that holds the
    checkboxes doesn't display a checkbox unless you double click on
    the cell, so it's not apparent what is in that field.
    Anyone know what the limitations are on the flash cfgrid for
    sending this sort of data on? How can I figure this out???
    Thanks!

    I can't help with the flash grid, but the html grid problem
    can be solved with a custom column renderer
    http://blog.cutterscrossing.com/index.cfm/2007/11/30/CF8-Ajax-Grid-Renderers-and-Events
    Check out the above link and instead of an image replace with
    a check box.
    Ken

  • I installed firefox beta 5 and flash crashed on every page so i reverted back to firefox 4 and now flash crashes on every page of firefox 4. how can i fix it?

    Ever since i installed firefox 5 beta and the new version of flash, flash crashes on every page with flash on it no matter what version of firefox i run, and flash wont let me roll back to another version. I need flash for my work which is due by the end of the day so any help yall can offer is appreciated.

    well i fixed this for a bit by reinstalling ff4 and restarting but now the firefox 4 that i re-downloaded continues to very aggressively update itself to 5 beta without asking me. it just notifies me once its done it telling me to restart and once i close firefox, boom. flash crashes every minute or so and freezes my computer. I love firefox. i have used it for years. but if no one can help with this problem or at least tell me how to stop firefox 4 from updating to firefox beta 5 im gonna go download something else because im losing money fighting with firefox to get my work done which is now taking 10 times longer to complete. i really want to keep using firefox but this is kinda ridiculous guys... I understand that betas have bugs but dont make me use it without asking me first...

  • I can not download latest version of adobe flash it quits every time I try to open it.

    I can not download latest version of adobe flash it quits every time I try to open it.

    Try this: Adobe Flash Player 12.0.0.70.

  • HT5978 How do I schedule an event every third day?

    I cannot seem to be able to schedule an event to reoccur every third day in calendar. How can I do this?

    Hi,
    Create an event in Calendar and from the edit window of the event select Repeat > Custom > Daily > Every 3 days.
    Best wishes
    John M

  • How do I enter a calendar event in my iPhone 4 iOS5 that repeats every third Thursday?

    How do I enter a calendar event in my iPhone 4 iOS5 that repeats every third Thursday?

    If you have Outlook 2007 on your computer you can set up the event to repeat every third Thursday on a calendar on your computer within Outlook. Then sync your iPhone with Outlook on your computer using iTunes.

  • Inserting a flash photo gallery in a column

    Hi
    I usually work with frames but I now started a new site using
    the default HTML 2 columns template. One of the columns will hold
    my main content. I'm trying insert a flash photo gallery in the
    column but this gallery (SimpleViewer) has its own index.html file.
    Is this possible and how can I do it?
    Thanks!

    Hi Anthony:
    Have you tried simply applying iMovie's 'Flash" effect to the slug?
    Sue

  • Audio not working / Video flashes to black every ~5 seconds

    Hi. For some reason, when we turn on our TV as of late, every channel is having this issue where upon turning on, the video will flash to black every 5 seconds or so, and there is no audio. The only thing that solves the problem is unplugging and replugging in the STB (Motorola QIP7232-2). 
    I've replaced the HDMI cable with a new one. No dice. 
    Netflix via the X360 works without a hitch, so it's not the TV. 
    Scanning for repair/errors on the STB comes back with no issues detected.
    Any reason why this is happening, and is anyone else experiencing this? 

    Ed_Krayer wrote:
    I am having the same issue. Unplugging and repowering on resolve the issue, also disconnecting and reconnecting the HDMI cable fixes it. Output from the 7232 goes to a Sony Google TV device. I also have DirecTV and never had this issue. Seems like an HDMI switching problem. Is there an easier way to reset the 7232 than just unplugging it? Or - better yet - what's the cause and how do I resolve?
    Here are some troubleshooting steps you can try on your own for the problematic STB.
    From your FiOS TV remote, go to:
    Menu -- Customer Support -- In Home Agent -- Reboot STB
    Menu -- Customer Support -- In Home Agent -- Set Top Box Auto-Correction

  • Subscribe to Photoshop CC for photographers but keeps saying my trial has expired. Both Photoshop and lightroom. Smetimes this happens 3 times in one day or perhaps every  third day. When I open either package I get a message saying that I have 00 days le

    Both Photoshop and Lightroom exhibit the same error. Sometimes this happens 3 times in one day or perhaps every  third day. When I open either package I get a message saying that I have 00 days left in the trial and to continue I need to purchase a licence or start a trail. If I click on purchase a Licence the once I log in with Adobe ID I can get started. I have contacted Adobe chat support 6 times. They suggest deleting an opm.db  file and assure me that this will sort the problem and within 24 hours back to square one

    Here it happens only with photoshop cc 2014. i just deleped opm.db i will check again tomorrow.

  • Get data every 2 columns at a time in excel

    i would like to read the following excel file
    and plot every 2 columns at one time given an interval. for example at
    7 am i ll plot corresponding I and V and at 8 am so on.. but even
    though i programmed my VI to read by increasing index 0,2,4 so on it
    stops when it iterates half way i.e i=12..this only plots half the
    data..im reading from delimited text file..how can i read from a true
    xls file and plot all the data as desired?
    Attachments:
    table.xls ‏18 KB
    table mode.vi ‏23 KB

    Duplicate Post

  • How can I add an event to my calendar that occurs every third day...I have an ipad.

    How can I add an event to my calendar that occurs every third day?

    Do you happen to have a Mac?  If so, and if you use iCloud to sync your calendars, you can do that on your Mac and your iPad will understand.  But you cannot create such a repitition (or something like the third Tuesday of each month) on your iPad.
    In Calendar on your Mac, you would create the event, choose "Custom ..." as the repitition frequency, then choose "Days" and choose every 3 days.

  • I have a sony bravia, trying to get netflix to stream through my iPad, but only getting flashes of pic every few seconds...am i doing or not doing something?

    I have a sony Bravia, and am trying to stream netflix through my iPad. have the AV and HDMI hooked up, but only getting flashes of pic every few seconds....no picture while movie is playing on netflix...???

    The poster said: AV and HDMI
    bhazel wrote:
    what cord are you using to connect with your tv

Maybe you are looking for

  • Adobe Acrobat XI Pro on cloned PCs

    We have this problem: We installed Acrobat XI Pro on our master-pc using the serial-number of our volume-license and started it, everything seemed to be ok, then we cloned the pc, changed the the IP-address and hostname on the new, cloned pc. All the

  • OTL: Changing the rotation plan name

    Hi All, Is there any impact for changing the names of rotation plans, work plans, and shifts, noting that the rotation plan is assigned already for many assignments? thanks,

  • To know abt customer

    hi frntz, Is there any column in oracle apps table to determine that the customer is an END USER or TRADERS while I am hav customer id.

  • Convert Video Selection for iPod

    When i click that and i am trying to convert a video from .mpg the sound doesn't stay with the file is there any way to fix that

  • Can I download QuickTime on the IPad and if so how?

    Can you download QuickTime to the IPad and if so how?