user9933
user9933

Reputation: 5

Prevent expand row on double click in w2ui grid table

Is it possible to avoid expand row on double click in w2ui grid?

And also i want to remove expand column (+ column) from div and i want on other column's click expand the row. So should it possible or not?

I have tried to manually code to remove html code for expand column.

Upvotes: 0

Views: 430

Answers (1)

Vivek Kapoor
Vivek Kapoor

Reputation: 491

onDblClick: function(event) {event.preventDefault(); }

this way expand will not triggered.

Upvotes: 1

Related Questions