Dynamically change the width of Datagrid column in FLEX. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T16:08:46Z http://stackoverflow.com/feeds/question/1002518 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1002518/dynamically-change-the-width-of-datagrid-column-in-flex 1 Dynamically change the width of Datagrid column in FLEX. unknown (google) 2009-06-16T16:14:38Z 2009-12-01T14:29:07Z <p>Hi,</p> <p>Can we change the width of the datagrid column dynamically by clicking on the border of the column in order to display the complete string which is too long to be displayed and needs to be scrolled ? If so, How ?</p> <p>Also, how can we ensure that the column width changes dynamically based on the number of characters / length of string; since many a times the data is too long to be displayed. Can we set the column width to take the length of data into consideration before displaying onto the datagrid ?</p> http://stackoverflow.com/questions/1002518/dynamically-change-the-width-of-datagrid-column-in-flex/1003321#1003321 0 Answer by Cameron for Dynamically change the width of Datagrid column in FLEX. Cameron 2009-06-16T18:54:05Z 2009-06-16T18:54:05Z <p>For the Gridview control, you can drill-down into the SelectedRowStyle property and set Wrap to True.</p> http://stackoverflow.com/questions/1002518/dynamically-change-the-width-of-datagrid-column-in-flex/1004305#1004305 0 Answer by radekg for Dynamically change the width of Datagrid column in FLEX. radekg 2009-06-16T22:47:06Z 2009-06-16T22:47:06Z <p>This is what I came up with however it may not be efficient for large data providers:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" creationComplete="onComplete();"&gt; &lt;mx:Script&gt; &lt;![CDATA[ // imports: import mx.events.FlexEvent; import mx.core.UIComponent; import mx.controls.dataGridClasses.DataGridColumn; import mx.controls.Text; import mx.utils.ObjectUtil; import mx.controls.Label; import mx.collections.ArrayCollection; // data provider: [Bindable] private var dp:ArrayCollection = new ArrayCollection(); private function onComplete():void { // populate data provider here // to avoid calcMaxLengths execution when the app is created: dp = new ArrayCollection( [ { col1: "Short", col2: "Other column 1" }, { col1: "Some long string", col2: "Other column 2" }, { col1: "Short", col2: "Other column 3" }, { col1: "Short", col2: "Other column 4" }, { col1: "The longest value in this column", col2: "Other column 5" }, { col1: "Short", col2: "Other column 6" }, { col1: "Short", col2: "Other column 7" } ] ); } // this is going to be executed whenever the data provider changes: [Bindable("dataChange")] private function calcMaxLengths(input:ArrayCollection):ArrayCollection { // if there are items in the DP: if ( input.length &gt; 0 ) { // and no SPECIAL child exists: if ( getChildByName("$someTempUICToRemoveAfterFinished") == null ) { // create new SPECIAL child // this is required to call measureText // if you use custom data grid item renderer // then create instance of it instead of UIComponent: var uic:UIComponent = new UIComponent(); // do not show and do not mess with the sizes: uic.includeInLayout = false; uic.visible = false; // name it to leverage get getChildByName method: uic.name = "$someTempUICToRemoveAfterFinished"; // add event listener: uic.addEventListener(FlexEvent.CREATION_COMPLETE, onTempUICCreated); // add to parent: addChild(uic); } } // return an input: return input; } // called when SPECIAL child is created: private function onTempUICCreated(event:FlexEvent):void { // keep the ref to the SPECIAL child: var renderer:UIComponent = UIComponent(event.target); // output - this will contain max size for each column: var maxLengths:Object = {}; // temp variables: var key:String = ""; var i:int=0; // for each item in the DP: for ( i=0; i&lt;dp.length; i++ ) { var o:Object = dp.getItemAt(i); // for each key in the DP row: for ( key in o ) { // if the output doesn't have current key yet create it and set to 0: if ( !maxLengths.hasOwnProperty(key) ) { maxLengths[key] = 0; } // check if it's simple object (may cause unexpected issues for Boolean): if ( ObjectUtil.isSimple(o[key]) ) { // measure the text: var cellMetrics:TextLineMetrics = renderer.measureText(o[key]+""); // and if the width is greater than longest found up to now: if ( cellMetrics.width &gt; maxLengths[key] ) { // set it as the longest one: maxLengths[key] = cellMetrics.width; } } } } // apply column sizes: for ( key in maxLengths ) { for ( i=0; i&lt;dg.columnCount; i++ ) { // if the column actually exists: if ( DataGridColumn(dg.columns[i]).dataField == key ) { // set size + some constant margin DataGridColumn(dg.columns[i]).width = Number(maxLengths[key]) + 12; } } } // cleanup: removeChild(getChildByName("$someTempUICToRemoveAfterFinished")); } ]]&gt; &lt;/mx:Script&gt; &lt;mx:DataGrid id="dg" horizontalScrollPolicy="on" dataProvider="{calcMaxLengths(dp)}" width="400"&gt; &lt;mx:columns&gt; &lt;mx:DataGridColumn dataField="col1" width="40" /&gt; &lt;mx:DataGridColumn dataField="col2" width="100" /&gt; &lt;/mx:columns&gt; &lt;/mx:DataGrid&gt; &lt;/mx:WindowedApplication&gt; </code></pre> http://stackoverflow.com/questions/1002518/dynamically-change-the-width-of-datagrid-column-in-flex/1786491#1786491 0 Answer by Rob Lund for Dynamically change the width of Datagrid column in FLEX. Rob Lund 2009-11-23T22:26:52Z 2009-11-23T22:26:52Z <p>So I was having a similar problem and here is what I found. If you set:</p> <pre><code>horizontalScrollPolicy="off" </code></pre> <p>Then the column widths will size automatically to fit the width of the DataGrid. You can also manually set the column widths, as long as scrolling is set to either on or off and not set to auto. I found an interesting article about this, <a href="http://junleashed.wordpress.com/2008/07/10/flex-datagridcolumn-width-management/" rel="nofollow">http://junleashed.wordpress.com/2008/07/10/flex-datagridcolumn-width-management/</a>. Basically, he manages the column widths manually, and then calculates whether the scrollbar should be on or off. </p> http://stackoverflow.com/questions/1002518/dynamically-change-the-width-of-datagrid-column-in-flex/1826533#1826533 0 Answer by Eran Betzalel for Dynamically change the width of Datagrid column in FLEX. Eran Betzalel 2009-12-01T14:29:07Z 2009-12-01T14:29:07Z <p>I recently encountered that same issue and the only solution I found is to use a customized function that optimizes the DataGrid's columns width as suggested <a href="http://www.experts-exchange.com/Web%5FDevelopment/Web%5FLanguages-Standards/Flex/Q%5F23978113.html" rel="nofollow">here</a>.</p>