Search and Top Navigation
#5397 closed bug (notabug)
Opened March 22, 2010 05:01AM UTC
Closed July 30, 2010 10:53AM UTC
Last modified October 11, 2012 09:15PM UTC
Error Eval to create control resizable
Reported by: | redstarsoft | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | ui.core | Version: | 1.8 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
<div class='windows'>
<div style="width:400px;" class="draggable ui-widget-content">
<p class="ui-widget-header">Primeira janela</p>
<p class="ui-widget-content" id="r0">conteudo</p>
</div>
<div style="width:400px;" class="draggable ui-widget-content">
<p class="ui-widget-header">Segunda janela</p>
<p class="ui-widget-content" id="r1">conteudo</p>
</div>
</div>
<script>
$().ready(function(){
var _tdiv = $('.windows div').length; // return 2div Ok.
for(w=0;w<_tdiv;w++){
var _div = $(".windows div:eq("+w+")");
var _opt = { alsoResize:"#r"+w,minHeight:150,minWidth:200,maxHeight:500,maxWidth:920 }
_div.resizable(_opt);
}
});