.resizable(options) not working for some reason
-
taskObj.attr({'id':'task-'+openTaskDetails['id'], 'class':'ui-widget-content'}).html(openTaskDetails['name']+"<br>") .draggable(dragOpts).resizable(resOpts);
the above code generates a div which is draggable and has all the right contents but for some reason, the resizable feature is not showing up (the thing on the bottom right corner is not visible).. i am not getting any errors, the js is recognizing the resizable function.
what's even more perplexing is that i generate these similar kind of divs dynamically in other areas in my app, and their resizable function seems to work as expected.
what could be the issue?
thanks in advance.