1170件ヒット
[201-300件を表示]
(0.134秒)
ライブラリ
- ビルトイン (60)
-
cgi
/ html (252) -
irb
/ context (24) -
irb
/ input-method (180) - logger (24)
-
rdoc
/ markup (36) - rss (456)
-
rubygems
/ package / tar _ input (72) -
shell
/ builtin-command (12) -
shell
/ filter (12) -
shell
/ system-command (6) - win32ole (24)
- zlib (12)
クラス
-
Encoding
:: Converter (48) -
Encoding
:: InvalidByteSequenceError (12) -
Gem
:: Package :: TarInput (72) -
IRB
:: Context (24) -
IRB
:: FileInputMethod (24) -
IRB
:: InputMethod (36) -
IRB
:: ReadlineInputMethod (60) -
IRB
:: StdioInputMethod (60) - Logger (24)
-
RDoc
:: Markup (36) -
RSS
:: Maker :: RSSBase (12) -
RSS
:: Maker :: TextinputBase (96) -
RSS
:: RDF (24) -
RSS
:: RDF :: Channel (24) -
RSS
:: RDF :: Channel :: Textinput (24) -
RSS
:: RDF :: Textinput (144) -
RSS
:: Rss (12) -
RSS
:: Rss :: Channel (24) -
RSS
:: Rss :: Channel :: TextInput (96) -
Shell
:: AppendFile (6) -
Shell
:: AppendIO (6) -
Shell
:: Filter (12) -
Shell
:: SystemCommand (6) -
WIN32OLE
_ PARAM (24) -
Zlib
:: GzipFile :: Error (12)
モジュール
-
CGI
:: HtmlExtension (252)
キーワード
- about (12)
- about= (12)
-
add
_ html (12) -
add
_ special (12) -
add
_ word _ pair (12) - checkbox (24)
-
checkbox
_ group (24) - close (12)
- date (12)
- date= (12)
- debug (24)
- description (36)
- description= (36)
- each (12)
- encoding (36)
- eof? (24)
-
extract
_ entry (12) -
file
_ field (12) -
file
_ input? (12) -
file
_ name (12) - gets (48)
- hidden (24)
-
incomplete
_ input? (12) - input= (24)
- input? (12)
- io (12)
- line (24)
- link (36)
- link= (36)
-
load
_ gemspec (12) - name (36)
- name= (36)
- output? (12)
-
password
_ field (24) -
primitive
_ convert (48) -
radio
_ group (24) -
readable
_ atfer _ eof? (36) - reset (24)
- resource (12)
- resource= (12)
- submit (24)
- textInput (12)
- textInput= (12)
-
text
_ field (24) - textinput (48)
- textinput= (24)
- title (36)
- title= (36)
-
zipped
_ stream (12)
検索結果
先頭5件
-
RSS
:: RDF :: Textinput # about= (12101.0) -
@todo
@todo -
RSS
:: RDF :: Channel :: Textinput # resource (9101.0) -
@todo
@todo -
RSS
:: RDF :: Channel :: Textinput # resource= (9101.0) -
@todo
@todo -
CGI
:: HtmlExtension # image _ button(attributes) -> String (6226.0) -
タイプが image の input 要素を生成します。
...タイプが image の input 要素を生成します。
@param attributes 属性をハッシュで指定します。
例:
image_button({ "SRC" => "url", "ALT" => "string" })
# <INPUT TYPE="image" SRC="url" ALT="string">... -
CGI
:: HtmlExtension # radio _ button(attributes) -> String (6226.0) -
タイプが radio である input 要素を生成します。
...タイプが radio である input 要素を生成します。
@param attributes 属性をハッシュで指定します。
例:
radio_button({ "NAME" => "name", "VALUE" => "value", "ID" => "foo" })
# <INPUT TYPE="radio" NAME="name" VALUE="value" ID="foo">... -
CGI
:: HtmlExtension # checkbox _ group(name = "" , *values) -> String (6186.0) -
タイプが checkbox である input 要素のグループを生成します。
...heckbox である input 要素のグループを生成します。
生成される input 要素の name 属性はすべて同じになり、
それぞれの input 要素の後ろにはラベルが続きます。
@param name name 属性の値を指定します。
@param values value 属性のリ......の場合、value 属性の値とラベルに同じものが使用されます。
それぞれの引数が、二要素または三要素の配列の場合、最終要素が true であれば、
checked 属性をセットします。先頭の要素は value 属性の値に......checkbox_group("name", "foo", "bar", "baz")
# <INPUT TYPE="checkbox" NAME="name" VALUE="foo">foo
# <INPUT TYPE="checkbox" NAME="name" VALUE="bar">bar
# <INPUT TYPE="checkbox" NAME="name" VALUE="baz">baz
checkbox_group("name", ["foo"], ["bar", true], "baz")
# <INPUT TYPE="checkbo... -
CGI
:: HtmlExtension # radio _ group(name = "" , *values) -> String (6186.0) -
タイプが radio である input 要素のリストを生成します。
...radio である input 要素のリストを生成します。
生成される input 要素の name 属性はすべて同じになり、
それぞれの input 要素の後ろにはラベルが続きます。
@param name name 属性の値を指定します。
@param values value 属性のリスト......の場合、value 属性の値とラベルに同じものが使用されます。
それぞれの引数が、二要素または三要素の配列の場合、最終要素が true であれば、
checked 属性をセットします。先頭の要素は value 属性の値に......_group("name", "foo", "bar", "baz")
# <INPUT TYPE="radio" NAME="name" VALUE="foo">foo
# <INPUT TYPE="radio" NAME="name" VALUE="bar">bar
# <INPUT TYPE="radio" NAME="name" VALUE="baz">baz
radio_group("name", ["foo"], ["bar", true], "baz")
# <INPUT TYPE="radio" NAME="name" VALUE="f... -
CGI
:: HtmlExtension # checkbox _ group(attributes) -> String (6141.0) -
タイプが checkbox である input 要素のグループを生成します。
...x である input 要素のグループを生成します。
生成される input 要素の name 属性はすべて同じになり、
それぞれの input 要素の後ろにはラベルが続きます。
@param attributes 属性をハッシュで指定します。
例:
checkbox_group({ "NAME"......=> "name",
"VALUES" => ["foo", "bar", "baz"] })
checkbox_group({ "NAME" => "name",
"VALUES" => [["foo"], ["bar", true], "baz"] })
checkbox_group({ "NAME" => "name",
"VALUES" => [["1", "Foo"], ["2", "Bar", true], "Baz"] })... -
CGI
:: HtmlExtension # radio _ group(attributes) -> String (6141.0) -
タイプが radio である input 要素のリストを生成します。
...adio である input 要素のリストを生成します。
生成される input 要素の name 属性はすべて同じになり、
それぞれの input 要素の後ろにはラベルが続きます。
@param attributes 属性をハッシュで指定します。
例:
radio_group({ "NAME" =>......"name",
"VALUES" => ["foo", "bar", "baz"] })
radio_group({ "NAME" => "name",
"VALUES" => [["foo"], ["bar", true], "baz"] })
radio_group({ "NAME" => "name",
"VALUES" => [["1", "Foo"], ["2", "Bar", true], "Baz"] })...