Hi.
please, help me.
I used select tag in cell value.
I want to use onchange event.
When it's used in grid, there is a case different from usual.
An assumed browser is IE11, chrome and Firefox.
The chrome, as expected.
The IE11 is 1st time only. When a focus is removed once, it becomes effective once again.
The Firefox is indicated list in twice, and a event is only the 2nd.
About Firefox.
It was no problem in version 38.0.1.
It's version 54 that a problem has occurred.
I using ParamQuery Pro v3.3.4.
=== test source ===
<select onchange="chTableVal(this);"><option></option><option>1</option><option>2</option></select>
<div id="testGrid" style="margin: auto;"></div>
<script>
function chTableVal(obj) {
alert("test");
}
$(function () {
var data = [ { select: '<select onchange="chTableVal(this);"><option></option><option>1</option><option>2</option></select>' }, ];
var obj = { title: "test",
dataModel: { data: data }
};
$("#testGrid").pqGrid(obj);
});
</script>
======================================================