Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-12884] iOS: ViewProxy checks for listeners using parent instead of bubbleParent, does not allow for nonViewProxy event bubbling.

GitHub Issuen/a
TypeBug
PriorityLow
StatusClosed
ResolutionDuplicate
Resolution Date2013-03-15T01:44:57.000+0000
Affected Version/sRelease 2.0.2
Fix Version/sn/a
ComponentsiOS
Labelsn/a
ReporterBlain Hamon
AssigneeBlain Hamon
Created2013-02-27T05:10:55.000+0000
Updated2017-03-20T22:19:43.000+0000

Description

Note to self, TiViewProxy.m:1631
#pragma mark Listener Management

-(BOOL)_hasListeners:(NSString *)type
{
	if ([super _hasListeners:type])
	{
		return YES;
	}
	// check our parent since we optimize the fire with
	// the check
	if (parent!=nil)
	{
		// walk up the chain
		return [parent _hasListeners:type];
	}
	return NO;
}
With ListView, this will become an issue if it isn't already with TableView.

Comments

  1. Blain Hamon 2013-03-15

    Fix will be in TIMOB-12616
  2. Lee Morris 2017-03-20

    Closing ticket as duplicate.

JSON Source