I found a bug in autocomplete behavior of Atals January CTP.
If TextBox have a style "display:none" during page loading, autocomplete doesn't work at all. Small example:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<script type='text/javascript' language='javascript' src='/ACTextBoxTest/ScriptLibrary/Atlas/Release/Atlas.js'></script>
<div id="foo" style="display:none;">
<input name="TextBox1" type="text" id="TextBox1" />
<div id='TextBox1_completionList'></div>
<script type='text/xml-script'>
<page xmlns:script='http://schemas.microsoft.com/xml-script/2005'>
<components>
<textBox id='TextBox1'>
<behaviors>
<autoComplete
completionList='TextBox1_completionList'
serviceURL='AutoCompleteService.asmx'
serviceMethod='GetWordList'
minimumPrefixLength='2'
completionSetCount='15'
completionInterval='300' />
</behaviors>
</textBox>
</components>
</page>
</script>
</div>
<a href='#' onclick="document.getElementById('foo').style.display='block';return false;">Show TextBox</a>
<div>
</body>
</html>
How can I fix this problem?