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 |
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 |
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 |
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 |
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 |
Free forum by Nabble | Edit this page |