Title: datagrid final column fit to width [Solved] Post by: devnull on January 29, 2015, 07:28:47 PM How can I make the final column in a datagrid fit the remaining available table width ?
Thanks Title: Re: datagrid final column fit to width Post by: jarry on January 30, 2015, 05:35:01 AM Set 'fixed' property to true for all the columns except the last column and then set 'fitColumns' property to true for the datagrid.
Code: <table class="easyui-datagrid" title="DataGrid" fitColumns="true" style="width:700px;height:250px"> Title: Re: datagrid final column fit to width [Solved] Post by: devnull on February 03, 2015, 07:26:10 AM Great, thank you.
|