Flex :: Resizable Grid Row And Grid Item

Sep 24, 2009

I have a mx:Grid component in my flex application. But I would like to resize it by clicking and dragging in the border. This component doesn't allow doing that.I want to put a panel in each gridItem of this Grid component and resize it.

View 1 Replies


Similar Posts:


Flash :: Flex Data Grid: Check Whether Item Renderer Displays Last Row In Grid

Feb 3, 2012

I'm currently working with the OLAPDataGrid component and got stuck at a relatively simple task: I want to style the last row of the grid differently from the rest, so my cell item renderer needs to know whether he's rendering the last row with content in the overall grid, including those rows currently not rendered because they are outside the visible grid space. AdvancedGridListData's rowIndex property only gets me the row index of the renderer relative to the range of visible grid rows, i.e. when I scroll down the grid, a data item with an index greater than 0 gets the rpw index = 0.

View 2 Replies

Flex :: Applying PaddingRight To Grid Column Not To Grid Header?

Mar 31, 2010

Whenever I add paddingRight to a column in the flex grid, it adds the padding to the header as well.Is anyone familiar with how I can add paddingRight just to the column and not to the header? Below is the column code where I was specifying the padding.

<mx:DataGridColumn width="60" headerText="Type" dataField="Grade" headerStyleName="headerLeft" textAlign="left" draggable="false" resizable="false" headerRenderer="GridHeaderRenderer" paddingRight="5"/>

View 1 Replies

Flex :: Using An Image Item Render In A Data Grid

Jul 7, 2010

I'm attempting to add an image to a datagrid item render dynamically in flex. Here is my DataGrid code The value of "str" in the getImagePath function is correct.

[Code]....

View 1 Replies

Flex :: Show Email In Textbox When User Select Any Item In The Grid?

Feb 2, 2010

i have following xml

<?xml version="1.0" encoding="UTF-8" ?>
<Users>
<User>
<ID>SMSUser(63)</ID>

[CODE]...

How can i show Email in textbox when user select any item in the grid?

View 2 Replies

Flex :: Delete Item From Collection Bound To Datagrid And Update The Grid Selected Index

Feb 20, 2011

I have a datagrid with an xmlListCollection bound to it:

<mx:DataGrid id="dgCompetente" includeIn="Competente" x="10" y="66" width="547" height="468"
change="dgCompetente_changeHandler(event)" dataProvider="{colCompetente}"
editable="false">

[Code]......

I want the selectedIndex to remain the same. So, if I delete item 2, the next in the list should be selected. The problem is that if I delete item 2, item 3 will be selected and I have no idea why.

View 1 Replies

Actionscript 3 :: Flex - Simulating A Click On A Button Inside An Item Renderer Of A Data Grid?

Sep 20, 2010

I'm using a data grid with an item renderer that creates a toggle button. The idea is to have a list of items and only allow one to be selected and pre-select one at start.I've got the single button selection working, meaning that when I click on on toggle button, the others are deselected.My problem is to create a way of pre-selecting an element of the data grid or simulate a click on a row and selecting the corresponding toggle button.If I use the datagrid.selectedIndex the result is a selection but the toggle button doesn't get selected.Here is the code exampleIn this example I am using the array value "selected" to define selected button, not my favourite solution but the one that worked first.The array collection:

public static const ValuesList : ArrayCollection = new ArrayCollection(
[
{ID:0, Name:"One", selected:false},

[code].....

View 2 Replies

ActionScript 2.0 :: Create A Simple Multiplication Grid Where Children Will Fill The Grid?

Oct 9, 2009

I need to create a simple multiplication grid where children will fill the grid. Its an empty grid at the begining, when they start the time start as well.Its a grid of 10 x 10. when they enter the last number, the grid should show what they did wrong and the time they spend. It's an idea of how it could work but if anyone has something that looks like this.

View 6 Replies

ActionScript 2.0 :: Make A Square Grid Of Fixed Side Length But Varying Grid Number Using Code?

Jul 5, 2011

I want to make a square grid of fixed side length but varying grid number using code.That is, the number of grids should be specified by the user (say 3*3) and after pressing a button, the stage should be broken into 3*3 grids.I don't want any code, just a method on how to do it. I have tried it by using simple loops but the method just fails for no reason I can figure.

View 5 Replies

ActionScript 2.0 :: Grid Thumbnail With Dynamic Grid Lists

Mar 19, 2007

I really like the thumbnail gallery for its simplicity and beauty. But I would like to ad or vertical scroller (I'm unable to find it here too, maybe I'm blind, just I'm more at the end of my seeking options) or a make a grid thumbnails, that will show 2 columns of thumbs and 5 pictures in each columns, then under the 2 columns i would like to ad a sort of arrow or button that if my gallery have more then 10 pictures it will go on the next thumbnail list. I'm not looking for any extra fading effects or special movements. Just would love to have a single thumbnail grid on side, with option to have lists of thumbnails by 10 if there is more then 10 pictures or so.

View 14 Replies

ActionScript 2.0 :: Accessing Grid Spaces In A Grid?

Jun 24, 2008

I'm building a small editor that allows users to place electrical components onto a grid so that they can see how electricity works. I have built a grid using an array and for loops and attach movieclips dynamically to that grid. What I want the moviclips to do is to look in the four spaces either side of itself i.e. up, down,left and right.I have managed to pull the grid coordinates out of the grid which enables me to tell the clip which grid space to look at but have been unable to successfully get the code to work.Here is my code:

myGrid = [[1,1,1,1,1,1,1,1],
[1,0,0,0,0,0,0,1],
[1,0,0,0,0,0,0,1],[code]....

View 1 Replies

ActionScript 3.0 :: Keep The Spacing Of The Grid Correct According To The Scaling Of Each Item ?

Mar 25, 2009

I'm created a grid of squares and when the users mouse is within 100 pixels of a square it scales up. This is pretty easy and is code that is widely out online.When a square scales up I need the others to move position accordingly to the new scaled square. This is where I am running into trouble. Here is what I have so far.

Code:

public function updateGridPositions() : void
{
for (var i:int = 0; i < gridItemsArr.length; i++) {[code]......

I use TweenLite for the tweening engine. Can anyone help in trying to figure out how I can keep the spacing of the grid correct according to the scaling of each item in the grid.

View 9 Replies

ActionScript 3.0 :: Dragged Object Should Snap To The Grid If The Distance Between The Object Bounds And A Grid Line Is Less Than 5px

Jan 16, 2012

I'm trying to code the snap to grid functionality. The dragged object should snap to the grid if the distance between the object bounds and a grid line is less than 5px. I found a way to do it if the object's rotation is 0 but it doesn't work if I rotate the object. I need a different approach. Can you point me into the right direction with the algorythm or any source code?

View 3 Replies

ActionScript 3.0 :: Make Own Grid And Perform A "snap To Grid" Effect?

Jul 28, 2010

I am trying to create a puzzle like game (a chinese puzzle game called tangram). I am wondering what kind of functions should I use to create a "triangular" grid i.e. something similar to this ?[URL] What should I do to make the movie clips to perform the "snap to grid" effect to this grid?I have tried to draw my own grid and used the "cacheAsBitmap" function to implent it, however it doesnt seems to be working.

View 6 Replies

Actionscript 3.0 :: Make My Own Grid And Perform A "snap To Grid" Effect?

Jul 27, 2010

I am a newbie in flash and I am trying to create a puzzle like game. I am wondering what kind of functions should I use to create a "triangular" grid i.e. something similar to this ? [url]... What should I do to make the movie clips to perform the "snap to grid" effect to this grid?I have tried to draw my own grid and used the "cacheAsBitmap" function to implent it, however it doesn't seems to be working.

View 4 Replies

ActionScript 3.0 :: IsoMetric Grid - Dynamically Draw Out An Isometric Grid

Jun 11, 2011

I'm trying to dynamically draw out an isometric grid but I'm hitting a few problems, currently I'm using a matrix transformation to get the grid to look more isometric that tile based but it has it's problems so I want to add the grid with out using the matrix transformations. currently I have..

[Code]....

I tried to draw it out using Sin ,Cos and Tan functions to try to set the coordinates but it didn't behave like I had expected,

View 9 Replies

Actionscript 3 :: Add A Spesific Data Item To A Data Grid?

Jun 22, 2010

I have a Data Grid with automacticly genorated columns, i now need to add data items into a spesific row / column of this grid e.g. col 2 row 3. It dosnt have a data provider at the moment as i wish to be very selective about which data goes where.

View 1 Replies

Flex :: New Grid Row With Focus?

May 26, 2011

I am trying to make an editable DataGrid to insert a new row when user presses TAB in the last column of last row.y Grid:

<mx:DataGrid id="myGrid"
dataProvider="{initDG}" editable="true"
itemFocusOut="onItemFocusOut(event)">

[code]....

View 2 Replies

Flex :: Key Events On Data Grid?

Apr 14, 2011

I am working in Flex3. Here I have a datagrid which contains data. some columns are editable. when the user changes the column data web service is called. Here using function of focusOut, I am calling the web service by sending the data which comes from the datagrid through focusOut function. Now I want to call the web service when the user changes the column data and presses keyboard key 'Enter'. Here I can call function but the event does not carry datagrid's data to the function being called.

View 3 Replies

Flex :: Place A Link Inside Grid?

Jul 20, 2009

How can I place a link inside a Flex Grid?

View 1 Replies

Flex :: Create A Data Grid And Use It On A Webpage?

Jul 29, 2009

I want to render a very simple Flex data grid. How do I anchor the SWF flash file in the HTML? Do I need to compile a special .swf or can I use a 'standard' data grid .swf - and just pass the data to it?

View 1 Replies

Flex :: Repeater Component With Grid Layout?

Aug 3, 2009

I have a randomly-sized array of items. I'd like to display one label for each item in a Repeater component. I want them to display in a grid layout with 5 columns and as many rows as needed. How do I do that in Flex / ActionScript?

View 2 Replies

Flex :: How To Create Overlay In Advanced Grid

Oct 6, 2009

I'd like to know how to create an "overlay" in Flex's Advanced Grid? See the sample here [URL].

View 1 Replies

Flex :: Embed The Grid In ExtJs Framework?

Feb 25, 2010

How to embed the Flex Grid in ExtJs framework.

View 1 Replies

Flex :: Embed Image Into Grid Column?

Apr 5, 2010

Is there an easy way to embed an image into a flex grid column? Something similar to[url]...

View 1 Replies

Flex :: Get The Position In A Grid From A Dynamic Object?

Apr 15, 2010

On GridItem object there's a colIndex and on GridRow a rowIndex. But both are declared internal so I do not have acces on that information.

Is there another way to get the position of an object in a grid.

View 1 Replies

Flex :: Css File For Advance Data Grid?

May 15, 2010

any one send me the css file to have good look n feel for advance datagrid.

View 2 Replies

Flex :: Add Sortcomparefunction To Dynamic Data Grid In It?

May 28, 2010

I am trying to create a dynamic datagrid in Flex 3, I have a list of columns a list of objects which correspond to datapoints for those columns which I fetch from a url. While the grid works perfectly fine the problem is that sorting on the columns is done in lexical order.[code]...

View 1 Replies

Flex :: Drag And Drop On Lattice Grid?

Feb 27, 2011

I am trying to build a visual simple electric circuitry model. Towards thata) I am looking to build a drag & drop functionality, whereby I have items (wires, resistors, battery) that can be dragged and dropped on screen where I have a 10 x10 grid- the dropped items will take line positions on the grid based on where they fall.Should I do this using the mouseX, mouseY and connect them to grid points they fall closest to? The typical drag and drop examples I have seen, don't concern themselves with exact position in destination- which is obviously important here

View 1 Replies

Flex :: Data Grid Computed Column?

Mar 23, 2011

How to make a computed column in Flex datagrid? example:

<mx:DataGrid dataProvider="{ConsoleDetails}" id="datagrid">
<mx:columns>
<mx:DataGridColumn headerText="Absent Hrs" dataField="absentHrs"/>

[code].....

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved