[flexcoders] Re: display row index in DataGrid

2009-02-28 Thread nylarch
Thanks for the help everyone. Yes - that's correct - I always want the index to start with "1" post-filtering --- In flexcoders@yahoogroups.com, "rueter007" wrote: > > Finding the index of an item in a dataprovider will not work if he is > using filters. I think he wanted to always show the

[flexcoders] display row index in DataGrid

2009-02-27 Thread nylarch
this seems like it should be easy but I have a DataGrid with 3000+ rows - an XML object is the dataprovider. Need to show a row index both on the initial display and after various filters the user can run (by state name, county name, etc.) I always want the row index to start at "1" i.e. sho

[flexcoders] Re: Call method on nested SWF

2009-01-29 Thread nylarch
; --- In flexcoders@yahoogroups.com, Alex Harui wrote: > > > > > > Interesting. That doc is in error. Should be: > > > > > > public function updateNestedVarOne():void { > > > loadedSM.application["setVarOne"]("Updated > > > varOne!&qu

[flexcoders] Call method on nested SWF

2009-01-29 Thread nylarch
Hi - I've been using Flex to write some data visualizations and am in the process of writing an admin tool to customize the look n' feel of each visualization. My admin app uses SWFLoader to load the individual visualizations - a really nice thing to be able to do (load a full app inside anothe

[flexcoders] Custom ToolTip click event

2008-09-10 Thread nylarch
Hi - I'm creating a custom ToolTip by implementing IToolTip and using a Panel. I'd like to expose more information in the custom tooltip using a click event but it seems like there is a build in click event for tooltips that closes it. Anyone know if it Is possible to intercept or cancel

[flexcoders] LinkBar and embedded fonts

2008-02-03 Thread nylarch
Hi - Anyone else getting funky style changes when they use an embedded font in a LinkBar? I have a design heavy site that uses embedded fonts and I originally rolled my own navigation using states and rollover events for the color changes. The code was pretty ugly and I realized that thi

[flexcoders] Re: SWF resizing

2007-12-17 Thread nylarch
er that will allow the > swf loader image to change it's aspect ratio as well > > On Dec 17, 2007 4:07 AM, nylarch <[EMAIL PROTECTED]> wrote: > > > Howdy - > > > > Working on a "design-y" site that would probably more naturally be done

[flexcoders] SWF resizing

2007-12-17 Thread nylarch
Howdy - Working on a "design-y" site that would probably more naturally be done in the Flash Authoring tool but I want to understand more about Flex so I'm going that route. A designer I'm working with on the project delivered an Illustrator file that is the background for the main page of

[flexcoders] Re: httpservice and crud

2007-09-21 Thread nylarch
gt; switch(sCallId) { > case "myQuery1": > doWhatever(); //massage data, call another query, whatever > break; > ... > } > }//onResult > > > From: flexcoders@yahoogr

[flexcoders] httpservice and crud

2007-09-17 Thread nylarch
noob question alert. Just starting on flex. I'm doing a simple CRUD page working with a calendar. Do I need to do seperate HTTPService components for the different CRUD operations or is it possible to dynamically pass in requests to one service since I'm doing all of the operations on the

[flexcoders] httpservice and crud

2007-09-17 Thread nylarch
noob question alert.