I missed the sneak peaks last night at MAX, but I found an excellent review: Live blogging MAX 2008 sneak peak session. This blog entry puts my live blogging of the keynote to shame! I'll have to look into the tool he used before the next conference. Anyway, pay particular attention to the reveal at the end - server side actionscript.
(This post is more than 2 years old.)
MAX Sneak Peaks
Support this Content!
If you like this content, please consider supporting me. You can become a Patron, visit my Amazon wishlist, or buy me a coffee! Any support helps!
Want to get a copy of every new post? Use the form below to sign up for my newsletter.
Archived Comments
What does the server-side actionscript run on? I don't see any mention of ColdFusion.
No idea, Dan. Sorry.
Ray, have you seen this: I have a cfinput type=checkbox bound to a cfgrid via the grid's bind attribute. The checkbox is supposed to limit the returned recordset via it's value (on or off). Using the ColdFusion AJAX debugger, I see that the value of the checkbox is being passed to the cfc as "on" regardless of whether it is checked or not! Is this some sort of bug?
When you check it off, is the value not passed? Ie, when checked, name=X is passed, when unchecked, name= doesn't exist at all?
Oh I see what you mean. Let me check.
Got it. You bind to the checked param:
foo={foo.checked}
This will pass foo=true or foo=false depending on if the checkbox is checked.
Ray,
He is using a blogging software called coveritlive.
http://www.coveritlive.com/
Thanks for the link.
Thanks Ray! Your solution: foo={foo.checked} worked like a charm!