Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-11944] iOS: Accessibility - Hint text is not read aloud for textfield.

GitHub Issuen/a
TypeBug
PriorityLow
StatusClosed
ResolutionNot Our Bug
Resolution Date2012-12-04T19:18:40.000+0000
Affected Version/sRelease 3.0.0
Fix Version/s2012 Sprint 25, 2012 Sprint 25 Core
ComponentsiOS
Labelslook1, qe-ios100112
ReporterAnshu Mittal
AssigneeMax Stepanov
Created2012-12-04T10:14:30.000+0000
Updated2017-03-29T00:52:41.000+0000

Description

Hint text is not read aloud for textfield. Steps to reproduce: 1. Create an app using the code below. 2. Touch the textfield. Actual: Hint is not read aloud. Expected: Hint should be read aloud.
var win1 = Titanium.UI.createWindow({  
    title:'Tab 1',
    backgroundColor:'#fff'
});

		var Textfield1 = Ti.UI.createTextField({
		    accessibilityLabel: "Textfield1",
			accessibilityValue: "Value1.",
			accessibilityHint: "Hint1",
			top:50,
			width:150,
			borderWidth:2,
			borderColor:'black'
		});
		win1.add(Textfield1);

		win1.open();

Comments

  1. Max Stepanov 2012-12-04

    Either iOS bug or expected behavior. Reproducible with simple native test case.
  2. Lee Morris 2017-03-29

    Closing ticket as the issue is not our bug.

JSON Source