Set 'fixed' property to true for all the columns except the last column and then set 'fitColumns' property to true for the datagrid.
<table class="easyui-datagrid" title="DataGrid" fitColumns="true" style="width:700px;height:250px">
<thead>
<tr>
<th data-options="field:'itemid',width:80,fixed:true">Item ID</th>
<th data-options="field:'productid',width:100,fixed:true">Product</th>
<th data-options="field:'listprice',width:80,align:'right',fixed:true">List Price</th>
<th data-options="field:'unitcost',width:80,align:'right',fixed:true">Unit Cost</th>
<th data-options="field:'attr1',width:250">Attribute</th>
</tr>
</thead>
</table>