Re: [Pharo-users] why do I not see the right text here (seaside)

2019-03-02 Thread Esteban Maringolo
Please apologize my "write in Gmail" syntax errors. The #beFixedHeader was a wrong transcription, it should be #fixedHeader. And the unimplemented method was because of a missing period at the end. It should have been: html render: header. html mdlLayoutContainer: [ self

Re: [Pharo-users] why do I not see the right text here (seaside)

2019-03-02 Thread Roelof Wobben
Op 2-3-2019 om 19:36 schreef Esteban Maringolo: renderContentOn: html html render: header html mdlLayoutContainer: [ self renderPageContentOn: html ] Are you sure. If I do your changes I see these error messages renderContentOn: html     html mdlLayout         beFixedHeader;         with:

Re: [Pharo-users] why do I not see the right text here (seaside)

2019-03-02 Thread Esteban Maringolo
I haven't used MDL before, but moving code around I found that you are not nesting the MDL tags properly. The #mdlLayout must contain all the other elements, including the header. So using your own classes the best way would be to do the following: TBApplicationRootComponent>>renderContentOn:

[Pharo-users] why do I not see the right text here (seaside)

2019-03-02 Thread Roelof Wobben
Hello, I try  to make my first seaside project. But I ran into a problem that I do not see how to solve, The image can be found here : *https://www.dropbox.com/s/8dt7xj1y6na5jog/Paintings.image?dl=0 *and the changes file here : *https://www.dropbox.com/s/dnsslrnpxgy0ha8/Paintings.changes?dl=0