I'm having this issue I need to solve, using the jQuery plugin Ajaxify alongside with a couple jQuery UI Core functions.
Scenario: - 4 parent ULs in a row, where child LI elements are sortables - Ajaxify plugin spawns new LI in corresponding UL by clicking a link above that UL - the LI element that is being created by clicking this link is a separate PHP file. So far so good - that works just fine. Now I want to make it possible to resize these LIs across the four ULs (using a grid), while preventing overlapping of LI elements, and keeping the sortable function in place. I assume this works well when the sortable/resizable elements are not Ajax elements but native/pre-existent. The problem is that as soon as I add the resizable function to the li.php file that makes up a LI element, the sortable function stops working (resizing does work though). Has anybody worked in a similar environment before, or tried to accomplish a similar task? I could post the code for both the parent file and the child LI elements here if needed - please let me know. I'm open for suggestions or completely different solutions as well! Thanks in advance.