[flexcoders] select datagrid column cells based on checkbox click

2008-05-30 Thread rviswanathan
Hi I have a datagrid and a checkbox outside of it. When I click the checkbox, I need a specific set of cells (not complete rows) on only one of the columns to be highlighted (with some background color). How can I go about doing this? This is what I attempted. a) I have an itemRenderer

[flexcoders] Keep combobox open to allow multiselect

2008-06-04 Thread rviswanathan
Hi I have created a combo box with a checkbox renderer on each of its items. When I select an entry in the combobox, the box closes automatically. I want to prevent his so that I can multiselect elements in the combobox. Is there a way to do this? Even if I extend the ComboBox and override

Re: [flexcoders] Keep combobox open to allow multiselect

2008-06-05 Thread rviswanathan
/mx:CheckBox /mx:Component /mx:itemRenderer /mx:List /mx:Component /mx:dropdownFactory /mx:ComboBox Thanks Ram -- rviswanathan

[flexcoders] VDividedBox - prevent dragging of divider

2008-09-10 Thread rviswanathan
Hi I have a simple mxml with a vdividerbox that has 2 children. I am trying to find out if the divider drag can be disabled. The divider should not be draggable. Is there a way to do this? I was thinking along the lines of subclassing the dividerbox and the boxdivider classes, but couldn't

Re: [flexcoders] VDividedBox - prevent dragging of divider

2008-09-11 Thread rviswanathan
: Re: [flexcoders] VDividedBox - prevent dragging of divider Why wouldn't you just use a Vbox instead? My guess would be that you like the dragger thing being there? On Wed, Sep 10, 2008 at 9:01 AM, rviswanathan [EMAIL PROTECTED] wrote: Hi I have a simple mxml

[flexcoders] TextArea Issue - adds an extra \r

2008-10-01 Thread rviswanathan
Hi All I have a textarea where I enter some information and submit. These are the following steps 1. Run the attached swf 2. In the textarea, clear the contents and enter some text, say Sample Text (Do not move out of the textarea until completing the next 2 steps) 3. Press the carriage return

Re: [flexcoders] TextArea Issue - adds an extra \r

2008-10-01 Thread rviswanathan
Tim Hoff wrote: Those are the escape characters for the carraige return Ram. -TH --- In flexcoders@yahoogroups.com, rviswanathan [EMAIL PROTECTED] wrote: Hi All I have a textarea where I enter some information and submit. These are the following steps 1. Run the attached swf 2

[flexcoders] Flex builder 2 standalone - plugin wouldn't show up

2008-11-01 Thread rviswanathan
Hi I am new to plugin development and I startded off by creating a sample plugin using flex builder 3 plugin version. These are the steps that I followed a) Installed eclipse 3.2 and Flex Builder 3 plugin version (trial) b) Created a sample plugin and packaged it c) extracted the plugin to a

[flexcoders] Flex builder 2 standalone - plugin wouldn't show up

2008-11-01 Thread rviswanathan
Hi I am new to plugin development and I startded off by creating a sample plugin using flex builder 3 plugin version. These are the steps that I followed a) Installed eclipse 3.2 and Flex Builder 3 plugin version (trial) b) Created a sample plugin and packaged it c) extracted the plugin to a

[flexcoders] Dispatch events - sequencing

2008-11-19 Thread rviswanathan
I have a flex module where events get dispatched based on user clicks. The user can click on several areas of the screen and each click would dispatch an event. I am trying to figure out if the order in which the user clicks would be the order in which the events would be dispatched? (I am not

[flexcoders] NPE on ToolTipManagerImpl/reset()

2008-11-30 Thread rviswanathan
Hi All I am facing an NPE with tooltips, the problem is outlined below. Set up: (I use Flex 2.0) I have a UI where I have a datagrid that gets populated by data coming from a remote server call. My module contains a timer that sends out a refresh request (server call) to paint the datagrid with

RE: [flexcoders] NPE on ToolTipManagerImpl/reset()

2008-11-30 Thread rviswanathan
an mx_internal method. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rviswanathan Sent: Sunday, November 30, 2008 11:52 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] NPE on ToolTipManagerImpl/reset() Hi All I am facing an NPE with tooltips

[flexcoders] Multi Select List - Issue

2008-12-04 Thread rviswanathan
Hi I am facing an issue with a list that allows multi select. I am using Flex 2.0. 1. On load of the application, I set the first item in the list as selected. (selectedIndex = 0). At this point, I am able to use Shift key to multi select. 2. I have a button, on click of this button, I

[flexcoders] Shift+Select - Issue with ListBase

2008-12-23 Thread rviswanathan
Hi I am reopening this topic. I am facing an issue with a list that allows multi select. I am using Flex 2.0. I see that this is fixed in Flex 3.0, but I am not sure how to go about fixing this problem in 2.0 I run the source code below. 1. On load of the application, I set the first item in

RE: [flexcoders] NPE on ToolTipManagerImpl/reset()

2009-01-19 Thread rviswanathan
_ rviswanathan wrote: Thanks Alex. Since the destroyToolTip is public and the doc says not to call it on the currentToolTip, I'd probably think that it is used when we explicitly create and destroy tooltips. About faking the mouse event that you have mentioned, are you meaning that I need to add

[flexcoders] Line Series - does not show anything for single data point

2009-04-28 Thread rviswanathan
Hi I am trying to plot a line series; it works fine when I have multiple data points, however it doesn't work when I have just one data point. I am trying to see if this one data point can show up as a circle rather than not showing up anything at all. SWF and source attached. The chart