[Bug 6834] add more number bases to form inputs?

http://www.w3.org/Bugs/Public/show_bug.cgi?id=6834





--- Comment #3 from Philip Taylor <excors@gmail.com>  2009-04-24 13:43:42 ---
As Lachlan said, you can already do client-side validation with the 'pattern'
attribute, like:
  <input type="text" pattern="[01]+">
  <input type="text" pattern="[0-9a-fA-F]+">
  <input type="text" pattern="0b[01]+|0x[0-9a-fA-F]+">
etc.

Sorting doesn't seem relevant to HTML - that's an issue for the server's
application code or its database, and has nothing to do with HTML form inputs.


-- 
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Friday, 24 April 2009 13:44:03 UTC