codess 发表于 2019-3-13 16:24:55

ts版本FlexGrid的滚动条滚动鼠标左键点击focus设置错位问题

html代码为:
<wj-flex-grid style="height: 300px;"
="src2" ="'Cell'">
<wj-flex-grid-column ="'数値入力'" binding="'no'">
    <ng-template wjFlexGridCellTemplate ="'Cell'" let-item="item">
      <wj-input-number [(value)]="item.no"></wj-input-number>
    </ng-template>
</wj-flex-grid-column>
<wj-flex-grid-column
    ="'Name'"
    ="'name'">
</wj-flex-grid-column>
</wj-flex-grid>
ts代码为:

src2 = [
    { no: 1, name: 'テスト' },
    { no: 2, name: 'テスト' },
    { no: 3, name: 'テスト' },
    { no: 4, name: 'テスト' },
    { no: 5, name: 'テスト' },
    { no: 6, name: 'テスト' },
    { no: 7, name: 'テスト' },
    { no: 8, name: 'テスト' },
    { no: 9, name: 'テスト' },
    { no: 10, name: 'テスト' },
    { no: 11, name: 'テスト' },
    { no: 12, name: 'テスト' },
    { no: 13, name: 'テスト' },
    { no: 14, name: 'テスト' },
    { no: 15, name: 'テスト' },
    { no: 16, name: 'テスト' },
    { no: 17, name: 'テスト' },
    { no: 18, name: 'テスト' },
    { no: 19, name: 'テスト' },
    { no: 20, name: 'テスト' }
];


JeffryLI 发表于 2019-3-15 09:04:52

您好这个问题在最新版本2018v3下有重现吗?

codess 发表于 2019-3-20 16:20:44

JeffryLI 发表于 2019-3-15 09:04
您好这个问题在最新版本2018v3下有重现吗?

现在不允许升级为v3,能不能提供其他的方案来解决这个问题。

JeffryLI 发表于 2019-3-22 09:09:47

那你只能用单元格选中方法来指定选中,selecttion属性 给它单元格范围 就可以指定选中范围。

codess 发表于 2019-3-22 09:22:34

JeffryLI 发表于 2019-3-22 09:09
那你只能用单元格选中方法来指定选中,selecttion属性 给它单元格范围 就可以指定选中范围。

好的,我尝试一下

JeffryLI 发表于 2019-3-25 12:15:52

:)
页: [1]
查看完整版本: ts版本FlexGrid的滚动条滚动鼠标左键点击focus设置错位问题