Smalltalk PropertyGrid available?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

Smalltalk PropertyGrid available?

Gruenewald, Tom




Hello,
I am looking for a PropertyGrid like it exists in the .NET Framework. Does
a similar component exist in the Smalltalk world? As parcel or third party
product?

If you don't have any idea what I am talking about, follow that link.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndotnet/html/usingpropgrid.asp

Thanks,
Tom Grünewald

Reply | Threaded
Open this post in threaded view
|

RE: Smalltalk PropertyGrid available?

Steven Kelly
> From: Gruenewald, Tom [mailto:[hidden email]]
> I am looking for a PropertyGrid like it exists in the .NET Framework.
Does
> a similar component exist in the Smalltalk world? As parcel or third
party
> product?
>
> If you don't have any idea what I am talking about, follow that link.
> http://msdn.microsoft.com/library/default.asp?url=/library/en-
> us/dndotnet/html/usingpropgrid.asp

We use a DataSet for that. It doesn't have quite as many features (e.g.
no + and - buttons on the left for hiding several rows at a time), and
is rather slow and poorly implemented, but it does the job.

I think at some point the Aragon widget set (in contributed\Aragon)
allowed combining its TreeView with its DataSet, but either I was
imagining things, it was never finished, or it got removed.

Steve

Reply | Threaded
Open this post in threaded view
|

Re: Smalltalk PropertyGrid available?

Dave Stevenson-2
And Pollock, the major rewrite of our widgets and gui system, will
replace Dataset with Grid.  Pollock is currently shipped in 'preview'
status.

Dave

Steven Kelly wrote:

>> From: Gruenewald, Tom [mailto:[hidden email]]
>> I am looking for a PropertyGrid like it exists in the .NET Framework.
> Does
>> a similar component exist in the Smalltalk world? As parcel or third
> party
>> product?
>>
>> If you don't have any idea what I am talking about, follow that link.
>> http://msdn.microsoft.com/library/default.asp?url=/library/en-
>> us/dndotnet/html/usingpropgrid.asp
>
> We use a DataSet for that. It doesn't have quite as many features (e.g.
> no + and - buttons on the left for hiding several rows at a time), and
> is rather slow and poorly implemented, but it does the job.
>
> I think at some point the Aragon widget set (in contributed\Aragon)
> allowed combining its TreeView with its DataSet, but either I was
> imagining things, it was never finished, or it got removed.
>
> Steve
>
>

Reply | Threaded
Open this post in threaded view
|

RE: Smalltalk PropertyGrid available?

Terry Raymond
In reply to this post by Steven Kelly
Steve

The TreeView still works in the DataSet. Load the parcels
including the example parcel. Open example browser and start
up the NDS file browser. It uses a treeview inside of a dataset.

Terry
 
===========================================================
Terry Raymond       Smalltalk Professional Debug Package
Crafted Smalltalk
80 Lazywood Ln.
Tiverton, RI  02878
(401) 624-4517      [hidden email]
<http://www.craftedsmalltalk.com>
===========================================================

> -----Original Message-----
> From: Steven Kelly [mailto:[hidden email]]
> Sent: Friday, July 28, 2006 10:33 AM
> To: Gruenewald, Tom; VW NC
> Subject: RE: Smalltalk PropertyGrid available?
>
> > From: Gruenewald, Tom [mailto:[hidden email]]
> > I am looking for a PropertyGrid like it exists in the .NET Framework.
> Does
> > a similar component exist in the Smalltalk world? As parcel or third
> party
> > product?
> >
> > If you don't have any idea what I am talking about, follow that link.
> > http://msdn.microsoft.com/library/default.asp?url=/library/en-
> > us/dndotnet/html/usingpropgrid.asp
>
> We use a DataSet for that. It doesn't have quite as many features (e.g.
> no + and - buttons on the left for hiding several rows at a time), and
> is rather slow and poorly implemented, but it does the job.
>
> I think at some point the Aragon widget set (in contributed\Aragon)
> allowed combining its TreeView with its DataSet, but either I was
> imagining things, it was never finished, or it got removed.
>
> Steve

Reply | Threaded
Open this post in threaded view
|

RE: Smalltalk PropertyGrid available?

Steven Kelly
In reply to this post by Gruenewald, Tom
Ah, of course, this is Smalltalk: don't read the documentation, just
load the code :-). Thanks Terry!

Steve

> From: Terry Raymond [mailto:[hidden email]]
>
> The TreeView still works in the DataSet. Load the parcels
> including the example parcel. Open example browser and start
> up the NDS file browser. It uses a treeview inside of a dataset.
>
> Terry
>
> > -----Original Message-----
> > From: Steven Kelly [mailto:[hidden email]]
> > Sent: Friday, July 28, 2006 10:33 AM
> > To: Gruenewald, Tom; VW NC
> > Subject: RE: Smalltalk PropertyGrid available?
> >
> > > From: Gruenewald, Tom [mailto:[hidden email]]
> > > I am looking for a PropertyGrid like it exists in the .NET
Framework.
> > Does
> > > a similar component exist in the Smalltalk world? As parcel or
third
> > party
> > > product?
> > >
> > > If you don't have any idea what I am talking about, follow that
link.
> > > http://msdn.microsoft.com/library/default.asp?url=/library/en-
> > > us/dndotnet/html/usingpropgrid.asp
> >
> > We use a DataSet for that. It doesn't have quite as many features
(e.g.
> > no + and - buttons on the left for hiding several rows at a time),
and
> > is rather slow and poorly implemented, but it does the job.
> >
> > I think at some point the Aragon widget set (in contributed\Aragon)
> > allowed combining its TreeView with its DataSet, but either I was
> > imagining things, it was never finished, or it got removed.
> >
> > Steve