Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 28 Next »

[08:16:17 EST(-0500)] * Justin_o (n=Justin@142.150.154.101) has joined #fluid-work
[09:17:05 EST(-0500)] * jessm (n=Jess@c-76-19-199-61.hsd1.ma.comcast.net) has joined #fluid-work
[09:21:56 EST(-0500)] <jessm> 'morning Bosmon & Justin_o
[09:22:11 EST(-0500)] <Justin_o> good morning
[09:22:46 EST(-0500)] <Justin_o> jessm: hope you had a good thanksgiving
[09:22:58 EST(-0500)] <jessm> Justin_o: i did!
[09:23:36 EST(-0500)] <Justin_o> that's good... did you go shopping on friday?
[09:24:03 EST(-0500)] <jessm> Justin_o: i was doing my best to reinvigorate the global economy – short shopping trip – big sales!
[09:25:29 EST(-0500)] <Justin_o> thank you for doing your part for the global economy (smile)
[09:25:45 EST(-0500)] <Justin_o> I hear that sales are really good
[09:26:14 EST(-0500)] <jessm> Justin_o: yeah, it looked bleak on the streets, but I was in downtown, not in a mall and I think there's going to be a lot of online shopping this year
[09:27:55 EST(-0500)] <Justin_o> very true, online shopping is easier and cheaper
[09:36:00 EST(-0500)] * EricDalquist (n=dalquist@bohemia.doit.wisc.edu) has joined #fluid-work
[09:36:27 EST(-0500)] * anastasiac (n=team@142.150.154.160) has joined #fluid-work
[09:37:00 EST(-0500)] <jessm> 'morning anastasiac – how's Home Depot?!
[09:37:19 EST(-0500)] <anastasiac> 'morning jessm
[09:37:25 EST(-0500)] <anastasiac> Home Depot is getting richer and richer (smile)
[09:37:59 EST(-0500)] <anastasiac> we bough 6 range hoods and 30 feet of countertop
[09:38:05 EST(-0500)] <anastasiac> among other things
[09:38:31 EST(-0500)] <jessm> wow!
[09:38:36 EST(-0500)] <jessm> incredible volume
[09:45:46 EST(-0500)] * clown (n=clown@guiseppi.atrc.utoronto.ca) has joined #fluid-work
[09:48:46 EST(-0500)] * EricDalquist (n=dalquist@bohemia.doit.wisc.edu) has joined #fluid-work
[10:33:12 EST(-0500)] * michelled (n=team@142.150.154.197) has joined #fluid-work
[10:36:25 EST(-0500)] * athena7 (n=athena7@adsl-99-162-190-42.dsl.wlfrct.sbcglobal.net) has joined #fluid-work
[10:55:47 EST(-0500)] * phiggins (n=dante@74.11.156.6) has joined #fluid-work
[11:28:46 EST(-0500)] * lessthanzero (n=FatalRem@CPE001ff342457c-CM001ac352aefc.cpe.net.cable.rogers.com) has joined #fluid-work
[11:35:39 EST(-0500)] * colinclark (n=colin@142.150.154.101) has joined #fluid-work
[12:14:22 EST(-0500)] * phiggins (n=dante@74.11.156.6) has joined #fluid-work
[12:26:00 EST(-0500)] <clown> anyone: okay, I'm too lazy to look it up: what is the difference between the CSS selector [foo=bar] and [foo~=bar]? if you know off the top of your head, thanks in advance.
[12:29:58 EST(-0500)] * ecochran (n=ecochran@dhcp-169-229-212-28.LIPS.Berkeley.EDU) has joined #fluid-work
[12:34:15 EST(-0500)] <clown> well, i'm no longer lazy and looked up the answer. [foo=bar] means "attribute value for 'foo' exactly matches 'bar'", whereas [foo~=bar] means "attribute value for 'foo' contains 'bar'".
[12:34:54 EST(-0500)] <clown> eg. [foo=bar] will match <div for="bar" ...>
[12:35:30 EST(-0500)] <clown> eg. [foo~=bar] will match <div foo="snafu bar baz" ...>
[12:57:07 EST(-0500)] * phiggins (n=dante@74.11.156.6) has joined #fluid-work
[13:45:28 EST(-0500)] * apetro (n=apetro@74.11.156.6) has joined #fluid-work
[14:09:38 EST(-0500)] * michelled (n=team@142.150.154.197) has left #fluid-work
[14:11:47 EST(-0500)] * phiggins (n=dante@c-71-229-123-70.hsd1.fl.comcast.net) has joined #fluid-work
[16:29:18 EST(-0500)] <athena7> colin last week you'd linked me to an implementation of refresh(): http://fluid.pastebin.com/m3cfadb30
[16:29:31 EST(-0500)] <colinclark> athena7: Yep. Did it work for you?
[16:29:37 EST(-0500)] <athena7> do i need to copy that code into my javascript, or is the refresh method already available using that code?
[16:30:38 EST(-0500)] <athena7> i wasn't quite sure what to do with it when i got around to testing
[16:31:46 EST(-0500)] <colinclark> That method was added to Reorderer in Infusion 0.5, if I remember correctly.
[16:32:01 EST(-0500)] <colinclark> So you can just invoke it whenever you've modified the DOM.
[16:32:10 EST(-0500)] <athena7> hm, ok
[16:32:18 EST(-0500)] <athena7> it didn't seem to be working
[16:32:24 EST(-0500)] <colinclark> Interesting.
[16:32:40 EST(-0500)] <athena7> i'll try it again though
[16:32:49 EST(-0500)] <colinclark> Give it a shot. Let me know if it doesn't work.
[16:32:50 EST(-0500)] <athena7> so i'd just want to call "reorderer.refresh();"?
[16:33:02 EST(-0500)] <colinclark> It's an instance method...
[16:33:13 EST(-0500)] <colinclark> so if you init your Reorderer like this:
[16:33:22 EST(-0500)] <colinclark> var myReorderer = fluid.reorderLayout(...);
[16:33:29 EST(-0500)] <colinclark> You'll call myReorderer.refresh();
[16:33:58 EST(-0500)] <athena7> ok
[16:34:33 EST(-0500)] <athena7> nope, not getting it to work
[16:34:34 EST(-0500)] <athena7> hm.
[16:35:08 EST(-0500)] <athena7> is it likely to matter that we're using the columns/modules properties to set up the reorderer?
[16:35:26 EST(-0500)] <colinclark> I don't think so, no.
[16:35:42 EST(-0500)] <colinclark> Do you have a URL to uPortal trunk where it's being initialized?
[16:36:24 EST(-0500)] <athena7> the code itself? http://fluid.pastebin.com/m4f468bf7
[16:36:36 EST(-0500)] <colinclark> awesome
[16:36:42 EST(-0500)] <colinclark> That should do it.
[16:36:48 EST(-0500)] <colinclark> reorderer.refresh() whenever the DOM changes.
[16:37:33 EST(-0500)] <athena7> ok
[16:37:48 EST(-0500)] <athena7> so i tried calling that when a new column is added to the layout
[16:37:57 EST(-0500)] <athena7> and it is being called presumably, since the debug statement after it prints out
[16:38:09 EST(-0500)] <athena7> but i still can't drag anything into the new column
[16:38:46 EST(-0500)] <athena7> i double checked and the new column does have a class of "portal-page-column-inner"
[16:39:08 EST(-0500)] <athena7> any debugging steps you'd recommend?
[16:54:19 EST(-0500)] <colinclark> athena7: Sorry, missed your questions.
[16:54:22 EST(-0500)] <colinclark> let me catch up
[16:54:30 EST(-0500)] <athena7> sure (smile)
[17:40:44 EST(-0500)] * clown (n=clown@guiseppi.atrc.utoronto.ca) has left #fluid-work
[17:41:46 EST(-0500)] * jessm (n=Jess@c-76-19-199-61.hsd1.ma.comcast.net) has joined #fluid-work
[18:02:44 EST(-0500)] * phiggins (n=dante@c-71-229-123-70.hsd1.fl.comcast.net) has joined #fluid-work
[18:49:29 EST(-0500)] * Everett (n=Mirc4Lif@fctnnbsc16w-156034216002.pppoe-dynamic.nb.aliant.net) has joined #fluid-work
[18:56:07 EST(-0500)] * Everett (n=Mirc4Lif@fctnnbsc16w-156034216002.pppoe-dynamic.nb.aliant.net) has joined #fluid-work

  • No labels