We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AtInput 的 editable 属性无法从 false 切换回 true
editable
false
true
初始状态,默认可编辑 editable={true},表现正常
editable={true}
点击按钮,输入框无法编辑 editable={false},表现正常
editable={false}
再点击按钮,输入框依然保持无法编辑状态 editable={true},表现异常
The text was updated successfully, but these errors were encountered:
顺便说一句,disabled 属性的表现一切正常
disabled
Sorry, something went wrong.
发现小程序的 disabled 只在初始值的时候有效,近期会在editable={false} 的时候切换成view来重新实现
fix(input): fix #165 editabled 无法切换
c827afe
已修复,等待发版
No branches or pull requests
AtInput 的
editable
属性无法从false
切换回true
初始状态,默认可编辑
![image](https://user-images.githubusercontent.com/13287948/48243583-3c3f9680-e435-11e8-894a-d94ca222052f.png)
editable={true}
,表现正常点击按钮,输入框无法编辑
![image](https://user-images.githubusercontent.com/13287948/48243586-45306800-e435-11e8-9cde-83d83182b531.png)
editable={false}
,表现正常再点击按钮,输入框依然保持无法编辑状态
![image](https://user-images.githubusercontent.com/13287948/48243597-4c577600-e435-11e8-8f76-fa3aff95ded0.png)
editable={true}
,表现异常The text was updated successfully, but these errors were encountered: