Skip to content

Instantly share code, notes, and snippets.

@TNuzzi
Created October 5, 2014 00:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TNuzzi/b2aebfde295bace00afa to your computer and use it in GitHub Desktop.
Save TNuzzi/b2aebfde295bace00afa to your computer and use it in GitHub Desktop.
Issue with selecting auto complete suggestions
Issue (with h-50 in containing View) https://www.dropbox.com/s/c30eraxpxwpcj36/AutoCompleteIssue.mov
<Window>
<View class="n-col-8 lo-horizontal h-50 bg-yellow">
<Require src="wriststrap.autocomplete" type="widget"
dbName="stuff" dataSourceType="local" dataSource="SELECT id, company FROM aTable"
class="input-border-rounded input-tf input-bm-always bg-transparent" id="company"/>
</View>
</Window>
Fix (with f-size in contain View)
https://www.dropbox.com/s/4ltrttxr1co8cz7/AutoCompleteFix.mov
<Window>
<View class="n-col-8 lo-horizontal h-size bg-yellow">
<Require src="wriststrap.autocomplete" type="widget"
dbName="stuff" dataSourceType="local" dataSource="SELECT id, company FROM aTable"
class="input-border-rounded input-tf input-bm-always bg-transparent" id="company"/>
</View>
</Window>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment