[flexcoders] Re: Flex 1.5: Using columnName + labelFunction in a DataGrid

2006-05-16 Thread nahruka
rammatically: > var sFullName:String = getFullName(myDataGrid.dataProvider.getItemAt(0)) > > Tracy > > -Original Message- > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of nahruka > Sent: Tuesday, May 16, 2006 8:37 AM > To: flexcoders@yah

[flexcoders] Flex 1.5: Using columnName + labelFunction in a DataGrid

2006-05-16 Thread nahruka
Hi all, Please, how can I get the data value of a DataGrid cell when the DataGridColumn uses a labelFunction? -- labelFunction="getFullName" editable="false" /> -- private function getFullName(item: Object, columnName: String): String {   var str;  

[flexcoders] Set focus to a cell renderer in a DataGrid

2006-05-11 Thread nahruka
I have a custom cellrenderer which is a TextInput in a datagrid. It works fine but I can not figure out a way of setting focus to the TextInput. How do I get a reference to custom cellrenderer objects? (I'm using Flex 1.5) Thanks!! -- Flexcoders Mailing List FAQ: http://groups.yahoo.

[flexcoders] Re: Flex 1.5 ViewStack child creation

2006-04-25 Thread nahruka
k > implement the auto policy by creating all their children immediately, > but wait to create the deeper descendants of a child until it becomes > the selected child of the navigator container. > > So if you want to create all your childrens at one time, just use > creation

[flexcoders] Flex 1.5 ViewStack child creation

2006-04-25 Thread nahruka
I'm using the following ViewStack  within my application: I've been reading about the ViewStack component and found that children (except the first one) are only created when the user explicitly makes an action that causes the selected child to chang

[flexcoders] Printing the row number in a DataGrid

2006-04-10 Thread nahruka
Hi all, I need some help with datagrids in Flex 1.5. How can I implement the getRowNumber function in order to display a column with the proper row number in the DataGrid (beginning by 1)? I have the following code:

[flexcoders] Sending ISO-8859-1 from a Flex application

2006-04-07 Thread nahruka
Hi all, I'm trying to send an XML over HTTP from a Flex application to a Cocoon framework which redirects the requests to PL procedures in order to access an Oracle database ISO-8859-1 encoded. http://.../cocoon/.../myCocoonEntry"; contentType="application/xml" re

[flexcoders] Re: Form input encoding (ISO-8859-1 or UTF-8?)

2006-04-03 Thread nahruka
;Manish Jethani" <[EMAIL PROTECTED]> wrote: > > On 4/3/06, nahruka <[EMAIL PROTECTED]> wrote: > > > I'm wondering which character encoding is used when you enter data in > > a Flex form... > > The Flash Player speaks UTF-8. > > > I'm h

[flexcoders] Form input encoding (ISO-8859-1 or UTF-8?)

2006-04-03 Thread nahruka
Hi all, I'm wondering which character encoding is used when you enter data in a Flex form... I have installed a MySQL database on my computer. My Flex application accesses the DB through an HTTPService which url points to a JSP. This JSP accesses the DB and returns an XML to my Flex application.

[flexcoders] Re: Event broadcasters and listeners with cellRenderers

2006-03-31 Thread nahruka
n your cellrender listen to it using > listOwner.addEventListener("myEvent"). Let me know if this was of any help. > > > Omar Ramos > > > > On 3/28/06, nahruka <[EMAIL PROTECTED]> wrote: > > > > Hi all, > > > > I'm new at F

[flexcoders] Event broadcasters and listeners with cellRenderers

2006-03-28 Thread nahruka
Hi all, I'm new at Flex and need some help about event handling among different Flex components. I have a custom TitleWindow with a Button. I want another custom component (used as a cell renderer in this TitleWindow) to listen to this button to be clicked and then do something. Here is my Title

[flexcoders] Re: Tooltips at cellRenderer

2006-03-17 Thread nahruka
true. > > On 3/16/06, nahruka <[EMAIL PROTECTED]> wrote: > > > > Hi all, > > > > I've implemented a custom TileList with Flex 1.5 which cellRenderer is > > also a custom component named Grup. Why are Grup tooltips not showed ??? > > > &g

[flexcoders] Tooltips at cellRenderer

2006-03-16 Thread nahruka
Hi all, I've implemented a custom TileList with Flex 1.5 which cellRenderer is also a custom component named Grup. Why are Grup tooltips not showed ??? Here is MyList.mxml: http://www.macromedia.com/2003/mxml"; xmlns="*" dataProvider="{mx.utils.ArrayUtil.toArray(dataObject.tema)}"

[flexcoders] Populating a Repeater from a ComboBox

2006-03-13 Thread nahruka
Hi all,I'm trying to populate a Repeater with an XMLListCollection depending on the selected index in a ComboBox. Although cmbAny.selectedIndex changes as I select different values from the ComboBox, the DataProvider remains the same, as if cmbAny.selectedIndex = 0. Any suggestions? Thanks!    

[flexcoders] Re: Runtime error #1034

2006-03-10 Thread nahruka
Thank you very much! It worked perfectly! --- In flexcoders@yahoogroups.com, "Manish Jethani" <[EMAIL PROTECTED]> wrote: > > On 3/9/06, nahruka <[EMAIL PROTECTED]> wrote: > > > > > I think changing that to the following should do the tric

[flexcoders] Runtime error #1034

2006-03-09 Thread nahruka
Hi all,While executing my Flex application, I got the following runtime error:TypeError: Error #1034: Type Coercion failed: cannot convert Components::Grup$ to mx.core.IFactoryat MethodInfo-1992()at mx.binding::Binding/execute()at mx.binding::

[flexcoders] HTTPService: Security error accessing url

2006-03-06 Thread nahruka
I have the following code in my Flex 2.0 application. Basically I'mtrying to send a HTTP request to a remote computer with Cocooninstalled. The entry actualitza1.xml reads the http request parametersand calls the PL procedures that access the database. When it attemps to reach the specified url