rk.XML.radio | R Documentation |
Create XML node "radio" for RKWard plugins
rk.XML.radio( label, options = list(label = c(val = NULL, chk = FALSE, i18n = NULL)), id.name = "auto", help = NULL, component = rk.get.comp(), i18n = NULL )
label |
Character string, a text label for this plugin element. |
options |
A named list with options to choose from. The names of the list elements will become
labels of the options, |
id.name |
Character string, a unique ID for this plugin element.
If |
help |
Character string or list of character values and XiMpLe nodes,
will be used as the |
component |
Character string,
name of the component this node belongs to. Only needed if you
want to use the scan features for automatic help file generation; needs |
i18n |
Either a character string or a named list with the optional elements |
An object of class XiMpLe.node
.
It is also possible to address a particular option by giving it an ID, probably useful
in logic sections. Have a look at rk.XML.option
for details.
rk.XML.option
,
Introduction to Writing Plugins for RKWard
test.radio <- rk.XML.radio("Chose one", options=list("First Option"=c(val="val1"), "Second Option"=c(val="val2", chk=TRUE))) cat(pasteXML(test.radio))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.