question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

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

Edit on CodeSandbox

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:closed
  • Created 5 years ago
  • Comments:14 (6 by maintainers)

github_iconTop GitHub Comments

1reaction
zombieJcommented, Jan 28, 2019

今天更新到3.13.0版本, 发现Spin和Table的问题还是没有修复呢 @zombieJ

唔,失误。sorry………………

1reaction
zombieJcommented, Jan 24, 2019

不只是表格组件,用Spin组件包裹其他内容(比如a标签或者Button)也都无法触发。

嗯,在 Spin 里修了。

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found