Refreshing a list in Glamour

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

Refreshing a list in Glamour

abergel
Hi!

I am building a small browser in Glamour to monitor events. I have a list such as:

        constructor list
                title: 'events';
                display: [ :event | event allEvents ]

Is there a way to refresh the list once the Glamour GUI has showed up?

Cheers,
Alexandre

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.





_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Refreshing a list in Glamour

EstebanLM
hi,

you can add

updateOn: anAnnouncement from: [ anAnnouncer ]

then, you just send anAnnouncer announce: anAnnouncement

cheers,
Esteban

El 24/11/2011, a las 11:55a.m., Alexandre Bergel escribió:

> Hi!
>
> I am building a small browser in Glamour to monitor events. I have a list such as:
>
> constructor list
> title: 'events';
> display: [ :event | event allEvents ]
>
> Is there a way to refresh the list once the Glamour GUI has showed up?
>
> Cheers,
> Alexandre
>
> --
> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
> Alexandre Bergel  http://www.bergel.eu
> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>
>
>
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Refreshing a list in Glamour

abergel
Thanks!

Alexandre


On 24 Nov 2011, at 12:05, Esteban Lorenzano wrote:

> hi,
>
> you can add
>
> updateOn: anAnnouncement from: [ anAnnouncer ]
>
> then, you just send anAnnouncer announce: anAnnouncement
>
> cheers,
> Esteban
>
> El 24/11/2011, a las 11:55a.m., Alexandre Bergel escribió:
>
>> Hi!
>>
>> I am building a small browser in Glamour to monitor events. I have a list such as:
>>
>> constructor list
>> title: 'events';
>> display: [ :event | event allEvents ]
>>
>> Is there a way to refresh the list once the Glamour GUI has showed up?
>>
>> Cheers,
>> Alexandre
>>
>> --
>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>> Alexandre Bergel  http://www.bergel.eu
>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>
>>
>>
>>
>>
>> _______________________________________________
>> Moose-dev mailing list
>> [hidden email]
>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Refreshing a list in Glamour

Tudor Girba-2
In reply to this post by EstebanLM
Or you can add a manual action that simply calls update. See:
http://www.themoosebook.org/book/internals/glamour/update

Cheers,
Doru


On Thu, Nov 24, 2011 at 4:05 PM, Esteban Lorenzano <[hidden email]> wrote:

> hi,
>
> you can add
>
> updateOn: anAnnouncement from: [ anAnnouncer ]
>
> then, you just send anAnnouncer announce: anAnnouncement
>
> cheers,
> Esteban
>
> El 24/11/2011, a las 11:55a.m., Alexandre Bergel escribió:
>
>> Hi!
>>
>> I am building a small browser in Glamour to monitor events. I have a list such as:
>>
>>       constructor list
>>               title: 'events';
>>               display: [ :event | event allEvents ]
>>
>> Is there a way to refresh the list once the Glamour GUI has showed up?
>>
>> Cheers,
>> Alexandre
>>
>> --
>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>> Alexandre Bergel  http://www.bergel.eu
>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>
>>
>>
>>
>>
>> _______________________________________________
>> Moose-dev mailing list
>> [hidden email]
>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>



--
www.tudorgirba.com
"Every thing has its own flow"

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Refreshing a list in Glamour

abergel
Yep! I should have dived a bit more in the doc before asking.
For the last 3 days I have used MooseChef, Hismo and Glamour. Really pleasant to use.

Cheers,
Alexandre


On 24 Nov 2011, at 12:08, Tudor Girba wrote:

> Or you can add a manual action that simply calls update. See:
> http://www.themoosebook.org/book/internals/glamour/update
>
> Cheers,
> Doru
>
>
> On Thu, Nov 24, 2011 at 4:05 PM, Esteban Lorenzano <[hidden email]> wrote:
>> hi,
>>
>> you can add
>>
>> updateOn: anAnnouncement from: [ anAnnouncer ]
>>
>> then, you just send anAnnouncer announce: anAnnouncement
>>
>> cheers,
>> Esteban
>>
>> El 24/11/2011, a las 11:55a.m., Alexandre Bergel escribió:
>>
>>> Hi!
>>>
>>> I am building a small browser in Glamour to monitor events. I have a list such as:
>>>
>>>       constructor list
>>>               title: 'events';
>>>               display: [ :event | event allEvents ]
>>>
>>> Is there a way to refresh the list once the Glamour GUI has showed up?
>>>
>>> Cheers,
>>> Alexandre
>>>
>>> --
>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>> Alexandre Bergel  http://www.bergel.eu
>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>
>>>
>>>
>>>
>>>
>>> _______________________________________________
>>> Moose-dev mailing list
>>> [hidden email]
>>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>
>>
>> _______________________________________________
>> Moose-dev mailing list
>> [hidden email]
>> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>>
>
>
>
> --
> www.tudorgirba.com
> "Every thing has its own flow"
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.






_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev