RE: [flexcoders] Error #1010: A term is undefined and has no properties -- RTE with Datagrid

2006-12-06 Thread Tracy Spratt
undefined and has no properties -- RTE with Datagrid Hi, I have a DataGrid with a custom item renderer (containing a Checkbox and Label). As soon as the data is populated via an XML returned by the server, the following error comes up: TypeError: Error #1010: A term is undefined and has no

[flexcoders] Re: Error #1010: A term is undefined and has no properties -- RTE with Datagrid

2006-12-06 Thread jmorpher03
; To: flexcoders@yahoogroups.com > Subject: [flexcoders] Error #1010: A term is undefined and has no > properties -- RTE with Datagrid > > > > Hi, > > I have a DataGrid with a custom item renderer (containing a Checkbox > and Label). As soon as the da

[flexcoders] Error #1010: A term is undefined and has no properties -- RTE with Datagrid

2006-12-05 Thread jmorpher03
Hi, I have a DataGrid with a custom item renderer (containing a Checkbox and Label). As soon as the data is populated via an XML returned by the server, the following error comes up: TypeError: Error #1010: A term is undefined and has no properties. at mx.controls.listClasses

Re: [flexcoders] Re: Error #1010: A term is undefined and has no properties -- RTE with Datagrid

2006-12-07 Thread Harish Sivaramakrishnan
ubject: [flexcoders] Error #1010: A term is undefined and has no > properties -- RTE with Datagrid > > > > Hi, > > I have a DataGrid with a custom item renderer (containing a Checkbox > and Label). As soon as the data is populated via an XML returned by > the serve

[flexcoders] Re: Problem reading XML returned from Webservice

2009-06-01 Thread Claudio M. E. Bastos Iorio
)); //returns bs, ok. But: //I receive an error on: trace("Name: " + myXML..Fund[0].Name); //A term is undefined and has no properties Also tried, default xml namespace = new Namespace("http://anotherdomain.com/";); //and also tried default xml namespace = new Namespace

[flexcoders] Re: ListBase ScrollVertically error #1010

2007-03-29 Thread confined_to_death666
Hey Alex, When I check the app in the debug version I get the following error on mousewheelscroll: TypeError: Error #1010: A term is undefined and has no properties. at mx.controls.listClasses::ListBase/mx.controls.listClasses:ListBase::scro\ llVertically() [C:\dev\flex_201_ja\sdk\frameworks

Re: [flexcoders]How would you rewrite this isset PHP condition in AS3?

2009-01-19 Thread dorkie dork from dorktown
ed properties var b1:Boolean = obj.hasOwnProperty("apple.color"); // returns false var b2:Boolean = obj.hasOwnProperty("banana.color"); // returns false var b3:* = typeof(obj.apple.color); // returns string var b4:* = typeof(obj.banana.color); // Error #1010: A term is undefined and ha

[flexcoders] Tree descendants

2008-02-19 Thread Rafael Faria
I'm trying to get the descendants from my XML which has the attribute "enabled = true" if i try XML(dataProvider).descendants().(@enabled = "true") i get an error " A term is undefined and has no properties." which is understandable because not every

[flexcoders] Re: Slow datagrid updates

2009-01-07 Thread Jason B
Sorry Don't give up I might of missed what you meant > "1010"? What the heck is that? An actionscript error has occured: TypeError: Error #1010 A term is undefined and has no properties. at line 69 At that line is where it uses setItem > What is the data type of the D

[flexcoders] Data Grid ShowHeaders property problem

2009-08-26 Thread Satish Chowdary
Hi All, i am trying to disable datagrid column headers so i use showheader property but it gives the following Error. it throws following Error Error #1010: A term is undefined and has no properties. Any Idea to resolve this Thanks inAdvacne Satish సతీష్ See the Web's bre

[flexcoders] using e4x - how do I determine if an element is there?

2009-08-25 Thread luvfotography
Hi, what's an efficient way of doing this? This works(most of the time) var LargeImage:String = event.result..LargeImage[0].URL; except when LargeImage is not there, then I get: TypeError: Error #1010: A term is undefined and has no properties. Do I first get LargeImage, then if it e

[flexcoders] datagrid error w/2.01

2007-01-11 Thread Paul Hastings
an app started failing after w recompiled w/2.01. it started throwing: TypeError: Error #1010: A term is undefined and has no properties. at mx.controls::DataGrid/mx.controls:DataGrid::mouseUpHandler()[C:\dev\flex_201_gmc\sdk\frameworks\mx\controls\DataGrid.as:4220] errors on a grid defined

[flexcoders] accessing node via XML.child()

2007-11-09 Thread Matthew Ganz
new XML(s); var coordinatesStr:String = gml.child("gml:coordinates"); } i get the error message: 'a term is undefined and has no properties' what does that mean? can't i retrieve by node name using the child() method? any tips are appreciated. thanks. -- matt.

RE: [flexcoders] Re: ListBase ScrollVertically error #1010

2007-03-30 Thread Alex Harui
lex, When I check the app in the debug version I get the following error on mousewheelscroll: TypeError: Error #1010: A term is undefined and has no properties. at mx.controls.listClasses::ListBase/mx.controls.listClasses:ListBase::scro llVertically() [C:\dev\flex_201_ja\sdk\frameworks\m

Re: [flexcoders]How would you rewrite this isset PHP condition in AS3?

2009-01-19 Thread Sam Lai
rk from dorktown >> >> wrote: >> >> > I have a PHP statement that I am trying to write in AS3. So far it >> >> > errors >> >> > out because the properties do not exist on it yet. How would/should I >> >> > rew

[flexcoders] SetInteval Error

2008-02-14 Thread Deniz Davutoglu
{ for (var i:int=0;i<=moods.length;i++){ moods[i].content.root.prevFrame() } } TypeError: Error #1010: A term is undefined and has no properties. at index_fla::MainTimeline/loadObjects() at Function/http://adobe.com/

[flexcoders]How would you rewrite this isset PHP condition in AS3?

2009-01-18 Thread dorkie dork from dorktown
" property does not exist yet and it generates a // TypeError: Error #1010: A term is undefined and has no properties. if (isset(this.language_data['STYLES']['BRACKETS'][0])) { ddfd

Re: [flexcoders] Re: Problem reading XML returned from Webservice

2009-06-02 Thread Manish Jethani
On Tue, Jun 2, 2009 at 12:15 PM, Claudio M. E. Bastos Iorio wrote: > trace("Name:  " + myXML..Fund[0].Name); //A term is undefined and has no > properties Okay, I'm no expert in E4X, but apparently you have to qualify with a namespace if you're using the "..&qu

[flexcoders] Re: Data Grid ShowHeaders property problem

2009-08-26 Thread turbo_vb
t; it throws following Error > Error #1010: A term is undefined and has no properties. > > Any Idea to resolve this > > > Thanks inAdvacne > Satish > సతీష్ > > > > See the Web's breaking stories, chosen by people like you. Check out Yahoo! Buzz. http://in.buzz.yahoo.com/ >

[flexcoders] TypeError - Please Help

2010-03-11 Thread chefbrittison
or: Error #1010: A term is undefined and has no properties. at mx.containers::Grid/updateDisplayList() at mx.core::UIComponent/validateDisplayList() at mx.core::Container/validateDisplayList() at mx.managers::LayoutManager/validateDisplayList() at mx.managers

[flexcoders] Re: Error #1010: A term is undefined and has no properties -- RTE with Datagrid

2006-12-06 Thread jmorpher03
Phew, finally got it working. Sorry for troubling you guys. The issue was that I was giving the dataProvider to the DataGrid only at Runtime. I put a blank ArrayCollection as a dataProvider to the DataGrid and its working without any issues when I set the dataProvider with results from the ser

[flexcoders] DataGridColumn headerText Runtime Exception , a Flex bug ?

2007-03-06 Thread jmorpher03
Hi, I am getting a runtime error stating : TypeError: Error #1010: A term is undefined and has no properties. This happens when I try to set the headerText for a dynamically created DataGridColumn which contains spaces and special characters. For ex: var myDGCol:DataGridColumn = new

[flexcoders] Possible TileList bug

2007-01-24 Thread Dmitry Miller
undefined and has no properties. at mx.controls.listClasses::TileBase/mx.controls.listClasses:TileBase::configureScrollBars() at mx.controls.listClasses::ListBase/mx.controls.listClasses:ListBase::updateDisplayList() at mx.controls.listClasses::TileBase

[flexcoders] Problem reading XML returned from Webservice

2009-06-01 Thread Claudio M. E. Bastos Iorio
lue, right?: //code in result function for webservice component var lastXML:XML = XML(event.result) trace("Name in XML: " + lastXML..Fund[0].Name); //gives me an Error: A term is undefined and has no properties. But, if I manually add the XML in the code, and removes the whole xmlns sche

[flexcoders] Accessing XML attribute through ArrayCollection

2008-03-24 Thread Tony Armstrong
Hello all, I am using an ArrayCollection, outputted from an HTTPService. I wish to access the 'id' attribute from an XML file. I've tried using the e4x methods to no avail. I get an error: "TypeError: Error #1010: A term is undefined and has no properties." If I add the

Re: [flexcoders]How would you rewrite this isset PHP condition in AS3?

2009-01-18 Thread Ralf Bokelberg
ld/should I > rewrite this for AS3? Here is the statement: > > // at the time this is run "this.language_data" is an object with 2 > properties > // the "STYLES" property does not exist yet and it generates a > // TypeError: Error #1010: A term is undefined and

Re: [flexcoders] Problem reading XML returned from Webservice

2009-06-01 Thread Manish Jethani
ebservice component > var lastXML:XML = XML(event.result) > trace("Name in XML: " + lastXML..Fund[0].Name); //gives me an Error: A term > is undefined and has no properties. You need to use a namespace. var ns:Namespace = new Namespace("http://mydomain.com/&

[flexcoders] Stumped - End of a test error

2009-03-29 Thread Wally Kolcz
I am creating a quizer for a client. It goes through a 100 questions. When it passes the last question, it is supposed to remove the VBox containing the question text, textbox, the section text, and button. I am getting this error: TypeError: Error #1010: A term is undefined and has no

RE: [flexcoders] using e4x - how do I determine if an element is there?

2009-08-25 Thread Alex Harui
then I get: TypeError: Error #1010: A term is undefined and has no properties. Do I first get LargeImage, then if it exists, then get .URL ? or is there a better way??? thanks,

[flexcoders] DataGrid error when scrolling to last row and starting item edit

2010-06-03 Thread technusiast
, results in this error: TypeError: Error #1010: A term is undefined and has no properties. at mx.controls::DataGrid/commitEditedItemPosition()[E:\dev\4.0.0\frameworks\projects\framework\src\mx\controls\DataGrid.as:4064] at mx.controls::DataGrid/updateDisplayList()[E:\dev\4.0.0\frameworks\projects

Re: [flexcoders]How would you rewrite this isset PHP condition in AS3?

2009-01-18 Thread dorkie dork from dorktown
t; properties > > // the "STYLES" property does not exist yet and it generates a > > // TypeError: Error #1010: A term is undefined and has no properties. > > if (isset(this.language_data['STYLES']['BRACKETS'][0])) { > > > > ddfd > > > > > >

Re: [flexcoders] TypeError - Please Help

2010-03-11 Thread Alex Harui
ing rows dynamically within the updateDisplayList() method based on the value of a property. I continue to get this error and I don't have any idea how to fix it. TypeError: Error #1010: A term is undefined and has no properties. at mx.containers::Grid/updateDisplayList() at mx.core::UIComp

[flexcoders] Dynamic icons for LinkButton?

2007-05-01 Thread Greg Groves
or a Tree control by using iconFunction, but unfortunately that doesn't exist for LinkButton. I've tried several other things, but nothing works. Also, the click attribute compiles, but does not work... I get the message "TypeError: Error #1010: A term is undefined and has no propertie

RE: [flexcoders] SetInteval Error

2008-02-14 Thread Alex Harui
erval(loadObjects,1000) function loadObjects():void{ for (var i:int=0;i<=moods.length;i++){ moods[i].content.root.prevFrame() } } TypeError: Error #1010: A term is undefined and has no properties. at index_fla::MainTimeline/loadObjects() at Function/http://adobe.com/AS3/2006/builtin::apply <http:

[flexcoders] using curve, drawPolyLine throws error.. any suggestions

2009-09-14 Thread djhatrick
love when classes are sealed, how do i debug? mx.charts.chartClasses::GraphicsUtilities$/drawPolyLine TypeError: Error #1010: A term is undefined and has no properties. at mx.charts.chartClasses::GraphicsUtilities$/drawPolyLine()[C:\work\flex\dmv_automation\projects\datavisualisation

Re: [Spam] RE: [SPAM] Re: [Spam] Re: [flexcoders] Checkbox in Datagrid

2009-10-15 Thread Agha Mehdi
so this is what I am doing. it gives me "A term is undefined and has no properties." public function brigFiles_clickHandler(_comp:CheckBox):void { var dp:Object = datagrid.dataProvider; var cursor:IViewCursor=dp.createCursor(); while( !cursor

[flexcoders] Re: Accessing XML attribute through ArrayCollection

2008-03-25 Thread jer_ela
ote: > > Hello all, > I am using an ArrayCollection, outputted from an HTTPService. I wish > to access the 'id' attribute from an XML file. I've tried using the > e4x methods to no avail. I get an error: > > "TypeError: Error #1010: A term is undefined

[flexcoders] TileList Bug

2008-04-15 Thread morgan.gustafsson
10: A term is undefined and has no properties.) mx.controls.listClasses::TileBase/createItemRenderer The action that causes the error is on line 1952 in TileBase.as: delete freeItemRenderersByFactory[factory][renderer]; What it does it that its trying to recycle a itemRenderer that shoul

[flexcoders] Scrollbar error in a List with an ItemRenderer

2007-09-13 Thread kevintuhumury
scrollbar of my List, maximize my browser window, use the scrollbar, resize back to 1024 x 768 and than use the same scrollbar again I get the following error: TypeError: Error #1010: A term is undefined and has no properties. at mx.controls.listClasses::TileBase/mx.controls.listC

RE: [flexcoders] Re: Slow datagrid updates

2009-01-07 Thread Tracy Spratt
what you meant > "1010"? What the heck is that? An actionscript error has occured: TypeError: Error #1010 A term is undefined and has no properties. at line 69 At that line is where it uses setItem > What is the data type of the DG dataProvider? I'm using XML datatype hope this helps

Re: [flexcoders]How would you rewrite this isset PHP condition in AS3?

2009-01-19 Thread Sam Lai
object with 2 >> > properties >> > // the "STYLES" property does not exist yet and it generates a >> > // TypeError: Error #1010: A term is undefined and has no properties. >> > if (isset(this.language_data['STYLES']['BRACKETS'][0])) { >> > >> > ddfd >> > >> > > >

[flexcoders] [Complicated ? :-p] dynamic itemRenderer + dataprovider problems

2009-02-23 Thread fotis.chatzinikos
+ renderer (via the button) i get the following: TypeError: Error #1010: A term is undefined and has no properties. at mx.controls::List/createItemRenderer() at mx.controls::List/http://www.adobe.com/2006/flex/mx/internal::getMeasuringRenderer() at mx.controls::List

Re: [flexcoders] Re: Data Grid ShowHeaders property problem

2009-08-27 Thread Satish Chowdary
com, Satish Chowdary wrote: > > Hi All, > > i am trying to disable datagrid column headers so i use showheader property > but it gives the following Error. > it throws following Error > Error #1010: A term is undefined and has no properties. > > Any Idea to resolve t

Re: [flexcoders] DataGrid error when scrolling to last row and starting item edit

2010-06-03 Thread Alex Harui
TextInput). Consistently, when there are too many rows for one pageful, scrolling down to the last row and starting item edit, results in this error: TypeError: Error #1010: A term is undefined and has no properties. at mx.controls::DataGrid/commitEditedItemPosition()[E:\dev\4.0.0\framework

[flexcoders] Is this a bug in mx:List?

2006-12-21 Thread zenwarden
I was implementing a filter on a list of values and noticed that when I scroll down the list and then try and filter an error is thrown. Here is the error: TypeError: Error #1010: A term is undefined and has no properties. at mx.controls::List/::adjustVerticalScrollPositionDownward

[flexcoders] Re: RTE when using itemRenderers in DataGrid.

2007-01-10 Thread Jim Robson
tains * the itemRenderer instances that render each data provider item. * This is a two-dimensional row major array * (array of rows that are arrays of columns). Since the error indicates that "A term is undefined and has no properties" it seems that the function continues to loop a

[flexcoders] Re: Line chart data points being "clipped off"

2006-08-30 Thread RBullotta
the chart updates "empty" as expected): TypeError: Error #1010: A term is undefined and has no properties. at mx.charts.chartClasses::GraphicsUtilities$/drawPolyLine() at mx.charts.renderers::LineRenderer/mx.charts.renderers:LineRenderer::upda teDisplayList()

[flexcoders] Problem with Line Renderer in Flex Charting

2008-06-18 Thread Loyvin
I get this error whenever I access charts which has LineSeries to it then switching to charts that has only 1 element in the data provider - therefore a PlotSeries is used. == TypeError: Error #1010: A term is undefined and has no

[flexcoders] Left focus from browser, back and click, editable DG with empty dataprovider got RTE Error #1010.

2007-11-13 Thread George
lly I find a problem. When the DG don't have any items, click it, then move mouse out of browser (so browser lost focus), and then go back and click that DG again. I got RTE all the time: TypeError: Error #1010: A term is undefined and has no properties. at mx.controls::DataGrid/scrollTo

[flexcoders] Throwing error on doDrag

2008-05-14 Thread Josh Millstein
rag() method to start the drag. DragManager.doDrag(dragChild, ds, event, image); The problem throws an error on the last line saying A term is undefined and has no properties And then opens up the AdvancedDataGrid.as file and shows me this line. public function get firstVisibleItem():Object

[flexcoders] Help needed in drag and drop of Flex tree

2007-09-06 Thread Sujatha Malik
, set a flag which triggers 'invalidateDisplayList' and 'invalidateList' for tree (and other listeners). 4. The tree refreshes fine. But as soon as I drag and drop between trees again, I get this error in Tree.as: TypeError: Error #1010: A term is undefined and has no pr

Re: [flexcoders] Stumped - End of a test error

2009-03-29 Thread Paul Andrews
term is undefined and has no properties. Based on the line number, its this line: thisQuestion.text = quizXML.questions[q].question.toString();. q is the number of the XML node, starting at 0. quizXML.questions.length() equals 100. It shows question 100, but throws the error after I hit the

[flexcoders] Re: TypeError - Please Help

2010-03-12 Thread chefbrittison
d adding rows dynamically within the > updateDisplayList() method based on the value of a property. I continue to > get this error and I don't have any idea how to fix it. > > TypeError: Error #1010: A term is undefined and has no properties. > at mx.containers::Grid

[flexcoders] repeaterIndices Bug?!

2006-07-19 Thread Steve Cox
];     In non-debug mode I’m getting the following error: TypeError: Error #1010: A term is undefined and has no properties.     Has anyone seen this?!   Steve       __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

[flexcoders] filtering tree leaves

2007-02-24 Thread gdoucen
branches still have at least one item displayed otherwise as soon as i try to expand/collapse a branch, this error is generated: TypeError: Error #1010: A term is undefined and has no properties. at mx.controls:: Tree/expandItem()[C:\dev\flex_201_gmc\sdk\frameworks\mx\controls\Tree.as:1740

[flexcoders] ListBase ScrollVertically error #1010

2007-03-27 Thread confined_to_death666
nd removing the variableRowHeight="true". Does anyone have any idea on how to solve this error? It seems to be a Flex bug. Here is my exact error: TypeError: Error #1010: A term is undefined and has no properties. at mx.controls.listClasses::ListBase/mx.controls.listClasses:Lis

[flexcoders] XML attributes

2008-11-24 Thread fishburn_david
#1010: A term is undefined and has no properties. at MMO/doDragDrop()[C:\flex\src\MMO.mxml:770] at MMO/__sd_dg_service_definition_dragDrop()[C:\flex\src\MMO.mxml:1006] at flash.events::EventDispatcher/dispatchEventFunction() at flash.events::EventDispatcher/

Re: [flexcoders]How would you rewrite this isset PHP condition in AS3?

2009-01-18 Thread dorkie dork from dorktown
t I am trying to write in AS3. So far it errors > out because the properties do not exist on it yet. How would/should I > rewrite this for AS3? Here is the statement: > > // at the time this is run "this.language_data" is an object with 2 > properties > // the "ST

[flexcoders] Runtime error requires Flex restart

2006-05-31 Thread ryan84c
I'm using a style sheet in one of my apps and for some reason, every once in a while, I get this error at run-time: TypeError: Error #1010: A term is undefined and has no properties. at mx.styles::StyleManager$/http://www.adobe.com/2006/flex/mx/internal::initProtoChainRoots()    

[flexcoders] Re: RTE when using itemRenderers in DataGrid.

2007-01-10 Thread michael_ramirez44
s that are arrays of columns). > > Since the error indicates that "A term is undefined and has no > properties" it seems that the function continues to loop after all of > the itemRenderer instances have been evaluated, resulting in a null > pointer exception. > &

[flexcoders] Re: datagrid error w/2.01

2007-01-11 Thread bsdensmore
started failing after w recompiled w/2.01. it started throwing: > > TypeError: Error #1010: A term is undefined and has no properties. > at mx.controls::DataGrid/mx.controls:DataGrid::mouseUpHandler()[C:\dev\flex_201_gmc\sdk\frameworks\mx\controls\DataGrid.as:4220] > > errors on a

[flexcoders] strange list error

2006-10-10 Thread coldfusionpaul
we're getting a strangr & hard to track down error, seemingly from a list. it's been reported that if the app is left to stand for a while & then any of it's bit's are clicked on it throws the following error. any ideas? thanks. TypeError: Error #1010: A term is und

[flexcoders] RTE in List when filtering ArrayCollection

2006-08-18 Thread João Fernandes
Hi everyone,   I’m having this error   TypeError: Error #1010: A term is undefined and has no properties.     at mx.controls::List/::adjustVerticalScrollPositionDownward()     at mx.controls::List/mx.controls:List::configureScrollBars()     at

[flexcoders] Compilation error, is this a bug?

2006-09-06 Thread Diego Guebel
Trying to run the iframe example from: http://www.deitte.com/archives/2006/08/finally_updated.htm it fires this error: An internal error occurred during: "Retrieving labels". TypeError: Error #1010: A term is undefined and has no properties. at mx.styles::StyleMan

[flexcoders] Re: DataGridColumn headerText Runtime Exception , a Flex bug ?

2007-03-06 Thread jmorpher03
e DataGrid mxml, set the headerHeight to a higher value(to accomodate 2/3 lines. For ex : Regards, Asgar. --- In flexcoders@yahoogroups.com, "jmorpher03" <[EMAIL PROTECTED]> wrote: > > Hi, > I am getting a runtime error stating : > > TypeError: Error #1010: A t

Re: [flexcoders] Dynamic icons for LinkButton?

2007-05-01 Thread Michael Schmalle
work... I get the message "TypeError: Error #1010: A term is undefined and has no properties.at FHMD2/___LinkButton1_click()" if I click the link. Is there any way to do this? Thanks, Greg -- Teoti Graphix http://www.teotigraphix.com Blog - Flex2Components http://www.flex2c

[flexcoders] Nested Drag and Drop Error

2008-03-12 Thread scott_stroz
: TypeError: Error #1010: A term is undefined and has no properties. at mx.controls.listClasses::ListBase/showDropFeedback()[E:\dev\3.0.x\frameworks\projects\framework\src\mx\controls\listClasses\ListBase.as:7365] at mx.controls.listClasses::ListBase/dragEnterHandler()[E:\dev\3.0.x

Re: [flexcoders] Stumped - End of a test error

2009-03-29 Thread Wally Kolcz
ough a 100 questions. When it passes the last question, it is supposed to remove the VBox containing the question text, textbox, the section text, and button. I am getting this error: TypeError: Error #1010: A term is undefined and has no properties. Based on the line number, its

RE: [flexcoders] strange list error

2006-10-10 Thread Matt Chotin
ing a strangr & hard to track down error, seemingly from a list. it's been reported that if the app is left to stand for a while & then any of it's bit's are clicked on it throws the following error. any ideas? thanks. TypeError: Error #1010: A term is undefined and has no prop

[flexcoders] Re: filtering tree leaves

2007-02-25 Thread gdoucen
e as soon as i try to expand/collapse a branch, this > error is generated: > > TypeError: Error #1010: A term is undefined and has no properties. > at mx.controls:: > Tree/expandItem()[C:\dev\flex_201_gmc\sdk\frameworks\mx\controls\Tree.as:1740] > at mx.controls:: > Tr

[flexcoders] Nasty LineSeries Bug Causing Hard Crash in Charting Components

2007-02-27 Thread thegiffman
o or two points, but this particular case bombs. Here is my code: http://www.adobe.com/2006/mxml";> Here is the error: TypeError: Error #1010: A term i

RE: [flexcoders] ListBase ScrollVertically error #1010

2007-03-27 Thread Alex Harui
in stead of 100%, setting the rowHeight of the list component and removing the variableRowHeight="true". Does anyone have any idea on how to solve this error? It seems to be a Flex bug. Here is my exact error: TypeError: Error #1010: A term is undefined and has no properties. a

[flexcoders] SWC compiled against Flex 2 SDK only usable in Flex 3 projects

2008-01-16 Thread ben.clinkinbeard
file of my library project. The full stack trace is below. Any help is greatly appreciated. Thanks, Ben TypeError: Error #1010: A term is undefined and has no properties. at mx.styles::StyleManagerImpl/initProtoChainRoots()[C:\dev\flex_201_ja\sdk\frameworks\mx\styles\StyleManagerI

RE: [flexcoders] Tree descendants

2008-02-20 Thread Jim Hayes
ent: 20 February 2008 05:55 To: flexcoders@yahoogroups.com Subject: [flexcoders] Tree descendants I'm trying to get the descendants from my XML which has the attribute "enabled = true" if i try XML(dataProvider).descendants().(@enabled = "true") i get an error

[flexcoders] Error with building dataGrids dynamically

2008-04-25 Thread markgoldin_2000
headers for either grid then I am getting this: TypeError: Error #1010: A term is undefined and has no properties. at mx.controls::DataGrid/drawColumnBackground() [E:\dev\3.0.x\frameworks\projects\framework\src\mx\controls\DataGrid.a s:3010] at mx.controls::DataGrid

[flexcoders] ERROR #1010 datagrid getting lastrequest per search box

2008-04-25 Thread Jason B
);"> {searchstation.text} XML PHP FILE \n Search 1 of 2 ".$_REQUEST['searchstation']." \n Search 2 of 2 ".$_REQUEST['searchstation']." \n "; return; }

RE: [flexcoders] Throwing error on doDrag

2008-05-14 Thread Alex Harui
rag() method to start the drag. DragManager.doDrag(dragChild, ds, event, image); The problem throws an error on the last line saying A term is undefined and has no properties And then opens up the AdvancedDataGrid.as file and shows me this line. public function get firstVisibleItem():Object { --> return l

RE: [flexcoders] Scrollbar error in a List with an ItemRenderer

2007-09-13 Thread Alex Harui
1010: A term is undefined and has no properties. at mx.controls.listClasses::TileBase/mx.controls.listClasses:TileBase::scro llVertically() at mx.controls.listClasses::TileBase/mx.controls.listClasses:TileBase::scro llHandler() at flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEven

[flexcoders] Re: Slow datagrid updates

2009-01-07 Thread Jason B
ednesday, January 07, 2009 10:31 AM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: Slow datagrid updates > > > > Sorry Don't give up I might of missed what you meant > > > "1010"? What the heck is that? > > An actionscript error has occur

Re: [flexcoders] [Complicated ? :-p] dynamic itemRenderer + dataprovider problems

2009-02-23 Thread Fotis Chatzinikos
othly until new data are added to the data provider > that is current. The list picks up the change, but after this when i > try to switch to the second provider + renderer (via the button) i get > the following: > > TypeError: Error #1010: A term is undefined and has no properties. &g

[flexcoders] Programatic Deletion in Tree causes Error #1010:

2009-07-11 Thread Shailesh Mangal
another node in another tree), the node does disappear from the tree but and expandItem operation causes following stack trace: TypeError: Error #1010: A term is undefined and has no properties. at mx.controls::Tree/expandItem()[/Applications/Adobe Flex Builder 3 Plug-in/sdks/3.2.0/frameworks

[flexcoders] httpservice what does this error mean?

2009-08-18 Thread hworke
) toolDataGrid.dataProvider = f_Array; } But the problem is sometime I get the following error. I do not get it all the time but once in a while. Here is the error message - TypeError: Error #1010: A term is undefined and has no properties. at sole1/toolResultHandler()[C:\Users\admin\Documents\Flex Builder 3

[flexcoders] Re: Data Grid ShowHeaders property problem

2009-08-27 Thread turbo_vb
__ > From: turbo_vb timh...@... > To: flexcoders@yahoogroups.com > Sent: Wednesday, 26 August, 2009 5:24:09 PM > Subject: [flexcoders] Re: Data Grid ShowHeaders property problem > > > > Hi Satish, > > You can use headerHeight= "0"

Re: [flexcoders] Re: TypeError - Please Help

2010-03-12 Thread Alex Harui
DisplayList() method based on the value of a property. I continue to > get this error and I don't have any idea how to fix it. > > TypeError: Error #1010: A term is undefined and has no properties. > at mx.containers::Grid/updateDisplayList() > at mx.core::UIComponent/validate

[flexcoders] ALEX: AdvancedDataGrid: last row disappears on click

2010-08-15 Thread charliecrystle
table is set to "false", there is no issue. When ADG.editable is set to "true" or "item", etc, it throws an error when I click on the row: TypeError: Error #1010: A term is undefined and has no properties. at mx.controls::AdvancedDataGridBaseEx/commitEdited

[flexcoders] DragEnabled causing Error 1010

2006-12-23 Thread Mike Weiland
o to: http://tours.aspentreemedia.com/busted.html 2. In the tilelist select all the images 3. Drag them to the horizontal tile list. 4. You should get the following error: TypeError: Error #1010: A term is undefined and has no properties. at mx.controls.listClasses::TileBase/mx.controls.listClasse

RE: [flexcoders] Left focus from browser, back and click, editable DG with empty dataprovider got RTE Error #1010.

2007-11-13 Thread Alex Harui
ror: Error #1010: A term is undefined and has no properties. at mx.controls::DataGrid/scrollToEditedItem() at mx.controls::DataGrid/commitEditedItemPosition() at mx.controls::DataGrid/updateDisplayList() at mx.controls.listClasses::ListBase/validateDisplayList() at mx.managers::Lay

[flexcoders] Re: Tree descendants

2008-02-20 Thread Rafael Faria
e descendants > > I'm trying to get the descendants from my XML which has the attribute > "enabled = true" > > if i try > > XML(dataProvider).descendants().(@enabled = "true") > > i get an error " A term is undefined and has no properties

RE: [flexcoders] using curve, drawPolyLine throws error.. any suggestions

2009-09-14 Thread Alex Harui
djhatrick Sent: Monday, September 14, 2009 1:43 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] using curve, drawPolyLine throws error.. any suggestions love when classes are sealed, how do i debug? mx.charts.chartClasses::GraphicsUtilities$/drawPolyLine TypeError: Error #1010: A term is

[flexcoders] Re: TypeError - Please Help

2010-03-12 Thread valdhor
hin the > > updateDisplayList() method based on the value of a property. I continue to > > get this error and I don't have any idea how to fix it. > > > > TypeError: Error #1010: A term is undefined and has no properties. > > at mx.containers::Grid/updateDisplayList() >

[flexcoders] AdvancedDataGrid: last row disappears on click

2010-08-16 Thread charliecrystle
s set to "false", there is no issue. When ADG.editable is set to "true" or "item", etc, it throws an error when I click on the row: TypeError: Error #1010: A term is undefined and has no properties. at mx.controls::AdvancedDataGridBaseEx/commitEditedIt

[flexcoders] Flex2B3 - Item Renderer and scrolling runtime error

2006-06-30 Thread bhaq1972
is not an IEventDispatcher) 3) Separate issue (observed in the same test). when scrolling. the datagrid headers start moving out of their title areas and overlap into the datagrid rows and gives a runtime error TypeError: Error #1010: A term is undefined and has no properties. at mx.controls.

RE: [flexcoders] Re: Accessing XML attribute through ArrayCollection

2008-03-25 Thread Tracy Spratt
x27;ve tried using the > e4x methods to no avail. I get an error: > > "TypeError: Error #1010: A term is undefined and has no properties." > > If I add the resultFormat="e4x" to the HTTPService, I get the error: > > "Type Coercion failed: cannot conve

RE: [flexcoders] Advanced Data Grid Item Editor

2008-05-14 Thread Tim Stewart
ror: Error #1010: A term is undefined and has no properties. at mx.controls::AdvancedDataGridBaseEx/commitEditedItemPosition()[C:\Work\f lex\dmv_automation\projects\datavisualisation\src\mx\controls\AdvancedDa taGridBaseEx.as:4359] Anyone else seen this? From:

[flexcoders] Re: Enable / Disable Flex Menu Items Programmatically using AS 3.0

2008-06-02 Thread bc24fl
I tried the following: myMenuData.menuitem.(@id=="menuUp")[EMAIL PROTECTED] = "false"; But it returns an error: A term is undefined and has no properties. Any Ideas? Thanks. --- In flexcoders@yahoogroups.com, Marty Pitt <[EMAIL PROTECTED]> wrote: > > thi

Re: [flexcoders]How would you rewrite this isset PHP condition in AS3?

2009-01-18 Thread dorkie dork from dorktown
gt;> out because the properties do not exist on it yet. How would/should I >> rewrite this for AS3? Here is the statement: >> >> // at the time this is run "this.language_data" is an object with 2 >> properties >> // the "STYLES" property does not exist yet and it generates a >> // TypeError: Error #1010: A term is undefined and has no properties. >> if (isset(this.language_data['STYLES']['BRACKETS'][0])) { >> >> ddfd >> > >

[flexcoders] DataGridColumn backgroundColor bug?

2009-05-19 Thread Ben Reynolds
With either showHeaders="false" or headerHeight="0" the code is generating the following error found in DataGrid's drawColumnBackground function: TypeError: Error #1010: A term is undefined and has no properties. at mx.controls::DataGrid/drawColumnBackground()[C:\autobui

[flexcoders] Re: RTE - DataGridHeader/mouseOutHandler

2009-11-30 Thread bhaq1972
nction headerClicked(e:DataGridEvent):void > { > var col:myDGColumn = this.columns[e.columnIndex]; > > if(col.filter) > { > // make a different database call to populate dg dataprovider > } > } > > Now this seems to be working except sometimes (quite ofte

[flexcoders] ItemRenderer factories, on the fly resetting

2010-05-24 Thread flexwdw
t's itemRenderer by creating a new ClassFactory instance seems to be the most logical way to achieve this. Problem is, this causes a "term is undefined and has no properties" error in TileBase.createItemRenderer [line 1956]. Is there anything wrong with this approach? Do I need

[flexcoders] dynamically loading components

2006-05-11 Thread ROUSSELIE David ROSI/SIFAC
core1.mxml.swf' contains invalid data.   where core1.mxml.swf is the caller application. The Flex component mycomponent.mxml is just a VBox, nothing else. When I try to access to the mycomponent.mxml.swf file Í'm getting another error (I don't remember I got it with Flex2 Beta2):   Ty

  1   2   3   >