Skip to main content
Provides access to hierarchical data and its associated ViewModel.

Methods

parent

Returns the parent DataContext, if one exists.
function init(self: MyNode, context: Context): boolean
  local dc = context:dataContext()
  if dc then
     local parentDC = dc:parent()
     local vm = dc:viewModel()
  end

  return true
end

viewModel

Returns the ViewModel associated with this context.
function init(self: MyNode, context: Context): boolean
  local dc = context:dataContext()
  if dc then
     local parentDC = dc:parent()
     local vm = dc:viewModel()
  end

  return true
end