buttonItem(traitr)
buttonItem()所属R语言包:traitr
Button item to initiate an action...
Button项提起诉讼...
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Button item to initiate an action
按钮项提起诉讼
用法----------Usage----------
参数----------Arguments----------
参数:value
Default value for the model
该模型的默认值
参数:action
function to call when clicked. Signature is function(., h, ...) {} (like gWidgets with extra leading .). The "." is the button item, not the itemgroup or dialog that this item may be a part of. When that is the case, .$parent refers to the parent itemgroup or dialog. The evaluation environment is not that where the action is defined. This can lead to unexpected sources of error.
函数调用时,点击。签名是function(., h, ...) {}(如gWidgets额外领先的.的)。 “.”按钮项,而不是在ItemGroup或对话框,这个项目可能成为其中的一部分。当是这样的话,.$parent是指到父的ItemGroup或对话框。评估环境是不是在那里的行动被定义。这可能会导致意想不到的错误。
参数:name
Required name for object. Names should be unique within a group of items
需要的对象的名称。名称应是唯一的一组项目
参数:label
Optional label, default value is the name. Use "" to have not label text.
可选的标签,默认值的名称。使用“,”没有标签的文字。
参数:help
Optional help string
可选的帮助字符串
参数:tooltip
Optional tooltip to display
可选工具提示显示
参数:attr
A list of attributes to pass to widget on construction. Eg. attr=list(size=c(100,200))
传递到建筑部件上的属性列表。例如: attr=list(size=c(100,200))
参数:model
Optional model. Useful if one wishes to use same model for multiple views
可选的模式。有用的,如果你希望使用相同的模型的多个视图
参数:editor
Specification of editor (a view) to override default
规格编辑器(视图)覆盖默认
参数:...
Passed to parent proto object during call to proto </table>
传递给过程中父原始对象调用原</ TABLE>
Details
详细信息----------Details----------
While dialogs have a buttons property for the main buttons, this item allows other buttons to be used within a dialog. One must define an action (a callback) to call when the button is clicked. There are some issues with how this method is defined and
对话框有一个buttons的主要按钮的属性,这个项目可让其他的按钮,在对话框中使用。必须定义一个动作(回调)当单击该按钮时调用。有一些问题,这种方法是如何定义的,
值----------Value----------
A proto object. Call obj$show_help() to view its methods and properties.
Aproto对象。呼叫obj$show_help()查看其方法和属性。
参见----------See Also----------
Item
Item
实例----------Examples----------
b <- buttonItem("click me", action=function(.,h,...) {
print("hi")
})
## An example within a dialog[#在对话框的例子]
dlg <- aDialog(items=list(
a = stringItem(""),
b = buttonItem("Click me", label="", action=function(., h, ...) {
galert(sprintf("Item a is %s\n", .$parent$get_a()))
})
),
title="A dialog with a button item",
buttons=c() # no standard buttons[没有标准按钮]
)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|