Thin Client Select  
Author Message
Roedy Green





PostPosted: 2005-12-29 5:47:00 Top

java-programmer, Thin Client Select What is the equivalent in thin client of selecting a row in a JTable?

Do you have to fake a giant radio form?
--
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.
 
Chris Smith





PostPosted: 2005-12-29 8:17:00 Top

java-programmer >> Thin Client Select Roedy Green <email***@***.com> wrote:
> What is the equivalent in thin client of selecting a row in a JTable?
>
> Do you have to fake a giant radio form?

Define "thin client".

--
www.designacourse.com
The Easiest Way To Train Anyone... Anywhere.

Chris Smith - Lead Software Developer/Technical Trainer
MindIQ Corporation
 
Roedy Green





PostPosted: 2005-12-29 8:54:00 Top

java-programmer >> Thin Client Select On Wed, 28 Dec 2005 17:16:40 -0700, Chris Smith <email***@***.com>
wrote, quoted or indirectly quoted someone who said :

>Roedy Green <email***@***.com> wrote:
>> What is the equivalent in thin client of selecting a row in a JTable?
>>
>> Do you have to fake a giant radio form?
>
>Define "thin client".

AT the client runs a browser but no java and no Javascript. You have
to do everything with vanilla HTML.
--
Canadian Mind Products, Roedy Green.
http://mindprod.com Java custom programming, consulting and coaching.
 
 
Thomas Hawtin





PostPosted: 2005-12-29 18:19:00 Top

java-programmer >> Thin Client Select Roedy Green wrote:
> On Wed, 28 Dec 2005 17:16:40 -0700, Chris Smith <email***@***.com>
> wrote, quoted or indirectly quoted someone who said :
>
>
>>Roedy Green <email***@***.com> wrote:
>>
>>>What is the equivalent in thin client of selecting a row in a JTable?
>>>
>>>Do you have to fake a giant radio form?
>>
>>Define "thin client".
>
>
> AT the client runs a browser but no java and no Javascript. You have
> to do everything with vanilla HTML.

Radio buttons or a link/button per row to load a page with row selected.

Tom Hawtin
--
Unemployed English Java programmer
http://jroller.com/page/tackline/
 
 
David Segall





PostPosted: 2005-12-30 0:13:00 Top

java-programmer >> Thin Client Select Roedy Green <email***@***.com> wrote:

>What is the equivalent in thin client of selecting a row in a JTable?
>
>Do you have to fake a giant radio form?
Usually each row has a check box because multi-select allows the user
to perform operations like deleting several rows with one "Submit". I
guess if your application makes sense only if one row at a time is
selected a radio button is correct.