Back to Home
ESO Function Data v100032
SetSelectionChangedCallback()
Function Aliases
No known aliases for this function.
Global Function Definitions
libraries/utility/zo_radiobuttongroup.lua:183
--
function ZO_RadioButtonGroup:SetSelectionChangedCallback(callback)
libraries/zo_pagedlist/zo_pagedlist.lua:190
--
function ZO_PagedList:SetSelectionChangedCallback(callback)
Local Function Definitions
No known local definitions for this function.
Function Calls
ingame/guild/keyboard/guildroster_keyboard.lua:360
--
self.setRankDialogRadioButtonGroup:SetSelectionChangedCallback(function(group, control, previousControl) if control then control:GetParent():GetNamedChild("Bind"):SetAlpha(SELECTED_BIND_ALPHA) end if previousControl then previousControl:GetParent():GetNamedChild("Bind"):SetAlpha(DESELECTED_BIND_ALPHA) end end)
ingame/housingeditor/keyboard/housingpathsettings_keyboard.lua:163
--
self.radioButtonGroup:SetSelectionChangedCallback(function(radioButtonGroup, newControl, previousControl) if newControl.pathState ~= self.currentPathState then self.selectedPathState = newControl.pathState local result = HousingEditorToggleSelectedFurniturePathState() ZO_AlertEvent(EVENT_HOUSING_EDITOR_REQUEST_RESULT, result) end end)
ingame/lfg/preferredroles.lua:37
--
self.radioButtonGroup:SetSelectionChangedCallback(function(_, ...) self:OnRoleButtonSelectionChanged(...) end)
ingame/restyle/keyboard/restylestation_keyboard.lua:476
--
self.radioButtonGroup:SetSelectionChangedCallback(function(radioButtonGroup, newControl, previousControl) if self.outfitManipulator then self:RefreshValues() end end)
internalingame/globals/marketdialogs.lua:518
--
radioButtonGroup:SetSelectionChangedCallback(OnRadioButtonSelectionChanged)