Michael Gangolf

Results 228 issues of Michael Gangolf

When reassigning `tableView.data` with the last data it will lose the click event. ```js const win = Ti.UI.createWindow(); const btn = Ti.UI.createButton({bottom: 0,title: "new data"}); const tableView = Ti.UI.createTableView({}); var...

android
bug
needs triage

I've ran "Analyze - Inspect Code" from Android Studio for the SDK. Before: ![Screenshot_20220409_160731](https://user-images.githubusercontent.com/4334997/162580627-7f8906e0-be02-4114-8f36-7d70fc57ecc0.png) and applied some of the changes: * minor upgrade to gradle 7.0.4 * remove redundant casts...

fixes https://github.com/appcelerator/titanium_mobile/issues/13244 Adds a property `autoSize` to Ti.UI.Label. This makes the text fill out the label width/height automatically: ![ezgif-2-2a79fa0f8f](https://user-images.githubusercontent.com/4334997/149623405-647cc8fb-65cf-4511-a3e7-30ba5de63578.gif) It won't change the fontSize and will restore the old value...

android
community 🔥
needs tests 🚨
docs 📔

**work in progress / PoC** Snapping for ListView/TableView. Needs some more properties and documentation. But it is possible to add snapping to a ListView/TableView. https://user-images.githubusercontent.com/4334997/141847052-c27e8d4e-57a9-437e-8fa6-b1cfd58471e3.mp4 * https://developer.android.com/reference/androidx/recyclerview/widget/SnapHelper * https://developer.android.com/reference/androidx/recyclerview/widget/LinearSnapHelper **JIRA:**...

android
community 🔥
work in progress 🚧
needs tests 🚨

**JIRA:** https://jira.appcelerator.org/browse/TIMOB-26675 **Optional Description:** Had this old ticket in my queue. Might fire the `location` event quicker. Implementation from: https://developer.android.com/training/location/retrieve-current#java Not sure how to test it :smile: example ```js var...

android
community 🔥
needs tests 🚨

**JIRA:** https://jira.appcelerator.org/browse/AC-6722 When `continuousUpdate` is enabled the `scrolling` event will fire for every visibleItem/Section change. **Test:** * start example app * start scrolling * in the top right corner (or...

ios
android
community 🔥
docs
docs 📔

**JIRA:** https://jira.appcelerator.org/browse/[TICKET] **todo** Provide a clear PR title prefixed with `[TICKET]` **Optional Description:** The current compass heading has a default 250ms waiting interval. Since I didn't want to remove it...

android
community 🔥
docs
needs tests 🚨

**JIRA:** https://jira.appcelerator.org/browse/AC-6636 **Optional Description:** Allow a TableView/ListView to be horizontal ![20201129_142049](https://user-images.githubusercontent.com/4334997/100543107-7b282b00-324e-11eb-8bf6-65624a8a1d42.gif) ```javascript var toggle = false; var win = Ti.UI.createWindow(); var btn = Ti.UI.createButton({ title: "change", bottom: 20 }); btn.addEventListener("click",...

android
community 🔥
docs
needs tests 🚨
docs 📔

**JIRA:** https://jira.appcelerator.org/browse/AC-6634 **Optional Description:** normal: ![Screenshot_20201121-162636](https://user-images.githubusercontent.com/4334997/99880887-76dc8c00-2c16-11eb-8f78-dd74f718d985.png) gridColumns: 3 ![Screenshot_20201121-162624](https://user-images.githubusercontent.com/4334997/99880886-747a3200-2c16-11eb-8203-f83712d2c6cd.png) Listview: ```javascript var win = Ti.UI.createWindow({backgroundColor: 'gray'}); var listView = Ti.UI.createListView({ gridColumns: 2 }); var sections = []; var fruitSection =...

android
community 🔥
docs
needs tests 🚨
docs 📔

**JIRA:** https://jira.appcelerator.org/browse/TIMOB-27893 **Optional Description:** ```javascript function onTouch(event) { console.log("touch"); } var window = Ti.UI.createWindow(); var childView = Ti.UI.createView({ backgroundColor: "blue", width: 200, height: 200 }); var btn = Ti.UI.createButton({ title:...

android
community 🔥
bug
work in progress 🚧
needs tests 🚨