def get_property(self, param_name, position):
        """Get the property value for the requested name.

        Parameters
        ----------
        param_name : str
            The parameter name to retrieve the stored value of.
        position : list(int)
            The widget position that requested this check.
        """
        pname = str(param_name)
        if "general_proposals" in pname or "sequence_proposals" in pname:
            prop_name = pname.split('/')[-1]
            is_active = self.model.is_proposal_active(prop_name)
            self.widget.reset_field(position, str(is_active))
        else:
            BaseController.get_property(self, param_name, position)
    def get_property(self, param_name, position):
        """Get the property value for the requested name.

        Parameters
        ----------
        param_name : str
            The parameter name to retrieve the stored value of.
        position : list(int)
            The widget position that requested this check.
        """
        pname = str(param_name)
        if "general_proposals" in pname:
            prop_name = pname.split('/')[-1]
            is_active = self.model.is_proposal_active(prop_name)
            self.widget.reset_field(position, str(is_active))
        else:
            BaseController.get_property(self, param_name, position)