1st & last columns are supposed to be the same but as per the pic, the second row last column is not the same as the 2nd row 1st column (not in the pic)
I'm using DNN so its not in the traditional spot. Thanks to my mate Jake, Ive played with this in the past to disable the first column (0) but I can remember how I did it.
Thank in advance for any hints that might lead me to the right location or formatting of the head to get it going.
Im using Tablesorter 2.0.5 to sort & filter data that comes from a DNN Module. Ive also implemented some reset sort & reset filters which also works. Everything is working perfectly with 1 exception. When I delete a row (via the module), tablesorter disappears. (Header, table / field borders) A manual refresh & its back to normal with all features & formatting back.
Im told that the table is like a panel that updates when items are added or deleted but the page doesn't refresh. Ive tried using similar approach as the reset button .trigger('applyWidgets') both inside & outside tablesorter but that hasn't done anything. Im also told that this wont work as the delete link also has a "Are you sure" so that needs to be answered before anything else happens.
Spent a fair bit of time trying to get this going & would really appreciate an assistance on getting this going.
Hi, Im trying to format a particular row based on the option selected from a dropdown list (that has a value of -2).
Ive got the formatting working previously before introducing the rest of the code.
Thanks to Jakecigar its been established that my environment plays with the code but after mucking around with this query for a while now, I was hoping to just check the format & eliminate any issues there before troubleshooting id issues.
Code below, thanks in advance
$(function(){
$("#CategoryID").change(function(){ var SelectedOption = $("CategoryID:selected"); if(SelectedOption.val() == -2){ $("#unknowncategoryrow").css({display: 'block'})
Trying to work out why this query wont work. Some background is that the site is a DNN site with a specific forms module. Its common practice for knowledgeable users to insert jquery but I just cant seem to get mine going.
As a starting point, I just want to hide a field & label that sit in their own row.
Thanks to a member I have determined that the page is running 1.9.1
Code I have used is (I think the system puts in (jQuery);). Below that is the row that is being referred to.