RE: [flexcoders] Flex and Databas Project

2005-07-31 Thread Ahmed
Thanks for disappointing me . From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sjors Pals Sent: Saturday, July 30, 2005 4:52 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex and Databas Project Well i don't think too much people

[flexcoders] sending typed arrays over web services

2005-07-31 Thread zipo13
Hi, In my app we are sending complex objects back and forth from flex to a web service. The problems is that when an array is inside an object, the objects inside it are typed as anyType and can't be deserialized on the server. I'll explain: If I have a class called Class1 and a container of it

[flexcoders] File - flexcodersFAQ.txt

2005-07-31 Thread flexcoders
Flexcoders Frequently Asked Questions Last Updated: 30th May 2005 Contributors: Matt Chotin, Steven Webster, Alistair McLeod, Tariq Ahmed, Jeff Tapper,

RE: [flexcoders] namespace/directory structure issue

2005-07-31 Thread Brian Deitte
I think what Matt was saying is having the components directory a level deeper and then referencing this directory in actionscript-classpath in flex-config.xml. You should be able to create references to components in any directory you put in actionscript-classpath in the same manner that you

RE: [flexcoders] Rich Internet Apps book

2005-07-31 Thread Brian Deitte
Hi Mani, do you mean that the localserver is not there in the whitelist or that it is already uncommented? If it is former, then check another flex-config.xml for this info. Here's some more proxy info: http://www.cflex.net/showfaq.cfm?ChannelID=1faqType=#Question394 -Brian -Original

RE: [flexcoders] Task Summary Project.

2005-07-31 Thread Brian Deitte
Hi Ahmed, I'm sure there's people on the list who could contact you with consulting services. Glad to see you're getting somewhere, but you're going to be disappointed again by people's response here. See section 5 in the FAQ: 5. Guidelines to effective question-asking Include a useful

RE: [flexcoders] are there any tools i can use to document my mxml api?

2005-07-31 Thread Brian Deitte
I don't know of any, but one thing you could do is set keep-generated-as to true, compile the mxml pages,and then use the AS documentation tools. -Brian From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Clint ModienSent: Friday, July 29, 2005 3:26 PMTo:

RE: [flexcoders] Flex on Oracle App Server Issues

2005-07-31 Thread Brian Deitte
Oracle 10g is supported and there are no major problems that I know about. There's two open issues that I know of or can find, both just having to deal with the sample applications. These aren't really general Flex issues with Oracle and only show up with how we are doing things in some

[flexcoders] Re: sending typed arrays over web services

2005-07-31 Thread zipo13
No need to answer. The problem was with the WSDL, the array in the argument was well typed but the array in the object was not a well typed array but a java Set which is not typed. When converted to the WSDL it was declared as anyType so Flex was right I was wrong :| --- In

RE: [flexcoders] sending typed arrays over web services

2005-07-31 Thread Brian Deitte
My web service knowledge has gotten a little rusty, but here's two things to try: 1. Make sure there's nothing in the WSDL definition for this service that would cause this to happen. What would cause this in the WSDL is better answered by someone who isn't rusty in this area. :) 2. I'm not

[flexcoders] How to make two seperate grid columns equal

2005-07-31 Thread digital_eyezed
Hi, How do I make the column of one datarid equal in width to that of a different datagrid? So if a user stretches a column on one datagrid, the same column on the second datagrid also resizes to the same width dynamically. Thanks in advance. Iain Yahoo! Groups

[flexcoders] Re: How to make two seperate grid columns equal

2005-07-31 Thread digital_eyezed
Ok I did it: create a columnStretch event handler which uses this function: public function setWidth(event){ myGrid.getColumnAt(event.columnIndex).width = myGrid2.getColumnAt(event.columnIndex).width ; } Needs some logic to make it work both ways but it's nearly

[flexcoders] Re: How to make two seperate grid columns equal

2005-07-31 Thread digital_eyezed
Full code with logic: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; mx:Script ![CDATA[ public function setWidth(event){ if (event.target == _level0.myGrid2){ myGrid.getColumnAt(event.columnIndex).width =

[flexcoders] datagrid rowcount

2005-07-31 Thread Andrew Spaulding
Hi all, I would like to only have 5 rows in the datagrid but cannot get it to work. It always seems to keep the rowCount default of 7. I am setting the rowCount in the mxml tags by rowCount=5 and my dataProvider length is also 5. I am not setting the height on the datagrid so this shouldnt be

[flexcoders] Quick Hello...

2005-07-31 Thread plsnjr
Hello folks, I just joined the group tonight and thought I would say hello. There is not much to say about me other then I am a new comer to Flex development and from the little work I've been able to accomplish, it has become clear to me the benefits of RIA's and how easy application

RE: [flexcoders] datagrid rowcount

2005-07-31 Thread Matt Chotin
Hmm, what happens if you set it to something higher than 7, does it take effect then? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Spaulding Sent: Sunday, July 31, 2005 5:14 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] datagrid

[flexcoders] Re: datagrid rowcount

2005-07-31 Thread Andrew Spaulding
It's really weird behaviour. On one dataGrid my dataProvider length is 11 and the rowCount=11 and its works fine. On another i set rowCount=9 (for instance) and the dataprovider length is 5, but it still only shows 7 rows. What do you think? Andrew. --- In flexcoders@yahoogroups.com, Matt

RE: [flexcoders] Re: datagrid rowcount

2005-07-31 Thread Matt Chotin
Is variableRowHeight false? I dont know this code that well, maybe Alex will in the morning (PDT). But it looks like rowCount is ignored if variableRowHeight is true. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Spaulding Sent: Sunday,

[flexcoders] Re: datagrid rowcount

2005-07-31 Thread Andrew Spaulding
K, I changed variableRowHeight=false and then the rowCount kicks in. is there a workaround/hack that i might be able to implement to enable the rowCount with variableRowHeight=true ? Andrew. --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: Is variableRowHeight false? I

RE: [flexcoders] Re: datagrid rowcount

2005-07-31 Thread Matt Chotin
rowCount doesnt have real meaning with variableRowHeight because the rowCount is really just used to create the active number of rows before it starts re-using them for scrolling. If you can youd probably just be better off assigning a hard-coded height. From:

Re: [flexcoders] Returning an object Array from .NET to Flex

2005-07-31 Thread priya s
this did'nt seem to work ! :( the datagrid is still not getting populatedam i missing out on something???Sreejith Unnikrishnan [EMAIL PROTECTED] wrote: Here's the code that works. Additions in red.?xml version="1.0" encoding="utf-8"? mx:Application