Re: [flexcoders] cellRenderer

2005-09-08 Thread Manish Jethani
On 9/7/05, Philippe Maegerman [EMAIL PROTECTED] wrote: If I would ask my question differently it would be : Is it possible to change cellRenderers on the fly, switching from cellRendererA to cellRendererB ? I think changing the cell renderer that way should work - i.e it should refresh the

Re: [flexcoders] 3 problems about datagrid ...

2005-09-08 Thread Manish Jethani
On 9/8/05, xiankevin2005 [EMAIL PROTECTED] wrote: 1: when i use a cellrenderer in the datagrid,such as checkCellRenderer,in the click event handler of the checkBox,the method listOwner.dataProvider.editField is invoked.but it seems that the datagrid control cannot handle the event that the

RE: [flexcoders] cellRenderer

2005-09-08 Thread Philippe Maegerman
Sorry but that doesn't work, I have triedalmost everything I could think of, including your advices, but can't succeed. I put below asimple example of what I am trying to do. There are2 buttons supposed to change the cellRenderer onClick, you can see that the DataGrid is redrawn but the

[flexcoders] Panel at 100% - application bg still showing...

2005-09-08 Thread flexhansen
Hi, I'm looking to have a panel-component fill all of the application area. I've set the application margins to zero, but there's still a brim of background around the panel component (ca. 2 pixels in width). Any help would be much appreciated :o) Cheers, -michael

Re: [flexcoders] Panel at 100% - application bg still showing...

2005-09-08 Thread vnice Cute
Hi, Yeah you should do it like to fill it on the appilcation area ?xml version="1.0" encoding="utf-8"?mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" marginBottom="-5" marginLeft="-5" marginRight="-5" marginTop="-5" mx:Panel width="100%" height="100%" //mx:Applicationflexhansen

[flexcoders] no longer jumping to a secure page

2005-09-08 Thread paulehooker
Hi All I was wondering if anyone had any thoughts or guidance as to how best to indicate information is being collected securely i.e switching to https. For example in the traditional approach to web development when you are taking information securely you jump from the standard url

[flexcoders] Re: getting data from xml file

2005-09-08 Thread xiankevin2005
i think this would be fine: mx:Repeater id=jobrepeat dataProvider={jobdata.job} mx:Image source={jobrepeat.currentItem.imageid} x={jobrepeat.currentItem.xcordinate} y={jobrepeat.currentItem.ycordinate} /mx:Image /mx:Repeater kevin --- In flexcoders@yahoogroups.com, Prasad Dhananjaya [EMAIL

[flexcoders] Re: 3 problems about datagrid ...

2005-09-08 Thread xiankevin2005
thanks for the reply...let me describe the problem i'm facing. assume that the dategrid is a song list with several pages and i use a CheckCellRenderer for a column.when user clicks the check box,the song will add to his play list and remove it for another click. i want to create a click handler

RE: [flexcoders] Re: 3 problems about datagrid ...

2005-09-08 Thread Dirk Eismann
You could make the CheckCellRenderer dispatch an event on the DataGrid, i.e. inside your CheckCellRenderer: mx:CheckBox click=listOwner.dispatchEvent({type: 'cellClick', row: getCellIndex().itemIndex}) / This will make the DataGrid dispatch a cellClick event. To listen to this event you'll

Re: [flexcoders] Linux Macromedia Flex on Tomcat HOWTO

2005-09-08 Thread Douglas Knudsen
http://jakarta.apache.org/tomcat/tomcat-3.3-doc/mod_jk-howto.html check out mod_jk. I set it up recently on a Slack box. It certainly is no walk in the park to setup though, seems every config example I found was different, that and I have been in the windows world the past couple years. In the

RE: [flexcoders] Problem accessing RemoteObjects

2005-09-08 Thread Jeremy Crane
Since I am able to invoke my class, and receive a valid response from a JSP page, can you think of anything else I might try to get my RemoteObject call to work from within Flex? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jeremy Crane

RE: [flexcoders] Problem accessing RemoteObjects

2005-09-08 Thread Dirk Eismann
Which servlet container / application server are you using? Do you also have ColdFusion installed? Dirk. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeremy Crane Sent: Thursday, September 08, 2005 4:07 PM To:

[flexcoders] Color component

2005-09-08 Thread Philippe Maegerman
cool color component .. free download+ swc version http://www.powerclients.de/colorfan-component Philippe Maegerman -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Re: Linux Macromedia Flex on Tomcat HOWTO

2005-09-08 Thread charlespaz1
Thanks for the suggestion. Updated. --- In flexcoders@yahoogroups.com, Daniel Harfleet [EMAIL PROTECTED] wrote: I would add that a quick way to deploy a vanilla flex war to Tomcat with the preferred name of you webapp, is to rename flex.war to your webapp name e.g. rename flex.war to

[flexcoders] Re: Linux Macromedia Flex on Tomcat HOWTO

2005-09-08 Thread charlespaz1
mod_jk is supposed to be one way to do it, but every HOWTO and tutorial on using it is different or out of date, and I never got it to work reliably. The simplest, most consistent way I found was simply ProxyPass/ProxyPassReverse. I'll create a quick HOWTO today and post it. --- In

RE: [flexcoders] Color component

2005-09-08 Thread bsd
Very cool.. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Philippe Maegerman Sent: Thursday, September 08, 2005 9:32 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Color component cool color component .. free download+ swc version

[flexcoders] Linux Tomcat Proxy Pass from Apache-HOWTO

2005-09-08 Thread charlespaz1
Created and posted configuration HOWTO to get Apache and Tomcat to connect via Proxy: http://members.cox.net/midian/howto/apache+tomcat+proxy.htm Comments and critiques welcome. Yahoo! Groups Sponsor ~-- Get Bzzzy! (real tools to help you find a

[flexcoders] checkbox in repeater tag

2005-09-08 Thread relisanhard52
Hi I have a repeater tag which goes through an array. In my tag, i create a checkbox. I want my check box id to be created dynamically. I use mx:CheckBox id={list.currentItem.myObjectId} label={list.currentItem.myObjectName}/ But it throws an error saying id is not a valid identifier.

[flexcoders] modifying the datefield object...

2005-09-08 Thread Greg Morphis
Is it possible to capture/modify the value that shows in the textbox of the datefield object? I've tried .value, .text and looked at the livedocs (didnt see .value or .text or anything usable). What I'm trying to do is make it to where if someone clicks on a date (9/20/2005) then the date that

[flexcoders] not-explicitly-set VO attribute being lost when passed to CFC

2005-09-08 Thread a8i364io
OK I think this is really weird. I've been making good progress in Cairngorm'ing an app I built but I've run across a problem. I've got this thingy that updates a database using a CFC that accepts a structure as its only argument. When I don't explicitly define each of the attributes of the

[flexcoders] Re: modifying the datefield object...

2005-09-08 Thread Greg Morphis
I've found that I can use this to get the date change=displayDate(event.target.selectedDate) On 9/8/05, Greg Morphis [EMAIL PROTECTED] wrote: Is it possible to capture/modify the value that shows in the textbox of the datefield object? I've tried .value, .text and looked at the

Re: [flexcoders] Linux Tomcat Proxy Pass from Apache-HOWTO

2005-09-08 Thread J.A. Rottman
I have looked all over my httpd.conf file, and I have not been able to find hte ifmodule for mod_proxy at all. I have done a source install of apache 2.53.0, do I need to download this module or is there something I am missing. --- charlespaz1 [EMAIL PROTECTED] wrote: Created and posted

[flexcoders] Re: Linux Tomcat Proxy Pass from Apache-HOWTO

2005-09-08 Thread charlespaz1
Standard install of apache on RHEL 4 and FC3 have a commented out entry for it. All it does is verify that mod_proxy is loaded. In my httpd.conf it is listed just above Virtual Host section. # # Proxy Server directives. Uncomment the following lines to # enable the proxy server: # IfModule

[flexcoders] Re: checkbox in repeater tag

2005-09-08 Thread Rajesh Jayabalan
Hi, I had the same problem, I found out that you cannot dynamically create id in the repeater tag. When you create a checkbox in an array you will get an array of check boxes and you can go thru them in a for loop to find their values.. Here I am doing it with a combobox mx:Repeater id=att

Re: [flexcoders] Re: Linux Tomcat Proxy Pass from Apache-HOWTO

2005-09-08 Thread J.A. Rottman
I installed the redhat apache version, and I am getting a bit closer to getting this right. I am now getting a 502 error from apache. Bad Gateway The proxy server received an invalid response from an upstream server. here is my connector in server.xml Connector port=8081 proxyPort=80

[flexcoders] Re: modifying the datefield object...

2005-09-08 Thread Greg Morphis
Well, I've gotten this far... function displayDate(date) { var cMonth; var cYear; var cDay; var dayNum; var tempDate; cMonth = (date.getMonth()) + 1; cYear = date.getFullYear();

[flexcoders] I have an overloaded Java method, How can I call an specific method using RemoteObject?

2005-09-08 Thread Oscar . Cortes
I have a overloaded method in Java which I am calling using RemoteObject. One version of the methods requires X parameters while the other requires Y. I am trying to call the one with Y but it Flex tries to call the one with X by the default. How can I tell Flex which to call? Thanks

[flexcoders] setting focus back to component that fails validation?

2005-09-08 Thread cruegger2000
I create a form dynamically and need to do my data validations within ActionScript code. I generate a TextInput component that must be numeric. What I'd like to have happen is that if the user enters non-numeric data, I issue an alert; when the user clicks ok, the focus goes back to the TextInput

[flexcoders] Re: Connection Pooling, Proxool, and Oracle

2005-09-08 Thread stealth1399
Does anyone know of any open source projects similar to proxool that will implment connection pooling with flex? --- In flexcoders@yahoogroups.com, stealth1399 [EMAIL PROTECTED] wrote: Hello, The application that I'm working on is filling up the connections to our Oracle database. We are

RE: [flexcoders] Re: modifying the datefield object...

2005-09-08 Thread Philippe Maegerman
You added 1 to the month for the display, however you need to substrat that value later when creating your new date: daDate.selectedDate = new Date(cYear,cMonth-1,cDay); Cheers, Philippe -Original Message- From: flexcoders@yahoogroups.com on behalf of Greg Morphis Sent: Thu 8/09/2005

Re: [flexcoders] Re: modifying the datefield object...

2005-09-08 Thread Greg Morphis
though I'm still having a problem with populating that text box. I've added code at the bottom to populate it but if it does, it gets over written. Does anyone know what event I could use to populate the text so it's seemingly unnoticable to the user. I've tried mouseDown, mouseUp, focusOut with

[flexcoders] the 3D engine for UI controls

2005-09-08 Thread Igor Costa
Hi folks Does anyone on list have tried to create some puzzle classes to add dynamic 3d Motion for some kind of UI, like mx:Panel I've try here just with myself but I couldn't get sucessfull, due the UI component was unrecognized and dashed. That's really may possible? I'm trying this