easy ui window 相关属性

     <div class="easyui-window" title="提示" style="550px;height:500px;padding: 5px;"
             data-options="iconCls:'icon-mini-edit',modal:true,collapsible: false, minimizable: false, maximizable: false, resizable: false" id="atonce_window">
            #if($GoodsData.Count==0)
            <input type="hidden" name="name" value="0" id="hidden_PKUId" />
            #else
            #foreach($goods in $GoodsData)
            <input type="hidden" name="name" value="$goods.CarPartPKUId" id="hidden_PKUId" />
            #end
            #end
            <table width="100%">
                <tr><td>车型</td><td><select id='CarTrademarkStr' style=" 140px;" /></td><td><select id='CarModelStr' style=" 140px;" /></td></tr>
                <tr><td>排量</td><td><select id='Displacement' style=" 140px;" /></td></tr>
                <tr><td>年款</td><td><select id='ReleasYear' style=" 140px;" /></td></tr>
                <tr><td>档位</td><td><select id='StallsType' style=" 140px;" /></td></tr>
                <tr><td>手机</td><td><input type='text' style="140px;" class='easyui-textbox' id='phonenumber' /></td></tr>
                <tr><td>您的配件需求</td><td colspan="2"><input class="easyui-textbox" type="text" id="messageboard" name="messageboard" data-options="multiline:true,validType:'length[0,500]'" style="height: 60px;  80%" /></td></tr>
                <tr><td colspan="3">因汽车配件种类比较复杂,请详细填写以上信息,以便精准报价。</td></tr>
                <tr><td colspan="3" align="right"><input type='button' value='提交订单' class='cha' id='form_submit' /></td></tr>
            </table>   
        </div>

说明:收缩collapsible: false, 最小化minimizable: false, 最大化maximizable: false, 可以调整窗口大小resizable: false

原文地址:https://www.cnblogs.com/foreverfendou/p/5102307.html