Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: View a list of Data including checkbox

From: rotenca:telvia:it at: 1-Apr-2003 15:32

Hi,
> >Would it be possible to have in REBOL a list of data > >with one checkbox per row, where we can check and > >uncheck directly in the list ? > > I'm not aware of such a beast, and I had the same need > recently.
check-data: reduce [true false true] view layout[ list [ origin 2x2 check [ poke check-data face/user-data value print mold check-data ] ] supply [ face/show?: if count <= length? check-data [ face/data: check-data/:count face/user-data: count true ] ] ] --- Ciao Romano