Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 07-14-2005, 07:07 AM
Marco van Herwaarden Marco van Herwaarden is offline
 
Join Date: Jul 2004
Posts: 25,415
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Create a tri-state checkbox?

Need some advice from a real html/JS guru.

For a hack i am writing i need to use a tri-state checkbex.
A tri-state checkbox is like a normal on/off checkbox, but with a third state 'undefined'. You find this kind of checkboxes mostly in Client/Server software, but i know it can also be done on webpages.

Anybody know how to code that and to make sure it works on all major browsers?
Reply With Quote
  #2  
Old 07-14-2005, 01:41 PM
Princeton's Avatar
Princeton Princeton is offline
 
Join Date: Nov 2001
Location: Vineland, NJ
Posts: 6,693
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I"m not sure what you mean ... but try: http://www.mattkruse.com/javascript/checkboxgroup/

I don't think you should use javascript when you can build a usable interface without it. Plus, it will only cause you more headaches in the long run (more work/more support--on something that was suppose to be an 'extra').

The below info is not for you but for the general public.

CHECKBOX
A checkbox gives the user a choice.
Checkbox options are usually opposites of each other.
If by itself, ticking a checkbox means 'yes' (positive); otherwise, it means 'no' (negative).
A checkbox can be used for selecting multiple options.

Use clear LABELS to define each option. For example, yes/no, subscribe/unsubscribe, on/off

RADIO/DROPDOWN
Used to show multiple options; but the user can only choose one.


Use checkboxes/radio buttons as much as possible. Checkboxes/radio buttons are much friendlier than dropdowns. Use dropdowns only when space is limited. Try to stay away from 'multiple select' dropdowns.
Reply With Quote
  #3  
Old 07-14-2005, 02:36 PM
Marco van Herwaarden Marco van Herwaarden is offline
 
Join Date: Jul 2004
Posts: 25,415
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by princeton
I"m not sure what you mean ... but try: http://www.mattkruse.com/javascript/checkboxgroup/
No that is not what i mean.

Quote:
Originally Posted by princeton
I don't think you should use javascript when you can build a usable interface without it. Plus, it will only cause you more headaches in the long run (more work/more support--on something that was suppose to be an 'extra').
I know and if someone can find me a way to do it without JS, that would be even better.

What i am looking for is somehow described here: http://www.mozilla.org/xpfe/checkboxSpec.html & http://www.mozilla.org/xpfe/xptoolkit/checkboxes.html

What i am trying to build is a search page. On this page i have many yes/no fields, which i would like to be selected with a checkbox.

For a search page you can have however 3 possible options:
- I am looking for rows where the value is 'OFF' for that field.
- I am looking for rows where the value is 'ON' for that field.
- I don't care what the value is for that field.

See my dilemma. I could use a radiogroup, but that would take a lot more space on the UI, and looks less nice.

In Client/Server software you see a lot of times checkboxes that are either Empty (off), Marked (On) or Greyout-Marked (mixed state).
Reply With Quote
  #4  
Old 07-14-2005, 03:09 PM
tamarian tamarian is offline
 
Join Date: Oct 2001
Location: Canada
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

One way to have a 3rd state (without XUL) is by using the DISABLED attribute of the check box. I haven't done it, but I think by turning it on through an event it will grey it out.

When the form is submitted, you will not receive any state for that checkbox, neither on or off since it is not set. But this peice of info can be used to tell it has been disabled, i.e. greyed out.
Reply With Quote
  #5  
Old 07-14-2005, 03:50 PM
Princeton's Avatar
Princeton Princeton is offline
 
Join Date: Nov 2001
Location: Vineland, NJ
Posts: 6,693
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

NOTE: I'm just making assumptions here since I really don't know what you're creating.
Quote:
In Client/Server software you see a lot of times checkboxes that are either Empty (off), Marked (On) or Greyout-Marked (mixed state).
I actually think this is a waste.

It's either 'yes' or 'no'. If it's disabled or not available the answer is 'no'.

Just giving you some ideas:
If I'm creating an interface with many options I would give the user ONLY the YES checkbox (or an 'INCLUDE' List displaying the multiple options with checkbox next to it).

Include:
[] field1
[] field3
[] field5

Quote:
For a search page you can have however 3 possible options:
- I am looking for rows where the value is 'OFF' for that field.
- I am looking for rows where the value is 'ON' for that field.
- I don't care what the value is for that field.
If the user does not care if the field is displayed it is best to assume that they do not want it. (the less data to fetch the quicker the page will display)

If you need to disable a field I would just use disabled="disabled". However, a better solution would be to just leave it out. Less is always better. :up:

NOTE: I do understand that sometimes the disabled="disabled' is necessary for certain interfaces.
Reply With Quote
  #6  
Old 07-14-2005, 04:43 PM
tamarian tamarian is offline
 
Join Date: Oct 2001
Location: Canada
Posts: 1,205
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by princeton
It's either 'yes' or 'no'. If it's disabled or not available the answer is 'no'.
Are you sure about that? Would a disabled checkbox check true for things like isset() and empty(). I think (haven't tested) it will check false for isset(), and in that case, it is a 3rd state.

It may not be intuitive UI-wise, but from a value/state perspective, it is a 3rd state.
Reply With Quote
  #7  
Old 07-14-2005, 04:49 PM
Princeton's Avatar
Princeton Princeton is offline
 
Join Date: Nov 2001
Location: Vineland, NJ
Posts: 6,693
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I would set all checkbox values to integers (0 / 1).

if checked ? TRUE : otherwise FALSE;
Reply With Quote
  #8  
Old 07-14-2005, 05:37 PM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Isn't this is used for the "Quote message in reply" checkbox in Quick Reply ? Could you not see how this does it ?
Reply With Quote
  #9  
Old 07-14-2005, 08:15 PM
Marco van Herwaarden Marco van Herwaarden is offline
 
Join Date: Jul 2004
Posts: 25,415
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by princeton
If the user does not care if the field is displayed it is best to assume that they do not want it. (the less data to fetch the quicker the page will display)
Now that is why i need this. I already said it was for a search page. I will not know if the user wants to search for a certain field until he told me. Any field that he is not searching for (either searching for true or false) can be ommited from the where-clause.
Quote:
Originally Posted by Paul M
Isn't this is used for the "Quote message in reply" checkbox in Quick Reply ? Could you not see how this does it ?
Hmm never noticed it there, will have a look tomorrow.

I will look into some of the suggestions made here tomorrow, but i guess it won't be possible without JS.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 12:04 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.10574 seconds
  • Memory Usage 2,242KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (7)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (9)post_thanks_box
  • (9)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (9)post_thanks_postbit_info
  • (9)postbit
  • (9)postbit_onlinestatus
  • (9)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete