how can I change the popup?

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

how can I change the popup?

Stéphane Ducasse
hi guys

I would like to remove the namespace in the name


 


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

Screen Shot 2013-09-28 at 5.16.51 PM.pdf (16K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: how can I change the popup?

abergel
Sorry for replying slowly.

You can use "view interaction noPopup". For example:

-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
view shape rectangle size: 40.
view interaction noPopup.
view node: 'Node without popup'.

view shape rectangle size: 40.
view node: 'Node with popup'.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

I am not sure which visualization you are building. Something important, is that the Mondrian builder works well for static visualization. If you plan to have, even a bit of interaction, for example, clicking on a box and it expand to show something else, then the builder is maybe not the best.

Alexandre


On Sep 28, 2013, at 12:17 PM, Stéphane Ducasse <[hidden email]> wrote:

> hi guys
>
> I would like to remove the namespace in the name
>
>
> <Screen Shot 2013-09-28 at 5.16.51 PM.pdf>
>
> Stef_______________________________________________
> 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: how can I change the popup?

Stéphane Ducasse

On Sep 29, 2013, at 2:42 AM, Alexandre Bergel <[hidden email]> wrote:

> Sorry for replying slowly.

no problem
>
> You can use "view interaction noPopup". For example:

but I want to change what is displayed.

>
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> view shape rectangle size: 40.
> view interaction noPopup.
> view node: 'Node without popup'.
>
> view shape rectangle size: 40.
> view node: 'Node with popup'.
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
>
> I am not sure which visualization you are building. Something important, is that the Mondrian builder works well for static visualization. If you plan to have, even a bit of interaction, for example, clicking on a box and it expand to show something else, then the builder is maybe not the best.

ok
I just want to give the idea to the students that code is a living stuff.

>
> Alexandre
>
>
> On Sep 28, 2013, at 12:17 PM, Stéphane Ducasse <[hidden email]> wrote:
>
>> hi guys
>>
>> I would like to remove the namespace in the name
>>
>>
>> <Screen Shot 2013-09-28 at 5.16.51 PM.pdf>
>>
>> Stef_______________________________________________
>> 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


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

Re: how can I change the popup?

Tudor Girba-2
What you need is:

view shape rectangle size: 40.
view interaction popupText: [ :x | 'This is a custom popup for ', x printString ].
view node: 'Node with popup'.


Doru




On Sun, Sep 29, 2013 at 9:13 AM, Stéphane Ducasse <[hidden email]> wrote:

On Sep 29, 2013, at 2:42 AM, Alexandre Bergel <[hidden email]> wrote:

> Sorry for replying slowly.

no problem
>
> You can use "view interaction noPopup". For example:

but I want to change what is displayed.

>
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> view shape rectangle size: 40.
> view interaction noPopup.
> view node: 'Node without popup'.
>
> view shape rectangle size: 40.
> view node: 'Node with popup'.
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
>
> I am not sure which visualization you are building. Something important, is that the Mondrian builder works well for static visualization. If you plan to have, even a bit of interaction, for example, clicking on a box and it expand to show something else, then the builder is maybe not the best.

ok
I just want to give the idea to the students that code is a living stuff.
>
> Alexandre
>
>
> On Sep 28, 2013, at 12:17 PM, Stéphane Ducasse <[hidden email]> wrote:
>
>> hi guys
>>
>> I would like to remove the namespace in the name
>>
>>
>> <Screen Shot 2013-09-28 at 5.16.51 PM.pdf>
>>
>> Stef_______________________________________________
>> 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


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



--

"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: how can I change the popup?

Tudor Girba-2
And if you want to integrate the visualization quickly with the rest of the Moose tools, you can also add:

view shape rectangle size: 40.
view interaction popupText: [ :x | 'This is a custom popup for ', x printString ].
view interaction menu: #mooseMenu.
view node: 'Node with popup'.

... and you will get the Moose menu there.

Doru



On Sun, Sep 29, 2013 at 10:47 AM, Tudor Girba <[hidden email]> wrote:
What you need is:

view shape rectangle size: 40.
view interaction popupText: [ :x | 'This is a custom popup for ', x printString ].
view node: 'Node with popup'.


Doru




On Sun, Sep 29, 2013 at 9:13 AM, Stéphane Ducasse <[hidden email]> wrote:

On Sep 29, 2013, at 2:42 AM, Alexandre Bergel <[hidden email]> wrote:

> Sorry for replying slowly.

no problem
>
> You can use "view interaction noPopup". For example:

but I want to change what is displayed.

>
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> view shape rectangle size: 40.
> view interaction noPopup.
> view node: 'Node without popup'.
>
> view shape rectangle size: 40.
> view node: 'Node with popup'.
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
>
> I am not sure which visualization you are building. Something important, is that the Mondrian builder works well for static visualization. If you plan to have, even a bit of interaction, for example, clicking on a box and it expand to show something else, then the builder is maybe not the best.

ok
I just want to give the idea to the students that code is a living stuff.
>
> Alexandre
>
>
> On Sep 28, 2013, at 12:17 PM, Stéphane Ducasse <[hidden email]> wrote:
>
>> hi guys
>>
>> I would like to remove the namespace in the name
>>
>>
>> <Screen Shot 2013-09-28 at 5.16.51 PM.pdf>
>>
>> Stef_______________________________________________
>> 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


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



--

"Every thing has its own flow"



--

"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: how can I change the popup?

Stéphane Ducasse
In reply to this post by Tudor Girba-2
thanks!

On Sep 29, 2013, at 10:47 AM, Tudor Girba <[hidden email]> wrote:

What you need is:

view shape rectangle size: 40.
view interaction popupText: [ :x | 'This is a custom popup for ', x printString ].
view node: 'Node with popup'.


Doru




On Sun, Sep 29, 2013 at 9:13 AM, Stéphane Ducasse <[hidden email]> wrote:

On Sep 29, 2013, at 2:42 AM, Alexandre Bergel <[hidden email]> wrote:

> Sorry for replying slowly.

no problem
>
> You can use "view interaction noPopup". For example:

but I want to change what is displayed.

>
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
> view shape rectangle size: 40.
> view interaction noPopup.
> view node: 'Node without popup'.
>
> view shape rectangle size: 40.
> view node: 'Node with popup'.
> -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
>
> I am not sure which visualization you are building. Something important, is that the Mondrian builder works well for static visualization. If you plan to have, even a bit of interaction, for example, clicking on a box and it expand to show something else, then the builder is maybe not the best.

ok
I just want to give the idea to the students that code is a living stuff.
>
> Alexandre
>
>
> On Sep 28, 2013, at 12:17 PM, Stéphane Ducasse <[hidden email]> wrote:
>
>> hi guys
>>
>> I would like to remove the namespace in the name
>>
>>
>> <Screen Shot 2013-09-28 at 5.16.51 PM.pdf>
>>
>> Stef_______________________________________________
>> 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


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



--

"Every thing has its own flow"
_______________________________________________
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