Home Community Mys-Script Creative Off-Topic |
|
|
Thread Tools | Display Modes |
#31
|
||||
|
||||
yea, because when someone has a lot it's hard to see what you want to drag where
|
#32
|
|||
|
|||
I'm not sure. The documentation doesn't explain any theming for the "sortable" interactions.
But I think you can add '.ui-sortable-placeholder' to your stylesheet and give it some properties to style it to your liking. |
#33
|
||||
|
||||
Ok thanks! The sorting in itself is just wonderful! Thanks so much for it!
|
#34
|
||||
|
||||
hmm what do I edit to style the table? Having some issues with it and I'm not familiar with JS.
|
#35
|
|||
|
|||
If you want to edit the table body.
Just make a CSS rule with the selector 'tbody.ui-sortable' |
#36
|
||||
|
||||
like this:
tbody.ui-sortable { color: #000; width: 100%; } cause that didn't work nm... it would help if i added <tbody> to it =p Last edited by SilverDragonTears; 08-31-2011 at 03:34 PM. |
#37
|
|||
|
|||
Perhaps you should update your javascript code to this one. This will achieve what I actually wanted to make, the first javascript code I provided has a "defect" even though if you have different layout and styling the result might actually be what I expected. Nevertheless, please do try this one and see if you like it better. Otherwise, just revert back to the old javascript code.
HTML Code:
$(document).ready(function(){ $('body').undelegate('click').delegate('p#activate_sort', 'click', function(){ var realBg = $('table#sortable_adoptables').css('background-color'); var submitForm = '<form name="submit_order" id="submit_order" action="" method="post"><fieldset><label for="submit">Submit Changes</label><input type="submit" id="submit" value="Submit"></fieldset></form>'; $('table#sortable_adoptables').css('background-color', '#FFFF66').animate({ backgroundColor: realBg }, 'slow' ).find('tbody').sortable({ cursor: 'pointer' }); $(submitForm).insertAfter('p#activate_sort').hide().slideDown(); $('p#activate_sort').attr('id', 'deactivate_sort'); }); $('body').undelegate('submit').delegate('form#submit_order', 'submit', function(event){ event.preventDefault(); var data = $('table#sortable_adoptables tbody').sortable('serialize'); $.post('ajax_sort.php', data, function(result){ $('form#submit_order').html(result).delay(5000).fadeOut('slow', function(){ $(this).remove(); }); }); $('table#sortable_adoptables tbody').sortable('destroy'); $('p#deactivate_sort').attr('id', 'activate_sort'); }); }); Last edited by fadillzzz; 08-31-2011 at 04:25 PM. |
#38
|
||||
|
||||
I did it but I don't see a difference.
|
#39
|
|||
|
|||
You sure? that code above should preserve your table background now...instead of changing it to white
|
#40
|
||||
|
||||
Ahhh that's what it is =) Love it!
|
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
"Fairy State" theme by Bobbybighoof (Mysidia 1.3.3) | bobbybig | Templates and Themes | 3 | 07-18-2018 07:54 PM |
Sort "myadopts" page | SilverDragonTears | Questions and Supports | 23 | 06-12-2017 06:39 PM |
Removing of prefix "class", "abstract", "interface" Suggestions | FounderSim | Suggestions and Feature Requests | 3 | 10-05-2014 06:35 PM |
Creating a "Faction" for adoptables/owned adoptables | Vaporman87 | Questions and Supports | 1 | 03-04-2014 04:38 PM |
Changing... or "masking" existing URLs | Vaporman87 | Questions and Supports | 7 | 03-03-2014 08:10 PM |
What's New? |
What's Hot? |
What's Popular? |