RE: [flexcoders] checkbox in datagrid with vertical slider bar

2007-03-09 Thread Lisa Nelson
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Lisa Nelson Sent: Thursday, March 08, 2007 2:12 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] checkbox in datagrid with vertical slider bar If I check a box in a row other than the top row, and then slide the vertical scroll bar

RE: [flexcoders] Re: checkbox in datagrid with vertical slider bar

2007-03-09 Thread Lisa Nelson
%40yahoogroups.com , Lisa Nelson [EMAIL PROTECTED] wrote: If I check a box in a row other than the top row, and then slide the vertical scroll bar down so that the rows go off the top, and then slide it back up so that the rows that went off the top come back, rows that I did not check now

RE: [flexcoders] Re: checkbox in datagrid with vertical slider bar

2007-03-09 Thread Lisa Nelson
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Lisa Nelson Sent: Friday, March 09, 2007 1:39 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: checkbox in datagrid with vertical slider bar Definitely helpful. Thanks. I still haven't found my way out of the woods yet though. I've

[flexcoders] checkbox in datagrid with vertical slider bar

2007-03-08 Thread Lisa Nelson
If I check a box in a row other than the top row, and then slide the vertical scroll bar down so that the rows go off the top, and then slide it back up so that the rows that went off the top come back, rows that I did not check now show up as checked. Does anyone know if this is a Flex bug

[flexcoders] pop up a new window behind

2006-10-16 Thread Lisa Nelson
Anyone know how to pop up a new window behind the one currently in focus? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group on the

RE: [flexcoders] Re: pop up a new window behind

2006-10-16 Thread Lisa Nelson
setChildIndex... a good place to look is at PopUpManager.bringToFront Hope that help a little, Mike --- In flexcoders@yahoogroups.com, Lisa Nelson [EMAIL PROTECTED] wrote: Anyone know how to pop up a new window behind the one currently in focus? -- Flexcoders Mailing List FAQ: http

[flexcoders] good example of editable dateField as itemEditor?

2006-10-05 Thread Lisa Nelson
Does anyone have a really good example of a dateField used as an itemEditor in a dataGrid? I have tried many variations on this, but haven't got it completely correct with the behavior I want. I would like the users to be able to unselect a date, or in other words specify "no date".

[flexcoders] restrict length (maxChars) in an editable combobox

2006-08-25 Thread Lisa Nelson
Anyone know how I can restrict the length of input in an editable combobox? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group on

RE: [flexcoders] Re: Items Invisible in ComboBox

2006-08-25 Thread Lisa Nelson
I had this problem just yesterday. In my case, I had some bad test data with data in the labelFields that was too long. I nuked those records and haven't had the problem since. But it isn't a completely satisfactory explanation, because other records with equally long data appeared just

RE: [flexcoders] restrict length (maxChars) in an editable combobox

2006-08-25 Thread Lisa Nelson
Resending this as I never saw it show up. -Original Message- From: Lisa Nelson Sent: Friday, August 25, 2006 8:48 To: 'flexcoders@yahoogroups.com' Subject: [flexcoders] restrict length (maxChars) in an editable combobox Anyone know how I can restrict the length of input in an editable

[flexcoders] Cairngorm objects in debugger

2006-08-18 Thread Lisa Nelson
Does anyone have trouble seeing into their Cairngorm objects in the debugger? For instance,I have an object that extends org.nevis.cairngorm.control.FrontController. I can't see the contents of thisobject in the debugger. --L __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] tree drag drop

2006-08-06 Thread Lisa Nelson
I think this should be a simple thing to do, but I haven't been able to figure out the answer. I have a really simple tree with an array collection as a data provider. mx:Tree id="fundTree" dataProvider="{fundList}" labelField="fundShortName" dragEnabled="true"

[flexcoders] Dump object to Console

2006-07-17 Thread Lisa Nelson
Dear All, More debugging woes. I have some other cause of the debugger not working in subcomponents - just blows by the breakpoints. But I have a question that could maybe bypass 90% of the reason I tend to use the debugger anyway. Does anyone have a way of just dumping an object to the

RE: [flexcoders] Dump object to Console

2006-07-17 Thread Lisa Nelson
at the root of your project and go: DebugWindow.debugHeader(), DebugWindow.debug(stuff), or DebugWindow.debugProps(obj) in your code. http://www.jessewarden.com/archives/2006/07/flex_2_webservice.html - Original Message - From: Lisa Nelson [EMAIL PROTECTED] To: flexcoders@yahoogroups.com

RE: [flexcoders] Re: debugger blows by breakpoints in component

2006-07-10 Thread Lisa Nelson
Just to round this topic out. Scott's suggestion did indeed solve our problem. --Lisa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Lisa Nelson Sent: Friday, July 07, 2006 16:04 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re

RE: [flexcoders] Re: DataGrid Totals Row

2006-07-07 Thread Lisa Nelson
, not the individual column widths. --Lisa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Friday, July 07, 2006 3:15 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: DataGrid Totals Row On Friday 07 July 2006 00:21, Lisa

RE: [flexcoders] Re: DataGrid Totals Row

2006-07-07 Thread Lisa Nelson
. --Lisa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Friday, July 07, 2006 8:02 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: DataGrid Totals Row On Friday 07 July 2006 15:37, Lisa Nelson wrote: I am pretty

RE: [flexcoders] Re: DataGrid Totals Row

2006-07-07 Thread Lisa Nelson
By the way on the background color. That was dumb. I was only displaying the column headings of my totals datagrid. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Lisa Nelson Sent: Friday, July 07, 2006 8:21 To: flexcoders@yahoogroups.com

[flexcoders] debugger blows by breakpoints in component

2006-07-07 Thread Lisa Nelson
For the life of me I can't figure out why the debugger blows by all my breakpoints in my component. I found this in a FAQ: The safest way to set breakpoints in component files is to use the Files list. Start the debugging session, nav you app to where you want to start debugging. Click the Files

RE: [flexcoders] debugger blows by breakpoints in component

2006-07-07 Thread Lisa Nelson
Hey All, I think my buddy Mike has found the solution to this: --Lisa Hi Lisa, I posted a reply to your comment on my blog. Hope it helps! http://www.morearty.com/blog/2006/06/28/flex-2-has-launched-whats-new-in-the-debugger-since-beta-3/#comments - Mike __._,_.___ --

RE: [flexcoders] Re: debugger blows by breakpoints in component

2006-07-07 Thread Lisa Nelson
--- In flexcoders@yahoogroups.com, Lisa Nelson [EMAIL PROTECTED] wrote: Hmm. Well one of my coworkers has the problem as well. (So it's not just me!) My other coworker does not have the problem (yet). Flex knows about my breakpoints. They all show up in the breakpoints tab in the Flex Debugging

RE: [flexcoders] Re: DataGrid Totals Row

2006-07-06 Thread Lisa Nelson
This is something I have been wanting as well. The closest I have found is the lockedRowCount property. But you have to have your top row have the totals. If you set it to your dataprovider array collection's length, then it freezes all the rows. I don't know any way to get it to freeze the

RE: [flexcoders] Re: DataGrid Totals Row

2006-07-06 Thread Lisa Nelson
for the ride. I wonder if I will have to disable resizing of the columns. --Lisa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Lisa Nelson Sent: Thursday, July 06, 2006 14:05 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: DataGrid

[flexcoders] Where is the log, you said was mine all mine, till the end of time?

2006-06-16 Thread Lisa Nelson
I searched the archives, and I know some discussion was spent on this error: An internal build error has occurred. Please check the Error Log. The question was posed as to where the log was. And someone even posted contents of his log. But I couldn't find an answer to the actual question of

RE: [flexcoders] Where is the log, you said was mine all mine, till the end of time?

2006-06-16 Thread Lisa Nelson
Found it. My Documents\Flex Builder 2.0\.metadata\.log --L -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Lisa Nelson Sent: Friday, June 16, 2006 11:13 To: flexcoders@yahoogroups.com Subject: [flexcoders] Where is the log, you said was mine

RE: [flexcoders] F2B3: Javascript security

2006-06-02 Thread Lisa Nelson
Tim, Did Rost's suggestion help your situation? I have a similar issue. This works: ExternalInterface.call("alert","Hey this is an external interface call."); But when I try to call one of our own _javascript_ functions, it just doesn't seem to find the function and does absolutely