inherit
66746
0
Oct 7, 2012 14:05:38 GMT -8
«The Silver Lining»™
^ Me !!!!
1,338
December 2005
chrisrulez001
|
Post by «The Silver Lining»™ on Apr 4, 2012 2:54:59 GMT -8
Hi
I am using jQuery to make some portlets.
Here is my jQuery code:
<script type="text/javascript"> $(function() { $(".column").sortable({ connectWith: ".column" });
$(".portlet").addClass("ui-widget ui-widget-content ui-helper-clearfix ui-corner-all") .find(".portlet-header" ) .addClass("ui-widget-header ui-corner-all") .end() .find(".portlet-content");
}); </script>
Heres how its set out on my html
column1 column2 column3
Ok my problem is that i would like to be able to set one of the portlets to a certain column. Say a certain portlet is in column1 and i would like to set it in column2, how would i do this?
|
|
inherit
66746
0
Oct 7, 2012 14:05:38 GMT -8
«The Silver Lining»™
^ Me !!!!
1,338
December 2005
chrisrulez001
|
Post by «The Silver Lining»™ on Apr 5, 2012 4:47:12 GMT -8
Ill elaborate a little bit more, say i have a portlet in column1 and i press a button and the portlet moves over to column2.
|
|