Tiny buttons

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

Tiny buttons

keith1y
When looking at the shore components demo with a recent seaside 2.8, I
am getting tiny little buttons, too small to see the text and only just
big enough to click on.

Example, in the "standard dialogs" demo, the non-live dialogs work fine,
but the live dialogs show this strangeness.

I was also seeing this in some other components of mine.

Come to think of it, in my components the buttons were being drawn in a
scriptaculous style updateOn; method

Any clues?

Keith
_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Tiny buttons

Pavel Krivanek-2
Hi Keith,

that seems to be a problem in Seaside. It creates invalid(?)  tag
button instead of <input type="button">

Cheers
-- Pavel

On 7/26/07, Keith Hodges <[hidden email]> wrote:

> When looking at the shore components demo with a recent seaside 2.8, I
> am getting tiny little buttons, too small to see the text and only just
> big enough to click on.
>
> Example, in the "standard dialogs" demo, the non-live dialogs work fine,
> but the live dialogs show this strangeness.
>
> I was also seeing this in some other components of mine.
>
> Come to think of it, in my components the buttons were being drawn in a
> scriptaculous style updateOn; method
>
> Any clues?
>
> Keith
>
_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Re: Tiny buttons

Philippe Marschall
2007/7/27, Pavel Krivanek <[hidden email]>:
> Hi Keith,
>
> that seems to be a problem in Seaside. It creates invalid(?)  tag
> button instead of <input type="button">

Could you come up with an easy way to reproduce it?

Philippe

> Cheers
> -- Pavel
>
> On 7/26/07, Keith Hodges <[hidden email]> wrote:
> > When looking at the shore components demo with a recent seaside 2.8, I
> > am getting tiny little buttons, too small to see the text and only just
> > big enough to click on.
> >
> > Example, in the "standard dialogs" demo, the non-live dialogs work fine,
> > but the live dialogs show this strangeness.
> >
> > I was also seeing this in some other components of mine.
> >
> > Come to think of it, in my components the buttons were being drawn in a
> > scriptaculous style updateOn; method
> >
> > Any clues?
> >
> > Keith
> >
> _______________________________________________
> Seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Re: Tiny buttons

Pavel Krivanek-2
simply try this code:

        html form with: [
                html submitButton text: 'Done'.
                html button text: 'done' ]

for fix change
WAButtonTag >> type

^ 'button'

and remove WAButtonTag >> tag

it should start to work

Chees
-- Pavel

On 7/27/07, Philippe Marschall <[hidden email]> wrote:

> 2007/7/27, Pavel Krivanek <[hidden email]>:
> > Hi Keith,
> >
> > that seems to be a problem in Seaside. It creates invalid(?)  tag
> > button instead of <input type="button">
>
> Could you come up with an easy way to reproduce it?
>
> Philippe
>
> > Cheers
> > -- Pavel
> >
> > On 7/26/07, Keith Hodges <[hidden email]> wrote:
> > > When looking at the shore components demo with a recent seaside 2.8, I
> > > am getting tiny little buttons, too small to see the text and only just
> > > big enough to click on.
> > >
> > > Example, in the "standard dialogs" demo, the non-live dialogs work fine,
> > > but the live dialogs show this strangeness.
> > >
> > > I was also seeing this in some other components of mine.
> > >
> > > Come to think of it, in my components the buttons were being drawn in a
> > > scriptaculous style updateOn; method
> > >
> > > Any clues?
> > >
> > > Keith
> > >
> > _______________________________________________
> > Seaside mailing list
> > [hidden email]
> > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
> >
> _______________________________________________
> Seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: Re: Tiny buttons

Philippe Marschall
2007/7/27, Pavel Krivanek <[hidden email]>:

> simply try this code:
>
>         html form with: [
>                 html submitButton text: 'Done'.
>                 html button text: 'done' ]
>
> for fix change
> WAButtonTag >> type
>
> ^ 'button'
>
> and remove WAButtonTag >> tag

No, that would make WAButtonTag a synonym of WASubmitButtonTag which it is not:
http://www.w3.org/TR/html4/interact/forms.html#h-17.5

Cheers
Philippe

> it should start to work
>
> Chees
> -- Pavel
>
> On 7/27/07, Philippe Marschall <[hidden email]> wrote:
> > 2007/7/27, Pavel Krivanek <[hidden email]>:
> > > Hi Keith,
> > >
> > > that seems to be a problem in Seaside. It creates invalid(?)  tag
> > > button instead of <input type="button">
> >
> > Could you come up with an easy way to reproduce it?
> >
> > Philippe
> >
> > > Cheers
> > > -- Pavel
> > >
> > > On 7/26/07, Keith Hodges <[hidden email]> wrote:
> > > > When looking at the shore components demo with a recent seaside 2.8, I
> > > > am getting tiny little buttons, too small to see the text and only just
> > > > big enough to click on.
> > > >
> > > > Example, in the "standard dialogs" demo, the non-live dialogs work fine,
> > > > but the live dialogs show this strangeness.
> > > >
> > > > I was also seeing this in some other components of mine.
> > > >
> > > > Come to think of it, in my components the buttons were being drawn in a
> > > > scriptaculous style updateOn; method
> > > >
> > > > Any clues?
> > > >
> > > > Keith
> > > >
> > > _______________________________________________
> > > Seaside mailing list
> > > [hidden email]
> > > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
> > >
> > _______________________________________________
> > Seaside mailing list
> > [hidden email]
> > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
> >
> _______________________________________________
> Seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
_______________________________________________
Seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside