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

Similar Messages

  • 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

  • IN-APP PURCHASE and other flash packager limitations

    Hi,
    I am a mobile developer in a major, if not the biggest game company. We are currently working on a game that needs in-app purchase and that will be multi-platform (IPad, IPhone, Android, Pc, Mac, and Web)
    We considered Flash as a multi-platform/screen development tool but the lack of an in-app purchase feature is a huge problem for us since it’s a key element of our game development strategy..
    My question is: Does anyone know any workaround to make it happen?
    If not: Is this feature planned in the future updates?
    That makes me wonder: Can anyone enumerate the flash packager limitation in terms of features?
    Is it possible to create a module in Objective C that would communicate with a flash packaged game?
    I am very surprised that little information can be found on the web since it’s a very important feature for serious game development.

    Hi sakhaarun,
    Apple allows in-app purchases to be used for products you define within the same app.  In other words, you can sell an upgrade, add-on, or 'full version' for your own app, but you can't sell somebody else's app.  (Have a look on the 'Top-Grossing' list to see some examples- if it's free, it probably has in-app purchase so you can see what you sell.)  If you want to sell somebody else's app, you'd need to join Apple's iTunes affiliate program which is not related to in-app purchases.
    When you enable In-App Purchases with Apple, they are bound to your own application- so another developer cannot access them directly.
    However, if you let me know specifically what you are trying to do, I might be able to make a suggestion. If for instance, you have "My App", and you want to sell an upgrade to "My App Pro", it would make more sense to have just "My App", with an in-app purchase that enables all the "pro" features in the main app.
    Feel free to email me any time if you want to chat more.
    -Alex
    Milkman Games, LLC

  • Flash CFGRID Insert Row Problem

    I think others have posted similar issues, but I've been
    unable to find a resolution to it. I have a Flash grid in an
    Accordion page that I need users to be able to insert data into.
    Most of the time, the grid will be empty when the user enters data.
    I've tried using the picturebar insert button, I've tried using
    onClick="GridData.insertRow(mygrid);". I even tried a fairly
    extensive script that seemed to be a timer that would detect a
    double click to insert. None of these work well. The
    onClick="GridData.insertRow(mygrid);" is the best in that I only
    have to click a column field about 3 times before I can enter data
    in the field. Multiple clicks to activate the field is just not
    useable.

    Hi,
    Thanks for the reply, I have the same problem. The suggestion you gace did not work as it works only for flash grids. I am using an HTML grid.I just want to set a default value of OLST to the Client column. Please help!
    <cfgrid name = "FirstGrid"
    format="html"
    height="320"
    width="580"
    font="Tahoma"
    fontsize="12"
    query = "rsIncidentTypes"
    bgcolor="orange"
    selectmode="edit"
    selectcolor="teal"
    delete="true"
    insert="true"
    insertButton = "Insert a Row"
    deleteButton = "Delete selected row"
    onChange="FirstGrid.dataProvider.editField(FirstGrid.selectedIndex,'Client', 'OLST');"
    >

  • 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

  • Adobe Flash CS6, limited output

    Hi guys,
    I'm manipulating one big chunk of data in flash and I need to trace do quite a serious writing in output panel, but when i look at it is always truncated:
    [... text truncated]
    Any idea how to lift output panel charaketer limitations?
    Thanks

    you're welcome.
    if you don't need every line of output, you could use a modulo operator to output every, for example, 10th line.  that way you get output from beginning to end which is all that's usually needed.
    p.s. you could also try monsterdebugger and try adobe scout to see if they have increased (over flash pro) trace log capacity.

  • Flash Form Limitations

    Hi,
    I'm trying to develop a large number of input in a single
    flash form, the input is a finalcial survey I desinged it into
    different tabs, now I'm in the middle of the survey, when I try to
    add new inputs the form doesn't execute!
    Is there a limitation for the capacity of a flash form?
    The design below is half the details I needed
    http://www.dreamconsultancy.net/proj/chilli/
    Thank you,

    quote:
    Actually I got no error messages
    It's likely that you haven't turned on the Flash Form
    debugging in the Administrator. Check Flash Form Compile Errors and
    Messages and then give the form another shot. There are 64k and 32k
    branch limits which you may hit (you can google the error messages
    for a little more information).
    I've typically refactored by reducing the number of styles in
    the resulting flash output or by reducing the "nestedness" of
    elements inside elements. Of course, switching to Flex provided a
    more permanent solution:)

  • Web - 500 images max? Why are the flash templates limited to 500?

    Is there any reason for limiting the templates to 500? is there a work-around?
    Lorenzo

    > Because nobody should be subjected to
    > such a crazy large slideshow.
    LOL!
    On a more serious note, nobody should be subject to waiting while LR processes and uploads over 2000 images. Even on a fast machine that would take some serious time.
    I have to wonder if LR is the best application for such large numbers of images. I'd suspect there are better programs out there, ones that don't insist on re-rendering the images every time and re-uploading them all. Dreamweaver comes to mind as an obvious choice.
    Should you insist on using LR, possibly consider breaking the images up into galleries. The folks at Theturninggate have some templates that allow you to organize galleries. I haven't used them, so I don't know specifics, but they look like they do some really neat stuff, and they have some automation options to help make it easier.

  • Changing li tag in external fed HTML into Flash

    Hi
    Really simple I hope someone can help me as I cant find any resource on the net that will help and hopefully somone has encountered the same problem.
    Ive got some external HTML text being fed into flash, all I want to do is to edit the <li> tag in the HTML (not CSS) so the bullets sit flush to the left with the rest of the text, thats it! is there something i can put in the HTML that will resolve this such as:
    <li left="-20px">example</li>
    what ive got=
    CS4 AS2
    I proposed a simlar question but maybe i wasnt clear.

    Sudheendra,
    Please provide the link. I don't think it made it into your post.
    Rusrusrus,
    It is a good question. And I look forward to the answer. I struggled with this awhile ago. The default styling of <li> in htmlText is horrendous.
    I believe there is a way to adjust the left margin of the lists with flash's limited css support... but the spacing between the bullet and the text is not adjustable.
    http://flash-reference.icod.de/TextField/StyleSheet.html
    margin-left is probably what you are after.

  • Embed html page into flash

    Hi all,
    i want to load HTML pages into my flash movie when i press a button. is that possible?
    Thanks
    thilsen

    No.  Flash has limited support for html and is not capable of displaying html web pages as content.

  • Flash Album Creator

    After reading some posts it looks like iWeb '08 can support flash by using the HTML snippet feature. The problem is I do not know how to write in flash. Thus, I am looking for a program that will create a SWF of a photo album. I see a lot of programs for Windows but nothing for MACs.
    Please help!

    Apple's Keynote presemtation software in iWork can export a slideshow to Flash (with limited transitions).
    Also to HTML: "Save presentations as interactive slideshows that allow viewer participation. By embedding hyperlinks in next and previous buttons, you can let a viewer move effortlessly through a presentation."
    And: "To reach a wide audience, export your Keynote presentation directly to YouTube, send it to iTunes, or post it on your website with iWeb. Or use GarageBand to include your slides in a video podcast."
    http://www.apple.com/iwork/keynote/#delivery

  • Fireworks/Flash Integration Not Useful

    I’ve begun experimenting with Fireworks and the vaunted
    integration between FW & Flash seems to be mostly hype.
    (I’m speaking of the big deal Adobe makes about it in the CS3
    Video Workshop.) So far I’m finding that the limitations of
    what can be transported through round-trips between the two apps
    render the purported integration largely useless.
    Some of the most useful effects, like those commonly applied
    in the provided Styles, don’t survive the import into Flash.
    E.g., for Plastic Button 009 the Hue/Saturation filter
    doesn’t make it into Flash. Without the HS filter, you
    don’t get any color in Flash.
    And even when the needed visual properties do make it intact,
    the update mechanism doesn’t seem to work. For example, I
    created a new FW file, drew a rounded rectangle and applied the
    Chrome Reflective 006 Style and saved the file. I imported it into
    the Flash library choosing the maintain appearance options. I then
    went back into FW and applied the Chrome Misc 003 style and saved.
    Then, in Flash I right-clicked on the bitmap in the library and
    chose Update but when I clicked the Update button it just said 0 of
    1 items updated and displayed a little question mark. I’ve
    had similar problems importing PSD files/layers into Flash and
    trying to update.
    I tried another test, this time choosing the “keep all
    paths editable” option when importing into Flash. However,
    this lost some of the desired effects and didn’t even provide
    the option to update (grayed out).
    So, as far as I can tell, I have to create each image as a
    separate file in FW and then just import it as a regular GIF or
    JPEG into Flash. FW can still be useful as it provides some nice
    styles, gradients, textures and other features that can help in
    creating web graphics. But integration with Flash seems to be all
    but non-existent. Am I missing something??
    David Salahi

    I love Fireworks + Flash integration, it's what originally
    got me using Fireworks, actually. But there are some bumps that you
    need to be familiar with, as you've found. It also takes some
    understanding of the Flash platform and how it differs from the
    freedoms you get in Fireworks, so hopefully I can help there:
    Filters - Yep, Flash only supports a small subset of filters.
    This might change in the future with the announcement of
    Hydra/Pixel
    Bender, which is really exciting, but for now you are stuck
    with only a few filters in Flash. Open up Flash and get familiar
    with them. And be glad we aren't having this conversation a few
    version ago, when there were no filters at all! Once you are
    familiar with the filters and blendmodes that Flash has, when you
    are working in Fireworks and intend to go to Flash, remember what
    filters you can use. The rest will have to be avoided or flattened
    before importing into Flash. Yes, it's technology limiting your
    creative freedom, I hate that, but if you understand the limits you
    can still push it very far. BTW, Hue/Saturation actually does make
    it from FW to FL for me.
    The Update option is really intended for Bitmaps linked to an
    external bitmap image file, like JPGs or GIFs. When you went to
    update your bitmap you probably noticed that the Path field was
    blank -- this is because Flash doesn't have it linked to an image
    file, and it can't pull it out of a PNG source file. That would be
    a really nice feature, and one I've requested:
    http://adobe.com/go/wish/
    When you choose "keep all paths editable" then all filters
    and effects you used which are not supported in Flash are stripped
    out. There are other features which Fireworks has that Flash does
    not, like pattern/texture fills, some of the gradients, etc. They
    all don't exist in Flash so they don't come through. Again this all
    comes back to understanding what Flash can do, and making sure your
    Fireworks design is compatible.
    Sounds like you had a jarring experience trying to integrate
    between FW and Flash, but the problem is understanding the huge
    difference between what you get on Flash's canvas and Firework's
    canvas. Flash is generally limited. The reason Flash is limited is
    because it's a runtime canvas optimized for web. When you make
    something in Fireworks you have unlimited freedom because in the
    end you'll just export to a static pixel image. But in Flash, you
    are dealing with a whole different beast -- interaction. The Flash
    canvas is rendered at runtime... you can think of the Flash Player
    as fulfilling the role of Fireworks running in the browser, so of
    course it has to be in a much smaller scale.
    Anyway, once you get used to how Flash works and how that
    differs from Fireworks, integration will make a lot more sense. The
    way you describe of exporting each graphic/layer as a separate JPG
    and importing is basically the way it used to have to be done with
    Photoshop, but I definitely recommend trying to get familiar with
    how Flash works and getting a hang of the design to import process
    of Fireworks to Flash.
    In case it helps, here's my workflow of Fireworks to Flash (I
    create a lot of Flash content so this is very battle tested for
    me):
    1) Design in Fireworks, with both knowledge of what Flash can
    do, and a bit of reckless abandon because I'm a designer, I'll make
    it look the way I want even if it takes extra work in Flash ;)
    2) Once the design is final, I create a duplicate Fireworks
    page
    3) I go through my design and make it as Flash compatible as
    possible. This means flattening anything that needs to be
    flattened, sometimes converting text to paths, redoing some
    graphics in vector, etc
    4) Import into Flash
    5) Cleanup anything that didn't come through right. At this
    point it's just small stuff, like dotted strokes come through
    solid, so I have to make them dotted again
    6) Animate or rig up with ActionScript
    7) For small changes, I make my change in Fireworks, then I
    copy/paste only the changed elements back into Flash and replace
    them
    Hope that helps. Good luck!

  • Show a Flash animation frame when opening a Powerpoint presentation

    Hi all,
    I have a Powerpoint presentation that embeds a Flash
    animation (swf file). I use Powerpoint 2003 and a Flash 9
    animation.
    The problem is that when the presentation is opened, no image
    (in fact a frame of the Flash animation) appears on the slide that
    contains the Flash object. Instead, a blank rectangle is displayed.
    To make it appear, I must start the presentation in slide
    show mode (here the animation is playing) and then return to
    'Normal' view. The last animation image is then shown on the slide.
    From now, if I save the presentation, close it and then reopen it,
    no image is shown.
    I have tried with different Flash animation versions and
    noticed that an image is displayed for Flash animation when
    compiled in Flash 7. In a Flash 8 animation, no image appears too.
    It seems that a change since Flash version 8 avoids an image to be
    displayed when opening the Powerpoint presentation.
    Has anyone already met this ? Are there security or other
    changes that will prevent a frame to be displayed when opening the
    presentation ? Any ideas or Internet links will be appreciated.
    Thanks

    Hi Dave and thanks for the answer.
    My embedded movie is playing well when we start the slideshow
    mode for the presentation, because it uses the installed activeX
    component (version 9 installed) to render it.
    My problem is that no image (ie the last movie frame
    displayed before exiting the slide show) is displayed the next time
    the presentation opens, even if the file is saved.
    Did you mean that, because the activeX version is newer than
    the PowerPoint 2003 release date, the PowerPoint application is not
    able to get the image (frame) the next time the presentation opens
    (that is, the image to display is embedded into the activeX at a
    specific location, which has changed between Flash player version 7
    and 8) ?
    PS: 1) I have opened the Flash 8 presentation in PowerPoint
    2007 and an image is shown on the slide, which might confirm that
    PowerPoint 2003 is too old to find the frame to be displayed.
    2) I searched into the in-line/off-line documentation and I
    found no paragraph speaking of the Flash version limitation.
    Let me know if I am right.
    Thanks again for the time taken to answer me.
    Rico

  • Problems with CFGRID

    Ok, here is the scenario:
    I have a flash cfgrid, love it. I then wanted to give the
    user the ability to update the grid without having to open a new
    page with a new form, so I enabled edit. Then, I learnt that you
    cannot user select dropdowns in an flash editable grid, so I
    thought ok, I will have a form below the grid, I can bind the
    fields with the grid, then the user can click on any row they need
    to update, and then submit. CFGRIDUPDATE will then sort through the
    changes and bish bosh, we have a nice solution. However, I then
    learnt you cannot just bind a cfselect in the same way as you can a
    <cfinput. I have search for solutions but with no joy. I have
    two problems I need to fix;
    1) how to prepopulate the <cfselect with the data from the
    selected row, as you do with a cftext
    2) my <cfinput type=date field does not update the grid
    when changed (also, the grid doesn't change when I select a new
    date, but it does change to the previous one if I select a second
    one! weird!)
    Can anyone, please shed any light on this atall please?
    I attach my code and will try and provide as much info as
    possible, thanks in advance
    (Why do i always find a great solution like a flash grid, to
    then hit a brick wall like not being able to bind selects! aaarggh)
    :)

    Ok I did something similar with the HTML cfgrid as I had more
    data that could be visible to edit in the grid itself.
    First create a <cfinput type="hidden"/> for each select
    box with it bound to the grid like a normal text box.
    Second create a function to handle assigning of the hidden
    bound value to the CFSELECT:
    function populateCFSelect(Grid,rowIndex,e){
    var xyz = document.GridForm.hidden_xyz.value;
    document.GridForm.xyz.value = xyz;
    document.GridForm.xyz.text= xyz;
    Third and almost important you need to ad a listener to your
    Grid to run the function not sure if there is something differnet
    with a flash gridb but here is the code for the html grid:
    function init(){ //Build grid toolbars
    grid = ColdFusion.Grid.getGridObject("<NAME OF YOUR
    GRID>");
    grid.addListener("rowclick",populateCFSelect);
    Finally make sure your init() is being called at page
    load....<cfset ajaxOnLoad("init")>
    After you populate your inputs and select boxes you need to
    update your datasource with the changes then refresh your grid to
    show the changes. ColdFusion.Grid.refresh("<NAME OF YOUR
    GRID>");will refresh your grid.

  • Q. Flash player for Safari

    I know that I can get a flash player plugin for Safari on my PC but when is it going to be available for the iphone 3G?
    Not being able to view flash media limits viewing a lot of web sites.

    Not only no flash, but no java either, but guys don't bother wasting your time here, Apple never responds to the enduser's opinion nor requests, they just delete forums which are getting too embarrassing or unwanted, instead of helping the one feeding them,because we are with buying their products, listen, they sold so many iPhones and made sooo much cheese that they will not worry about a couple of hopeless dudes like you and actually open up a platform for "forth-party" programmers such as flash or java game makers, that would totally kill that so far SENSELESS app store.. You know guys, I'll get over no flash support, since it would probably drain the battery even faster, but what I can't understand are the followings below:
    Why can I not set up my exchange on the "revolutionary iPhone"?
    Why doesn't it "just work"?
    Why can't I disable auto-correct in SMS?
    Why is not there a real turn by turn app blaming on safety reasons while having GPS google maps available (which I'm certain is much-more dangerous)?
    Why don't you equip the rev. iphone with stereo bluetooth?
    Why is there no GPRS function?
    Why can't I use my old charger which worked perfectly fine with iphone 1?
    Why can't one insure the iPhone?
    Why can't one communicate through bluetooth?
    Why is there no landscape keyboard for SMS?
    Why is there an apple recognition chip for a/v out (is piracy ok if I use apple dock??)?
    And I could go on and on..

Maybe you are looking for

  • Dboraslib.dll - Error 126 : "The specified module could not be found."

    Hi, After installation XI 3.0 and adapters, the dispatcher(dispwork.exe) is failing to start in a ABAPJ2EE system (web AS 6.40). The dev_disp trace file shows the following error: Please do help to resolve this problem. trc file: "dev_disp", trc leve

  • Inspection lot 04 cancellation

    Hello QM gurus ! In the material master data of my produced material, I have entered an inspection type 04. When I have done my GR on process order, inspection lot 04 has been created (status REL). Now I want to cancel this inspection lot and I don't

  • HT1212 My ipad reads disabled. when i plug it in it tells me i need to put in the passcode but i can't get to that screen. can any buddy help

    I recently purchased an Ipad3 from a friend cause he upgraded. So i set it up and now its reading "ipad is disabled" connect to itunes. I did have a passcode on there and I know password but i can't get into the screen to put it in. can anyone help o

  • Host Command does not come back

    Hi, I have treid to export schema by pressing a button, (form designed in Form10gR2 and excute via Application Server R2. ) For this I have applied one by one these syntaxes 1) host ( 'cmd /C start "" "'|| exp USERID=SYSTEM/MANAGER@ora11 OWNER=scott,

  • Use of Std Price in APO

    Hi All, Please let me know the use of standard price in APO that is updated from R3. Our scenario in APO include DP, CTM, deployment and TLB. We do not run SNP optimizer. As CTM does not recommend based on cost, can std price field be deleted without