The advanceddatagrid tag has no wiki summary.
1
vote
0answers
9 views
Multi Insert data grid with Add new Coloumn button and Add new Row Button
i have tables products and sale transaction.i would like someone to show me an example either in jsfiddle or any other link . of how i can achieve the following.
am not sure how i can implement the ...
-1
votes
0answers
28 views
Clicking AdvancedDataGrid row with itemEditor causes error
I have AdvancedDataGrid with some data and itemEditor set to one column. If I click the column with itemEditor set to, datagrid does not show itemEditor instead showing me an error
TypeError: ...
0
votes
0answers
40 views
datagrid columns more than one sources for bindind
Hello I have a datagrid which has 10 columns. The first take their values from the itemsource property of the datagrid. But the last two I want them to take their values from an other source.
To be ...
0
votes
1answer
16 views
AdvancedDataGrid Width more than the Parent Container?
Here is the hierarchy of my controls:
<Canvas width="100%" height="100%">
<ViewStack width="100%" height="100%">
<box id="box1" width="100%" height="100%">
...
0
votes
2answers
59 views
AdvancedDataGridColumn is less advanced than GridColumn?
Something that works
<s:GridColumn dataField="country.code" headerText="Country Code"/>
Something that doesn't
<mx:AdvancedDataGridColumn dataField="country.code" headerText="Country ...
0
votes
0answers
128 views
Flex: AdvancedDataGridColumn tooltip interference
The AdvancedDataGridColumn has a property showDataTips. If this is set to true then each cell in the AdvancedDataGridColumn will show a toolTip on rollOver. There is just one problem, the toolTip ...
1
vote
0answers
210 views
Flex 4 MX AdvancedDataGrid embedded font in header reverting to Times for only some users
I have a Flex 4.5 Application. We are using Spark DataGrids for the majority of our tables. However, there are a couple of instances where we need to use the MX AdvancedDataGrid as we need to do ...
0
votes
1answer
32 views
ADG drawVerticalLine issue
I have an issue on the AdvancedDataGrid that the verticalLines are not always drawn correctly when the Grid is scrolled
Screenshot:
As you can see it afflicts the entire row up to first ...
1
vote
1answer
48 views
how to change date 2012-03-24 to 03/24/2013 in flex
override public function set data(value:Object):void
{
super.data = value;
if(data["date"] == ' ')
{
var d:DateFormatter = new DateFormatter();
...
1
vote
1answer
55 views
AdvancedDataGrid Flex Analogue
Could you suggest me please any Flex 3 (MX) component, which works like Flex's AdvancedDataGrid but much easier?
I need only hierarchical view for data and ability to easily customize it's view. ...
1
vote
1answer
125 views
Setting header color of one column in AdvancedDataGrid doesn't work
Need help with this issue. I need to change header color.
The following doesn't work:
column.setStyle(StyleNames.HEADER_COLORS, "#FF7F00");
0
votes
1answer
137 views
How to set advanced data grid column from a xternal xml?
I have a xml file
<Column id="first name" headerLabel="first name" dataField="first name" />
<Column id="regionName" headerLabel="Region" dataField="region_name" />"
<Column ...
0
votes
0answers
51 views
How to get data in Advancedatagrid from database in parent child in flex
Basically I need to get data in AdvanceDataGrid in hierarchial order.
I am able to it from ArrayCollection or xml .
But how to do this using PHP Data Services ??
Using PHP data services I am able to ...
0
votes
2answers
106 views
How can I get whether advanceddatagrid data is modified or not in flex?
I have an advanced data grid with many rows and columns(editable). I want to save the data from grid only if there is any change made in the grid. How can this be done without using boolean variable? ...
0
votes
1answer
43 views
Advanced data grid event handling
I have an advanced datagrid in my project. when i load it more than 2times i get the following error
TypeError: Error #1010: A term is undefined and has no properties.
at ...
0
votes
0answers
71 views
In a 'customized' DataGrid why a RowGroup shrinks another?
I have a very strange issue with a DataGrid. Luckily I could do the scenario in a tiny example, the solution is uploaded here, download it and go to the last part of this question 'Steps to destroy an ...
1
vote
1answer
128 views
Assigning arraycollection in component as dataprovider for datagrid in main app
Hi I have a simple (I think) question. I have the following custom component in Flex 4.6 (partial code).
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value ...
1
vote
0answers
523 views
Applying Item Renderer to Flex Advanceddatagrid
I'm trying to apply a custom item renderer to a Flex AdvancedDataGrid. I'm testing right now by applying a solid black square to the parent nodes @ depth="1". The black square is not the final item ...
0
votes
1answer
45 views
Advanced jqGrid
What am I doing wrong in my jqGrid? I just want to show my datas in a advanced datagrid like flex.
url: '@Url.Action("Index")',
datatype: 'json',
mtype: 'POST',
postData: { p_Filtro: filtro, ...
0
votes
0answers
131 views
Flex get the selected item parent node in hiearchical data in advanceddatagrid
I have hierarchical data in my advanced datagrid. How to get the parent node of the selected item ?. Also I need to modify certain values of hierarchical data. Do let me know as how to acheive it.
0
votes
1answer
324 views
Flex AdvancedDataGrid hierarchical view itemrenderer
I display hierarchical data in my AdvancedDatagrid. I have set a checkbox as itemrenderer for the column which displays the hierarchical .Each leaf node in the view has checkbox next to it.
Suppose ...
0
votes
0answers
95 views
Flex Display checkbox only on leaf node of Hiearchial data of AdvancedDatagrid
I just want to display checkbox only for leaf nodes in hierarchial data list. On click of the checkBox i need to get the row value. If I set checkbox as defaultLeafIcon, on opening and closing of ...
0
votes
1answer
264 views
how to display checkbox in hierarchial data display in flex advanced datagrid
In my advanced datagrid, I am displaying hierachial data. Instead of the folder icon, i need to display a checkbox which i can select or unselect it. Based on the selected checkbox , i need to display ...
0
votes
0answers
114 views
Selection in a ComboBoxEditor change the row selected in DataGrid
Here is a good problem :
I've got an AdvancedDatagrid with Combobox as ItemEditor (until there, no problems ...).
This ComboBoxEditor get this behavior : selection = close editor
BUT
when I click ...
0
votes
0answers
527 views
set background color of a cell in advance datagrid
How to set background color of specific cells in datagrid. I tried it through item renderer. But the problem with item renderer is that until the data is not populated in datagrid background color ...
0
votes
1answer
145 views
Expand and Collapse in treecolumn in advancedgrid in Flex
Can anyone say how I can expand and collapse treeColumn value in advancedGrid in Flex under a particular parent. I just want to expand and collapse only the children under a particular parent node in ...
0
votes
0answers
33 views
row span for Advancedatagrid in flex 3
Can anybody please help me or give sugession for how to merge two or more datagrid rows same like merging rows in html table.
Thanks in advance !
0
votes
1answer
49 views
Why is AdvancedDataGrid Width more than the Parent Container?
Here is the hierarchy of my controls:
<Canvas width="100%" height="100%">
<ViewStack width="100%" height="100%">
<box id="box1" width="100%" height="100%">
...
1
vote
0answers
45 views
AdvancedDataGrid width Issue on Scaling
I need an immediate help with Regards to Flex 4 scaling behavior.
Problem:
In our project we have the custom ADG (AdvancedDataGrid) and a zoomer control in bottom to control it's scaling, the scale ...
0
votes
0answers
25 views
Dynamically added column throwing error at labelfunction
I have 5 sets of column .Dynamically adding this column to datagrid based on 5 inputs. Couple of columns having LABLEFUNCTION others do not have.Getting error at lablefunction method even if assign ...
1
vote
1answer
114 views
Drag drop data between 2 advancedDataGrid and clone instance
I have 2 advanceddatagrid with dataprovider based on an arraycollection of an instanciated actionscript class.
I want to copy and duplicate data from the datagrid1 to the datagrid2...
For duplicate ...
1
vote
1answer
130 views
Flex AdvancedDataGrid (mx) How can I get the dataGrid item on a mouseWheel Event
I have an (mx) AdvancedDataGrid and when I use the wheel on my mouse, I want to capture the item in my dataGrid that I moused over using the wheel on my mouse.
I added: ...
0
votes
1answer
149 views
Flex Advanceddatagrid scrollbar width
I am using an advanceddatagrid in a Flex4.6 solution. I have two advanceddatagrids that are placed on top of each other. At the moment I've got it to work so that moving the bottom horizontal ...
0
votes
1answer
158 views
How to access to AdvancedDataGrid combobox value
I try to access AdvancedDataGrid - AdvancedDataGridColumn value? Its ComboBox and I use this code to access:
'"+ myGrid_olculer.dataProvider[k].data + "'
Then the result is:
INSERT INTO ...
1
vote
2answers
690 views
How to add an icon to an AdvancedDataGrid column header and keep word wrap feature for the text
As stated, I'm trying to obtain column headers consisting of an icon and wrappable text in a flex AdvancedDataGrid.
(EDIT: I forgot to mention an important part of the context: the columns are added ...
0
votes
0answers
142 views
Flex hierarchical data with XML set visible=false components node
I have an xml as data provider of my AdvancedDataGrid and I convert this xml to a Hirarchical data so:
<Atividades>
<Atividade codigo="1" >
<Atividade codigo="1.1" >
...
0
votes
0answers
316 views
Dynamically display datagrid column value using ItemRenderer
I’m having some issues figuring out how to display the column value using an item renderer for a dynamically generated datagrid column. I'm assigning an itemrenderer as part of the column definition ...
0
votes
1answer
182 views
flex3: AdvancedDataGrid with many LinkButton itemrenderers getting performance issue
I am facing loading time taking - performance issue due to many linkbuttons in the datagrid.
Suppose, In my page, there are 4 pod(panel) objects, and each containing ADGrid.
As of now, for some ...
0
votes
1answer
434 views
AS3 Datagrid multiple selection
I am working with Flash AS3 (not Flex) .
I have a datagrid with "allowMultipleSelection = true";
I want get and store the selected rows in my Data Base only when the row selection is completed using a ...
0
votes
1answer
234 views
Access a column field property of advanced datagrid in the header renderer
I have to access the column field property of an advance datagrid in the header renderer.
Basically what i am trying to achieve is that whenever i click on a column header field then its ...
0
votes
0answers
41 views
itemrenderer script
I am drawing a blank and searches all day have not provided the answers.
I have an ADG with a few columns. The first one is an itemrenderer (check box, but user may want a button). When the user ...
0
votes
2answers
153 views
Datagrid Column header setup
I have a query that returns 2 columns from joining 2 entities as the following:
var myQ = myDataContext1.Entity1.Join(myDataContext1.Entity2, a=>a.id, b=>b.id, (a, b)=> new Tuple<int, ...
0
votes
1answer
261 views
AdvancedDataGrid add Column by Dataprovider
I have a problem with the AdvancedDataGrid in Flex.
I have a AdvancedDataGrid with a Bindable ArrayCollection as DataProvider. When I set the ArrayCollection (by Clicking on Button 1) the ...
0
votes
0answers
171 views
Dragging rows in ordered Flex DataGridColumn
I'am having following issue that I don't know a good approach to ...
Problem:
I have a AdvancedDataGrid with a column with dataField 'Follow number', this column can be ordered. But in this datagrid ...
0
votes
0answers
133 views
Locked Column Count not working for the Hierarchical Advanced Datagird
The LockedColumnCount is not working fr the Hierarchical Advanced Datagrid....
I have a Hierarchical ADG.....it has column , column , colum Grp( has three cols , col grp with 2 children), and one ...
0
votes
1answer
294 views
flex4 maven compile,TypeError: Error #1007: Instantiation attempted on a non-constructor,AdvancedDataGrid
There is multiple module project, A is application, B,C,D is module. Compile successful,but when I load module B ,pop up error:
TypeError: Error #1007: Instantiation attempted on a non-constructor.
...
0
votes
1answer
213 views
Dynamically change DefaultLeafIcons in AdvancedDataGrid
Overview:
I have an advancedDataGrid that I am using a GroupingCollection on and I want to be able to change the individual DefaultLeafIcons (no children icon) based upon a value I get from the ...
0
votes
0answers
130 views
MyHierarchicalData with ArrayCollections containing different objects
This is where I call the HierarchicalData
<component:MyHierarchicalData source="{dpHierarchy}" childrenField="children"/>
dpHierarchy contains a list of Radio.
And My Object Radio ...
0
votes
1answer
290 views
How do you exclude specific columns from child rows within in an AdvancedDataGrid when displaying hierarchial data?
I have an AdvancedDataGrid that is displaying information in a hierarchical fashion; a list of sites and their associated sub areas.
The data structure is:
public interface ISite
{
function get ...
0
votes
1answer
204 views
Create and send Hierarchical Data from flex to java
I'm trying to create a Hierarchical Data Grid in flex using AdvancedDataGrid. The data is retrieved from a remote java object.
For project and requirement purposes, GroupingCollection is NOT an ...

