echo-list Mailing List for Echo (Page 7)
Brought to you by:
tliebeck
You can subscribe to this list here.
2002 |
Jan
|
Feb
(1) |
Mar
(33) |
Apr
(59) |
May
(69) |
Jun
(65) |
Jul
(67) |
Aug
(100) |
Sep
(80) |
Oct
(82) |
Nov
(90) |
Dec
(78) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(86) |
Feb
(69) |
Mar
(127) |
Apr
(72) |
May
(110) |
Jun
(117) |
Jul
(71) |
Aug
(75) |
Sep
(90) |
Oct
(47) |
Nov
(23) |
Dec
(24) |
2004 |
Jan
(3) |
Feb
(42) |
Mar
(25) |
Apr
(11) |
May
(3) |
Jun
(2) |
Jul
(9) |
Aug
(5) |
Sep
|
Oct
(1) |
Nov
|
Dec
|
2005 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
(3) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Lendvai A. <Att...@ne...> - 2003-11-11 17:08:53
|
hi, there's no getWindow() method in Component. is is simply not yet added, or there's some decision behind this? a while getParent loop can return the correct answer... should i send a patch? or cvs up? :) thanks, 101 |
From: Georg S. <geo...@we...> - 2003-11-02 08:13:41
|
You can suspend the application using the ServerContext. You can fetch the ServerContext through the echoInstance.getAttribute(SERVER=5FCONTEXT) or so (have no java here) There is an example in the Echo-Tutorial application and there is an ExitB= utton in EchoPoint that you also can use to suspend your application see: http://echopoint.sourceforge.net/ExtraArticles/FAQ.html=20 (topic: Q. How can I link to another web page or servlet=3F) Best regards, Georg "davout" <da...@ds...> schrieb am 01.11.03 20:32:33: In a multi-window/pane echo application what's the best way of recording a= window/application context so that when a user starts a subsequent session= I can return them to point where they left off=3F ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive=3F Does it help you create better code=3F SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F Echo-list mailing list Ech...@li... https://lists.sourceforge.net/lists/listinfo/echo-list =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F Mit der Grupppen-SMS von WEB.DE FreeMail k=F6nnen Sie eine SMS an alle=20 Freunde gleichzeitig schicken: http://freemail.web.de/features/=3Fmc=3D021179 |
From: davout <da...@ds...> - 2003-11-01 19:29:01
|
In a multi-window/pane echo application what's the best way of recording a window/application context so that when a user starts a subsequent session I can return them to point where they left off? |
From: Tod L. <tli...@ne...> - 2003-11-01 01:32:49
|
Hi Michael, Not-quite-so-simple answer... The Echo project was started on September 25, 2001 (a few months before it became an SF project). There were 0.1 through 0.5 versions, which should be available in CVS (though I'd not recommend using them :)). I developed two Echo-like products previously, the first being an experiment to see if some of the more unusual ideas worked (I think that was late 1999, though I could be off on that), and the second was a practical implementation that was not publicly released. I did a few page-based frameworks in the years prior to the first Echo-like framework, although these were also only used internally. Best regards --Tod Liebeck NextApp, Inc. On Fri, 2003-10-31 at 07:42, Kelleher, Michael wrote: > How long has Echo been around. The archives say 0.6 came out in > 2/20/2002, but was it around before then? > > +---------------------------------+ > | Michael J. Kelleher | > | Application Technical Specialist| > | Nielsen Media Research | > | 813-366-4321 | > +---------------------------------+ > > |
From: Kelleher, M. <Mic...@Ni...> - 2003-10-31 15:42:37
|
How long has Echo been around. The archives say 0.6 came out in 2/20/2002, but was it around before then? +---------------------------------+ | Michael J. Kelleher | | Application Technical Specialist| | Nielsen Media Research | | 813-366-4321 | +---------------------------------+ |
From: <Bra...@ca...> - 2003-10-30 02:34:19
|
There is a number of documents on how to write a UI peer. That said you should also have a good look at the Echo and echoPoint source code, where you will find a number of component with full UI peer support. http://www.nextapp.com/products/echo/components/tutorial/ http://www.nextapp.com/products/echo/doc/white_paper.html http://www.nextapp.com/products/echo/doc/hltov/ http://echopoint.sourceforge.net/LinkedArticles/AdvancedComponentCreation.html What you would do depends on how you want the screen/scanner interaction to work. If your app works something like : * Focus on to be scanned field * Scanner scans something * Data is submitted to server to do a look up for scanned data * Focus back on to be scanned field The you could write your own Component and ComponentPeer based on TextField. You would basicall copy the TextFieldUI render() method and provide your own changes. Inside the render() method of you FocusedTextField, the Element that represents the INPUT tag you might do something like : Element element = new Element(ElementNames.INPUT, false); element.addAttribute("type", "text"); element.addAttribute("value", Html.encode(textField.getText(), Html.NEWLINE_TO_SPACE)); element.addAttribute("tabindex","1"); This will set the tabindex of the ONPUT HTML tag and hence get focus when the field is displayed. You could also do something like: String id = this.getId().toString(); rc.getDocument().addScript("document.getElementById('"+id+"').focus();", HtmlDocument.EVENT_ONLOAD); Which will run the JavaScript at document "onload" and will set the focus() to the element idetnified by the peer ID. Please note that this "quick" design only works where ONE field is to get the focus per server interaction. We will have to wait for Echo 1.1 to have a defined TabIndex for components. Cheers Brad Baker ---------------------------------------------------------------------------------------- Email : bra...@ca... Mobile: 0418-642-341 ---------------------------------------------------------------------------------------- Grant Smith <grant@marathon- To: Bra...@ca..., ech...@li... man.com> cc: Subject: Re: [Echo-list] Focus 30/10/2003 11:22 AM On Wednesday 29 October 2003 02:14 pm, Bra...@ca... wrote: > As of Echo 1.0 you cant (via the API). The new v1.1 in the works has this > on the list of planned features. That would be great. We're using Echo for an interface to a keyboard-connected scanner. The only way I could get the correct focus was by programming the scanner to send a bunch of TAB characters on each read. The TABs forced the web browser to skip over fields I didn't want to have focus. Talk about the tail wagging the dog! Someone mentioned writing a UI Peer (or something ?). Is there any documentation on how to do this, or do I have to basically work it out from the sources ? > > Cheers > Brad Baker > --------------------------------------------------------------------------- >------------- > > Email : bra...@ca... > Mobile: 0418-642-341 > --------------------------------------------------------------------------- >------------- > > > > > > Reitsam Andreas > <And...@Si...> To: > "Echo-List (E-Mail)" <ech...@li...> Sent by: > cc: > ech...@li...ur Subject: > [Echo-list] Focus ceforge.net > > > 30/10/2003 01:14 AM > > > > > Hello. > > how do I a set the focus to an text component? > > thx, > > andreas > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Echo-list mailing list > Ech...@li... > https://lists.sourceforge.net/lists/listinfo/echo-list > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Echo-list mailing list > Ech...@li... > https://lists.sourceforge.net/lists/listinfo/echo-list |
From: Grant S. <gr...@ma...> - 2003-10-30 00:22:43
|
On Wednesday 29 October 2003 02:14 pm, Bra...@ca... wrote: > As of Echo 1.0 you cant (via the API). The new v1.1 in the works has this > on the list of planned features. That would be great. We're using Echo for an interface to a keyboard-connected scanner. The only way I could get the correct focus was by programming the scanner to send a bunch of TAB characters on each read. The TABs forced the web browser to skip over fields I didn't want to have focus. Talk about the tail wagging the dog! Someone mentioned writing a UI Peer (or something ?). Is there any documentation on how to do this, or do I have to basically work it out from the sources ? > > Cheers > Brad Baker > --------------------------------------------------------------------------- >------------- > > Email : bra...@ca... > Mobile: 0418-642-341 > --------------------------------------------------------------------------- >------------- > > > > > > Reitsam Andreas > <And...@Si...> To: > "Echo-List (E-Mail)" <ech...@li...> Sent by: > cc: > ech...@li...ur Subject: > [Echo-list] Focus ceforge.net > > > 30/10/2003 01:14 AM > > > > > Hello. > > how do I a set the focus to an text component? > > thx, > > andreas > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Echo-list mailing list > Ech...@li... > https://lists.sourceforge.net/lists/listinfo/echo-list > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Echo-list mailing list > Ech...@li... > https://lists.sourceforge.net/lists/listinfo/echo-list |
From: <Bra...@ca...> - 2003-10-29 22:23:27
|
As of Echo 1.0 you cant (via the API). The new v1.1 in the works has this on the list of planned features. Cheers Brad Baker ---------------------------------------------------------------------------------------- Email : bra...@ca... Mobile: 0418-642-341 ---------------------------------------------------------------------------------------- Reitsam Andreas <And...@Si...> To: "Echo-List (E-Mail)" <ech...@li...> Sent by: cc: ech...@li...ur Subject: [Echo-list] Focus ceforge.net 30/10/2003 01:14 AM Hello. how do I a set the focus to an text component? thx, andreas ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Echo-list mailing list Ech...@li... https://lists.sourceforge.net/lists/listinfo/echo-list |
From: Reitsam A. <And...@Si...> - 2003-10-29 14:14:55
|
Hello. how do I a set the focus to an text component? thx, andreas |
From: <Bra...@ca...> - 2003-10-26 23:32:17
|
Form the subject header here you imply that EchoPoint has a performance problem in style sheet generation. Just to clarify which "components" are responsible for what, I think you are talking about the base Echo support for generating CSS entries NOT the EchoPoiint support of the "CSS-like" syntax for setting component visual properties. When Echo renders a component (or more correctly its peer renders the component) the visual properties are collected in ComponentStyle objects. There are then rendered into CSS style entries via a page level <STYLE> tag. Echo will "remove" duplicate entries here so that if 2 or more components use exactly the same CSS values, then they will be morphed into one entry. The reason Echo puts the STYLE entries into the page and not a "cached" CSS file, is to ensure that components that "change visual properties" are reflected next time the page is rendered. Using a page level approach means that components are always visually "up to date". One could envisage a scheme where an "extra CSS service" was employed per pane that contained CSS entries and was marked dirty when they changed. This would be up to NextApp to implement in the base Echo class library. For the record EchoPoint has a CSS-like syntax for setting visual properties (in fact any bean property as of v0.8). You can do something like : Label { background : #ffccdd; icon : image('images/icon1.gif'); } and this will set the background and icon properties. While this is made to look like CSS, this IS NOT how Echo renders the components on the browser. The EchoPoint CSS support simply uses Style objects and Component.applyStyle() to set component visual properties. For more information see http://echopoint.sourceforge.net/LinkedArticles/CascadingStyleSheets.html Cheers Brad Baker ---------------------------------------------------------------------------------------- Email : bra...@ca... Mobile: 0418-642-341 ---------------------------------------------------------------------------------------- Srinivas Pavani <sp...@ya...> To: ech...@li... Sent by: cc: ech...@li...ur Subject: [Echo-list] Echopoint Stylesheet performance ceforge.net 25/10/2003 02:51 AM Please respond to scpavani I was wondering if there is anyway to improve the performance by caching the stylesheet info instead of sending it back and forth. When I copy and see the size of contents between <style> tags, it is about 7Kb. If this text is cached on the initial load, then it is 7K less data to transport. __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: The SF.net Donation Program. Do you like what SourceForge.net is doing for the Open Source Community? Make a contribution, and help us add new features and functionality. Click here: http://sourceforge.net/donate/ _______________________________________________ Echo-list mailing list Ech...@li... https://lists.sourceforge.net/lists/listinfo/echo-list |
From: Mark S. <msa...@be...> - 2003-10-26 03:37:09
|
If I want a page (ContentPane) to automatically scroll to a certain point in the page (such as a very long page), how do I do this? For example, I have a form with multiple textfields. If there is an error in one field, I want to have an error appear above the textfield when the user hits submit. But I want to page to scroll to the location where the error is displayed. |
From: Srinivas P. <sp...@ya...> - 2003-10-25 01:20:06
|
I was wondering if there is anyway to improve the performance by caching the stylesheet info instead of sending it back and forth. When I copy and see the size of contents between <style> tags, it is about 7Kb. If this text is cached on the initial load, then it is 7K less data to transport. __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Attila H. <haa...@ya...> - 2003-10-23 07:44:50
|
Try with echopoint (http://echopoint.sourceforge.net) component JavaScriptButton which enable to act like any other button but with underline javascript. JavaScriptButton mailTo = new JavaScriptButton(); mailTo.setText("me...@my..."); mailtTo.setScript("window.open('mailto:me...@my...')"); mailTo.setComplexRendering(false); --- "Kelleher, Michael" <Mic...@Ni...> wrote: > What I want is something "like" a Label, but > actually when rendered, gets > rendered as something akin to: > > <A HREF="mailto:me...@my...">My Home Email > Address</A> > > I rolled my own component for this based on the > Label component. But I was > wondering if anyone knew if a component already > exists for this. > > +---------------------------------+ > | Michael J. Kelleher | > | Application Technical Specialist| > | Nielsen Media Research | > +---------------------------------+ > > > __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Georg S. <geo...@we...> - 2003-10-23 06:44:02
|
-----Urspr=FCngliche Nachricht (HTML) wurde als Anlage beigef=FCgt.----- Von: "Kelleher, Michael" <Mic...@Ni...> Gesendet: 22.10.03 20:56:05 An: "Georg Sendt" <geo...@we...> Betreff: Re: [Echo-list] HREF type "button" try MailToLabel-Component. You find it at the forum http://forum.nextapp.com/forum/viewtopic.php=3Ft=3D39 Best regards, Georg =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F Bestes Testergebnis: Stiftung Warentest Doppelsieg fur WEB.DE FreeMail und WEB.DE Club. Nur fuer unsere Nutzer! http://f.web.de/=3Fmc=3D021182 |
From: Srinivas P. <sp...@ya...> - 2003-10-22 21:03:52
|
I use a button and control the look and feel by using a bold|underline font. I am also curious if there are other ways. --- "Kelleher, Michael" <Mic...@Ni...> wrote: > What I want is something "like" a Label, but actually when rendered, gets > rendered as something akin to: > > <A HREF="mailto:me...@my...">My Home Email Address</A> > > I rolled my own component for this based on the Label component. But I was > wondering if anyone knew if a component already exists for this. > > +---------------------------------+ > | Michael J. Kelleher | > | Application Technical Specialist| > | Nielsen Media Research | > +---------------------------------+ > > > __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |
From: Kelleher, M. <Mic...@Ni...> - 2003-10-22 18:51:14
|
What I want is something "like" a Label, but actually when rendered, gets rendered as something akin to: <A HREF="mailto:me...@my...">My Home Email Address</A> I rolled my own component for this based on the Label component. But I was wondering if anyone knew if a component already exists for this. +---------------------------------+ | Michael J. Kelleher | | Application Technical Specialist| | Nielsen Media Research | +---------------------------------+ |
From: John R. <Joh...@th...> - 2003-10-21 20:22:27
|
Have you checked out the echopoint PopUp? John Rayburn Threewide Corporation 304.594.8081 mailto:jra...@th... -----Original Message----- From: Georg Sendt [mailto:geo...@we...]=20 Sent: Monday, October 20, 2003 4:19 PM To: ech...@li... Cc: ech...@li... Subject: [EchoPoint] Component for overlib-Popups I'm currently working on a Component that allows to place=20 html formatted popup informationen boxes on the website. In fact it is a wrapper for the overlib-js-library. For futher information see [http://www.bosrup.com/web/overlib/] Is there anyone working on same task or having it already and is willing to share it? If not, I think I will release the=20 Component next week. Best regards, Georg ________________________________________________________________________ ______ Horoskop, Comics, VIPs, Wetter, Sport und Lotto im WEB.DE Screensaver1.2 Kostenlos downloaden: http://screensaver.web.de/?mc=3D021110 ------------------------------------------------------- This SF.net email is sponsored by OSDN developer relations Here's your chance to show off your extensive product knowledge We want to know what you know. Tell us and you have a chance to win $100 http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54 _______________________________________________ Echopoint-list_listnam mailing list Ech...@li... https://lists.sourceforge.net/lists/listinfo/echopoint-list_listnam |
From: Reitsam A. <And...@Si...> - 2003-10-21 14:56:15
|
hello! is it possible to protect parts of my echo application using the security constraint in the web.xml descriptor? i'd like to use the isUserInRole method from the ServerContext Interface. thx, Andi |
From: Leonardo P. <lh...@pe...> - 2003-10-21 11:15:45
|
steeven wrote: >Good news, congratulations! > >But I have a question, is echo good enough, is it your dream? > > With a good Visual Page Designer, yes!!! :-) >(...) >For some beginner and old fox, HTML is more easy and popular, so the >Way will be more happy if echo use HTML style. >DIV vs Panel, Pane vs Frame. The user can be very clear to understand >What he/she is doing. Many beginner will ask the same question: what is >Pane and Panel, what's the difference? > > In my opinion, the appealing thing in Echo is the RAD way of doing things, isolating you from the details of HTML/Javascript. I do not think HTML is a good philosofy for programming, so I started to look at something else (I started with Delphi using Intraweb framework, which has the same philosofy as echo and has a Java version too). For those who like to develop using the HTML "way" there is plenty of frameworks available, some of them already standartized. JSP, JSTL, Struts, Velocity, etc...... No need for another one..... Just my 0,02 cents, Leonardo Pasta |
From: Thomas H. L. <th...@tr...> - 2003-10-21 08:57:46
|
I actually find it better to have AWT terms in Echo, than HTML. If the platform would have HTML names one could mistakenly take Echo as something like struts or cocoon - "just another HTML MVC framework". Echo is "Swing for web" - appeals to thick client developers to use Echo instead of jsp/struts - giving them a chance to code in their familiar environment. Just my oppinion naturally, but I would find it very very weird having HTML names for Swing like code structure+components /Thomas tir, 2003-10-21 kl. 04:16 skrev steeven: > Good news, congratulations! >=20 > But I have a question, is echo good enough, is it your dream? >=20 > Echo is more AWT style, few people still using and understand AWT. > For some beginner and old fox, HTML is more easy and popular, so the=20 > Way will be more happy if echo use HTML style.=20 > DIV vs Panel, Pane vs Frame. The user can be very clear to understand > What he/she is doing. Many beginner will ask the same question: what is=20 > Pane and Panel, what's the difference? >=20 > And then, echo components only support the attribute that html can > provide. > What u coding is what u see. >=20 > It will be a great pain to echo perhaps, but it will also make echo > easier for all. >=20 > Best regards, > steeven > -----=E9=82=AE=E4=BB=B6=E5=8E=9F=E4=BB=B6----- > =E5=8F=91=E4=BB=B6=E4=BA=BA: ech...@li... > [mailto:ech...@li...] =E4=BB=A3=E8=A1=A8 Tod Lie= beck > =E5=8F=91=E9=80=81=E6=97=B6=E9=97=B4: 2003=E5=B9=B410=E6=9C=8820=E6=97=A5= 17:48 > =E6=94=B6=E4=BB=B6=E4=BA=BA: ech...@li...; > ech...@li... > =E4=B8=BB=E9=A2=98: [Echo-list] Coming Soon: Visual Tools / IDE Integrati= on for Echo >=20 > Hi all, >=20 > I've got good news about the visual tools and IDE integration everyone > has been asking for: they're on the way. The product, currently under > the working name "EchoStudio", integrates with the Eclipse IDE (or its > derivatives) to provide rapid application development capability for > Echo. It also provides facilities to launch and debug Echo > applications, as well as wizards to create new applications. EchoStudio > will be released as a for-profit commercially-licensed product, but the > APIs to extend it will be open and documented. >=20 > For more info on EchoStudio (and the obligatory screenshots), please > visit the announcement thread in the developer forums: >=20 > http://forum.nextapp.com/forum/viewtopic.php?t=3D116 >=20 > Please direct any discussion at the forum thread. >=20 > Best regards > --Tod Liebeck > NextApp, Inc. >=20 >=20 >=20 >=20 >=20 > ------------------------------------------------------- > This SF.net email sponsored by: Enterprise Linux Forum Conference & Expo > The Event For Linux Datacenter Solutions & Strategies in The Enterprise=20 > Linux in the Boardroom; in the Front Office; & in the Server Room=20 > http://www.enterpriselinuxforum.com > _______________________________________________ > Echo-list mailing list > Ech...@li... > https://lists.sourceforge.net/lists/listinfo/echo-list >=20 >=20 >=20 > ------------------------------------------------------- > This SF.net email is sponsored by OSDN developer relations > Here's your chance to show off your extensive product knowledge > We want to know what you know. Tell us and you have a chance to win $100 > http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54 > _______________________________________________ > Echo-list mailing list > Ech...@li... > https://lists.sourceforge.net/lists/listinfo/echo-list |
From: Ciaran J. <Cia...@te...> - 2003-10-21 08:52:21
|
Hi, i've noticed this too, you'll find its only in a mozilla based browser ;) In IE it works perfectly, to get around this I usually have to wrap it in another component and turn the scrollable stuff on or off depending on the number of rows in the table, not ideal, but works well enough to hide the effect, i've some example code lying around somewhere if you want it. -ciaran -----Original Message----- From: Srinivas Pavani [mailto:sp...@ya...] Sent: 21 October 2003 00:24 To: ech...@li... Subject: [Echo-list] Potential bug - SortableTable/SelectableTable.setHeight Brad, I have taken your input and now set the height for SortableTable. What I find is that the table row scrolls properly only if there are more rows than display height. However, if you have only one row of data, then the single row expands to fill the entire table height. - Srinivas __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by OSDN developer relations Here's your chance to show off your extensive product knowledge We want to know what you know. Tell us and you have a chance to win $100 http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54 _______________________________________________ Echo-list mailing list Ech...@li... https://lists.sourceforge.net/lists/listinfo/echo-list ******************************************** Any opinions expressed in this email are those of the individual and not necessarily the Company. This email and any files transmitted with it, including replies and forwarded copies (which may contain alterations) subsequently transmitted from the company, are confidential and solely for the use of the intended recipient. If you are not the intended recipient or the person responsible for delivering to the intended recipient, be advised that you have received this email in error and that any use is strictly prohibited. If you have received this email in error please notify the IT Dept. via email to IT....@Te..., including a copy of the message. Please then delete this email and destroy any copies of it. ********************************************* |
From: Georg S. <geo...@we...> - 2003-10-21 02:58:27
|
I'm currently working on a Component that allows to place html formatted popup informationen boxes on the website. In fact it is a wrapper for the overlib-js-library. For futher information see [http://www.bosrup.com/web/overlib/] Is there anyone working on same task or having it already and is willing to share it? If not, I think I will release the Component next week. Best regards, Georg ______________________________________________________________________________ Horoskop, Comics, VIPs, Wetter, Sport und Lotto im WEB.DE Screensaver1.2 Kostenlos downloaden: http://screensaver.web.de/?mc=021110 |
From: steeven <st...@de...> - 2003-10-21 02:51:11
|
Good news, congratulations! But I have a question, is echo good enough, is it your dream? Echo is more AWT style, few people still using and understand AWT. For some beginner and old fox, HTML is more easy and popular, so the=20 Way will be more happy if echo use HTML style.=20 DIV vs Panel, Pane vs Frame. The user can be very clear to understand What he/she is doing. Many beginner will ask the same question: what is=20 Pane and Panel, what's the difference? And then, echo components only support the attribute that html can provide. What u coding is what u see. It will be a great pain to echo perhaps, but it will also make echo easier for all. Best regards, steeven -----=D3=CA=BC=FE=D4=AD=BC=FE----- =B7=A2=BC=FE=C8=CB: ech...@li... [mailto:ech...@li...] =B4=FA=B1=ED Tod Liebeck =B7=A2=CB=CD=CA=B1=BC=E4: 2003=C4=EA10=D4=C220=C8=D5 17:48 =CA=D5=BC=FE=C8=CB: ech...@li...; ech...@li... =D6=F7=CC=E2: [Echo-list] Coming Soon: Visual Tools / IDE Integration = for Echo Hi all, I've got good news about the visual tools and IDE integration everyone has been asking for: they're on the way. The product, currently under the working name "EchoStudio", integrates with the Eclipse IDE (or its derivatives) to provide rapid application development capability for Echo. It also provides facilities to launch and debug Echo applications, as well as wizards to create new applications. EchoStudio will be released as a for-profit commercially-licensed product, but the APIs to extend it will be open and documented. For more info on EchoStudio (and the obligatory screenshots), please visit the announcement thread in the developer forums: http://forum.nextapp.com/forum/viewtopic.php?t=3D116 Please direct any discussion at the forum thread. Best regards --Tod Liebeck NextApp, Inc. ------------------------------------------------------- This SF.net email sponsored by: Enterprise Linux Forum Conference & Expo The Event For Linux Datacenter Solutions & Strategies in The Enterprise=20 Linux in the Boardroom; in the Front Office; & in the Server Room=20 http://www.enterpriselinuxforum.com _______________________________________________ Echo-list mailing list Ech...@li... https://lists.sourceforge.net/lists/listinfo/echo-list |
From: <Bra...@ca...> - 2003-10-21 02:51:09
|
Not much I can do about that I am afraid. You cant calculate client side heights in HTML real well, hence you cant know if you have enough rows for a given height factor (is 3 enough, or 10 or 100?). This behaviour of the browser. You might be better to put in your own code hueristic that says "no height if less than 4 rows, otherwise setHeight()" Cheers Brad Baker ---------------------------------------------------------------------------------------- Email : bra...@ca... Mobile: 0418-642-341 ---------------------------------------------------------------------------------------- Srinivas Pavani <sp...@ya...> To: ech...@li... Sent by: cc: ech...@li...ur Subject: [Echo-list] Potential bug - SortableTable/SelectableTable.setHeight ceforge.net 21/10/2003 09:24 AM Please respond to scpavani Brad, I have taken your input and now set the height for SortableTable. What I find is that the table row scrolls properly only if there are more rows than display height. However, if you have only one row of data, then the single row expands to fill the entire table height. - Srinivas __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by OSDN developer relations Here's your chance to show off your extensive product knowledge We want to know what you know. Tell us and you have a chance to win $100 http://www.zoomerang.com/survey.zgi?HRPT1X3RYQNC5V4MLNSV3E54 _______________________________________________ Echo-list mailing list Ech...@li... https://lists.sourceforge.net/lists/listinfo/echo-list |
From: Srinivas P. <sp...@ya...> - 2003-10-21 01:26:14
|
Brad, I have taken your input and now set the height for SortableTable. What I find is that the table row scrolls properly only if there are more rows than display height. However, if you have only one row of data, then the single row expands to fill the entire table height. - Srinivas __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com |