Radiobutton:tofront( widget ) method
Brings the Radiobutton in front of all other widgets, or in front of the specified widget.
Parameters
widget
The widget above which the Radiobutton will be.
Return value
This function returns no value.Example
local ui = require "ui"
-- create a simple Window
local win = ui.Window("Radiobutton:tofront() sample", 400, 300)
local widget = ui.Radiobutton(win, "I'am a Radiobutton")
widget:center()
local button = ui.Button(win, "Click me to bring Radiobutton to front")
button:center()
button:show()
-- Button:onClick() event
function button:onClick()
widget:tofront()
end
win:show()
-- update the user interface until the user closes the Window
repeat
ui.update()
until not win.visible