Spin component stops Event Capture in IE <= 10
See original GitHub issue- I have searched the issues of this repository and believe that this is not a duplicate.
Reproduction link
Steps to reproduce
showMessage = () => {
alert('hello');
}
getColumns = () => {
return [
{ title: 'No.', dataIndex: 'no'},
{ title: 'Operation', dataIndex: 'op',
render: val => <span onClick={this.showMessage}>Show Message</span>,
},
];
}
//....
render() {
return <Table loading={this.state.loading} columns={this.getColumns()} ... />;
}
What is expected?
The CLICK event can work
What is actually happening?
The CLICK event doesn’t work
Environment | Info |
---|---|
antd | 3.12.3 |
React | 16.7.0 |
System | windows 10 |
Browser | Internet Explore 10 |
When I use loading
attribute in Table
component in IE <=10, the CLICK event can’t be captured in the operation column.
Also, when I use Spin
Component, the Component inside can’t capture CLICK event in IE <=10
Issue Analytics
- State:
- Created 5 years ago
- Comments:14 (6 by maintainers)
Top Results From Across the Web
transistionend event not firing in IE - Stack Overflow
I ran into this issue and it seems in IE 10/11, transitionend will not fire if the transition occurs on a 'display:none' element...
Read more >Internet Explorer (IE) mode troubleshooting and FAQ
Troubleshooting guide and FAQ for Microsoft Edge Internet Explorer mode.
Read more >PySimpleGUI
Create windows that look and operate identically to those created directly with tkinter, Qt, WxPython, and Remi. Requires 1/2 to 1/10th the amount...
Read more >onwheel Event - W3Schools
The onwheel event occurs when the mouse wheel is rolled up or down over an element. The onwheel event also occurs when the...
Read more >ProgressBar - Android Developers
android:clickable, Defines whether this view reacts to click events. ... android:rotationX, rotation of the view around the x axis, in degrees.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
唔,失误。sorry………………
嗯,在 Spin 里修了。