powerconsulting/jquery.tabelizer

Make exclude link, popover, tooltips optional

Opened this issue · 3 comments

Hi,
Looks like you demo site is down. I unable to look for this options.
I am trying to find if can make some element that with link, tooltips or bootstrap popover when on clicked. To avoid the toggling issues. Every time i click a tooltip, the row will toggle it self.
If there an option that can exclude this link inside the row when clicked to prevent it toggle?

Hello Claud, it seems that this jquery plugin is now dormant. But the
creator will gladly accept your contribution to the code.
Last time I pull some lines to identify where is the last child node so
there are no unnecessary toggle button and the creator eagerly accept it.

Hope that won't be a bother...

Cheers

On Fri, Aug 5, 2016 at 8:38 AM, claudchan notifications@github.com wrote:

Hi,
Looks like you demo site is down. I unable to look for this options.
I am trying to find if can make some element that with link, tooltips or
bootstrap popover when clicked. To avoid the toggling issues. Every time i
click a tooltip, the row will toggle it self. If there an option that
exclude the link inside the row when clicked to prevent it toggle?


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
#17, or mute
the thread
https://github.com/notifications/unsubscribe-auth/ANn_JVu0AAWxR8xTcXYkhSt8Oz6tC_fyks5qcpQhgaJpZM4JdR3g
.

regards,

Kurniawan Jatmika

Hi,
I am not that pro in javascripting but I like to contribution if I can.
I able to find a way to fix, but my code may not a best way. See below:

At line 210 (jquery.tabelizer.js)
if (self.conf.fullRowClickable) { $row.on('click', self.conf.onRowClick); $('a, input, button').on('click', function(e){ e.stopPropagation(); }); } else { $row.find('.expander').on('click', self.conf.onRowClick); }

Will that be helpful?

Wow, great. I'm sure as long as it works for you it will for for other
people too. You should pull it ASAP :D

Cheers

On Fri, Aug 5, 2016 at 9:04 PM, claudchan notifications@github.com wrote:

Hi,
I am not that pro in javascripting but I like to contribution if I can.
I able to find a way to fix, but my code may not a best way. See below:

At line 210 (jquery.tabelizer.js)
if (self.conf.fullRowClickable) {
$row.on('click', self.conf.onRowClick);
$('a, input, button').on('click', function(e){
e.stopPropagation();
});
}
else {
$row.find('.expander').on('click', self.conf.onRowClick);
}

Will that be helpful?


You are receiving this because you commented.
Reply to this email directly, view it on GitHub
#17 (comment),
or mute the thread
https://github.com/notifications/unsubscribe-auth/ANn_JYsHSDtrcRNSwkYfJx3Yt8-G3lVAks5qc0MCgaJpZM4JdR3g
.

regards,

Kurniawan Jatmika