Re: [flexcoders] Checkbox in grid

2012-12-07 Thread Alex Harui
ubject: Re: [flexcoders] Checkbox in grid Usually the checkbox changes something, either in the selection model or the data model, and you loop over that model. On 12/6/12 7:58 AM, "Davidson, Jerry" wrote: I have a check box in an advancedatagrid along with other fields. They all

RE: [flexcoders] Checkbox in grid

2012-12-07 Thread Davidson, Jerry
change the value of the checkbox field. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Alex Harui Sent: Friday, December 07, 2012 1:29 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Checkbox in grid Usually the checkbox changes something, either i

Re: [flexcoders] Checkbox in grid

2012-12-06 Thread Alex Harui
Usually the checkbox changes something, either in the selection model or the data model, and you loop over that model. On 12/6/12 7:58 AM, "Davidson, Jerry" wrote: I have a check box in an advancedatagrid along with other fields. They all show up as does the checkbox. I can check the b

[flexcoders] Checkbox in grid

2012-12-06 Thread Davidson, Jerry
I have a check box in an advancedatagrid along with other fields. They all show up as does the checkbox. I can check the box(es). There is a button that will then process the selected records. I start a loop on the grid, but I don't know where to go from there. The two things I want to do i

Re: [flexcoders] Checkbox

2012-01-18 Thread Alex Harui
See the itemrenderer posts on my blog On 1/18/12 2:08 AM, "abhinay.dronamraju" wrote: Hi I am new to flex and I am not able to figure out how to stop checkboxes from randomly getting selected in a datagrid. here is the code I have so far. Thanks http://ns.adobe.com/mxml/2009"; xmlns:s="

[flexcoders] Checkbox

2012-01-18 Thread abhinay.dronamraju
Hi I am new to flex and I am not able to figure out how to stop checkboxes from randomly getting selected in a datagrid. here is the code I have so far. Thanks http://ns.adobe.com/mxml/2009"; xmlns:s="library://ns.adobe.com/flex/spark"

RE: [flexcoders] Checkbox on Image

2010-08-13 Thread Gregor Kiddie
Sit them both in a Canvas and position them correctly, or write your own custom component based off UIComponent and deal with the layout yourself. Gk.

[flexcoders] Checkbox on Image

2010-08-13 Thread Christophe
Hello, How to superimpose a mx:checkbox on a mx:image ? Thank you, Christophe,

Re: [flexcoders] CheckBox in TileList

2010-08-12 Thread Alex Harui
You might be able to borrow code from my DataGrid examples on my blog. On 8/12/10 6:01 AM, "Christophe" wrote: Hello, How to add chekbox in a Tile List, and how to get the values of the check box in the main program ? Thank you, Christophe, -- Alex Harui Flex SDK Team Adobe System

[flexcoders] CheckBox in TileList

2010-08-12 Thread Christophe
Hello, How to add chekbox in a Tile List, and how to get the values of the check box in the main program ? Thank you, Christophe,

Re: [flexcoders] checkbox change while I move the datagrid scroll bar

2010-04-27 Thread Fernando Wermus
Oleg, Thanks! I don't have Flex 4 so I cant try by this way. I would add the selected attribute to the VO. On Tue, Apr 27, 2010 at 5:53 PM, Oleg Sivokon wrote: > > > Sorry, I've got that one wrong :) > > public override function set data(value:Object):void > { > this.checkBox.checked = thi

Re: [flexcoders] checkbox change while I move the datagrid scroll bar

2010-04-27 Thread Oleg Sivokon
Sorry, I've got that one wrong :) public override function set data(value:Object):void { this.checkBox.checked = this.parentDocument.amIChecked(this); super.data = value; }

Re: [flexcoders] checkbox change while I move the datagrid scroll bar

2010-04-27 Thread Oleg Sivokon
http://help.adobe.com/en_US/FlashPlatform//reference/actionscript/3/spark/components/DataGroup.html#itemRendererFunction ( this is Flex 4, it didn't exist in Flex 3 ) But, no, it shouldn't work like that out of the box because renderers are reused, when the list based control lays out a renderer i

Re: [flexcoders] checkbox change while I move the datagrid scroll bar

2010-04-27 Thread Fernando Wermus
Oleg, I cant associate the state with the data, and I cant find any info about itemRendereFunction. Do you have any link about it? According to my code, I would think this just should happen. I re write down my code: On Tue, Apr 27, 2010 at 3:10 PM, Oleg Sivokon wrote: > > > Hi, the

Re: [flexcoders] checkbox change while I move the datagrid scroll bar

2010-04-27 Thread Oleg Sivokon
Hi, the list based controls may reuse the item renderers, however they might not be aware of the changes that had happened to them. Normally you would store the state with the data which the renderer has to display. So that once the data is reset, the render appearance would reset with it. If, for

[flexcoders] checkbox change while I move the datagrid scroll bar

2010-04-27 Thread Fernando Wermus
Hi all, I just want to check and uncheck a checkbox in a datagrid. What I do is to add or remove from the selected's collection. But I got an error index when removing. Futhermore, the checked item change! when I move the datagrid scroll bar. This is my code, -- Fernando Wermus. w

[flexcoders] Checkbox set disabled color to enabled color.

2010-02-26 Thread aceoohay
I would like to set the disabled color to the enabled color on a checkbox based custom component. I tried; public function ValidatedCheckBox() { super(); this.addEventListener(Event.CHANGE,_eventHandler)

RE: [SPAM] [flexcoders] checkbox code like yahoo check box

2010-02-06 Thread Tracy Spratt
] [flexcoders] checkbox code like yahoo check box Hi everyone, Any of tell me the check box code like yahoo check box,.When i check the header checkbox in a column all checkboxes in the row should be checked,..vice versa... And when i check all the checkboxes in the row manually the header check

[flexcoders] checkbox code like yahoo check box

2010-02-06 Thread charles_aug15
Hi everyone, Any of tell me the check box code like yahoo check box,.When i check the header checkbox in a column all checkboxes in the row should be checked,..vice versa... And when i check all the checkboxes in the row manually the header check box should be checked ,..vice versa...

Re: [Spam] RE: [SPAM] Re: [Spam] Re: [flexcoders] Checkbox in Datagrid

2009-10-15 Thread Agha Mehdi
so this is what I am doing. it gives me "A term is undefined and has no properties." public function brigFiles_clickHandler(_comp:CheckBox):void { var dp:Object = datagrid.dataProvider; var cursor:IViewCursor=dp.createCursor(); while( !cursor.afterLast )

[Spam] RE: [SPAM] Re: [Spam] Re: [flexcoders] Checkbox in Datagrid

2009-10-15 Thread turbo_vb
Look at the dataProvider. You're using the "select" property of the items, so loop and look. -TH --- In flexcoders@yahoogroups.com, Agha Mehdi wrote: > > Thanks guys. how do i get the list of all checked rows from the datagrid? > > On Thu, Oct 15, 2009 at 7:14 AM, Nick Middleweek n...@...wrote

[Spam] RE: [SPAM] Re: [Spam] Re: [flexcoders] Checkbox in Datagrid

2009-10-15 Thread turbo_vb
Really wouldn't advise using this type of in-line approach for a checkBox itemRenderer. Alex's blog shows a prefered manner: http://blogs.adobe.com/aharui/item-renderers/ -TH --- In flexcoders@yahoogroups.com, Agha Mehdi wrote: > > it's giving m

Re: [Spam] RE: [SPAM] Re: [Spam] Re: [flexcoders] Checkbox in Datagrid

2009-10-15 Thread Agha Mehdi
it's giving me below error Description Resource Path Location Type Could not resolve to a component implementation. comp.mxml Flex_FB/src line 238 Flex Problem Thanks On Thu, Oct 15, 2009 at 8:55 AM, Agha Mehdi wrote: > Thanks guys. how do i get the list of all checked rows from the d

Re: [Spam] RE: [SPAM] Re: [Spam] Re: [flexcoders] Checkbox in Datagrid

2009-10-15 Thread Agha Mehdi
Thanks guys. how do i get the list of all checked rows from the datagrid? On Thu, Oct 15, 2009 at 7:14 AM, Nick Middleweek wrote: > > > Ah ok... Thanks Tracy... > > Is that a bit like Application.application ? > > > > > 2009/10/15 Tracy Spratt > >> >> >> An item renderer is a component and has

Re: [Spam] RE: [SPAM] Re: [Spam] Re: [flexcoders] Checkbox in Datagrid

2009-10-15 Thread Nick Middleweek
Ah ok... Thanks Tracy... Is that a bit like Application.application ? 2009/10/15 Tracy Spratt > > > An item renderer is a component and has its own scope. “outerDocument” > is a reference to the renderer’s parent document. You use it to access > public properties of the parent. > > > > Tr

RE: [SPAM] Re: [Spam] Re: [flexcoders] Checkbox in Datagrid

2009-10-15 Thread Tracy Spratt
yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Nick Middleweek Sent: Thursday, October 15, 2009 7:17 AM To: flexcoders@yahoogroups.com Subject: [SPAM] Re: [Spam] Re: [flexcoders] Checkbox in Datagrid Hey Angleo, Just curious here but what's the outerDocument. prefix for on th

Re: [Spam] Re: [flexcoders] Checkbox in Datagrid

2009-10-15 Thread Nick Middleweek
Hey Angleo, Just curious here but what's the outerDocument. prefix for on the change event for? Cheers, Nick 2009/10/15 Angelo Anolin > > > Agha, > > You need to use Itemrenderer to render your checkbox control inside your > gridview: > > > > >/> > > > > > and the

Re: [Spam] Re: [flexcoders] Checkbox in Datagrid

2009-10-15 Thread Nick Middleweek
Hey Angleo, Just curious here but what's the outerDocument. prefix for on the change 2009/10/15 Angelo Anolin > > > Agha, > > You need to use Itemrenderer to render your checkbox control inside your > gridview: > > > > >/> > > > > > and then in your script section, d

Re: [flexcoders] Checkbox in Datagrid

2009-10-15 Thread Angelo Anolin
check your checkbox on the datagrid, the alert message should show. I hope this helps. Angelo From: Agha Mehdi To: flexcoders@yahoogroups.com Sent: Thursday, 15 October, 2009 1:19:22 Subject: [flexcoders] Checkbox in Datagrid   Hi, I have a datagrid column wit

[flexcoders] Checkbox in Datagrid

2009-10-14 Thread Agha Mehdi
Hi, I have a datagrid column with checkbox in it. how do i run a process when the checkbox state is changed. Thanks Agha

RE: [flexcoders] checkBox event

2009-06-16 Thread Jake Churchill
ps.com [mailto:flexcod...@yahoogroups.com] On Behalf Of markflex2007 Sent: Monday, June 15, 2009 1:01 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] checkBox event Hi, I use the follow, I can get the data before it changed this.addEventListener(MouseEvent.CLICK , onChnage); which eve

[flexcoders] checkBox event

2009-06-15 Thread markflex2007
Hi, I use the follow, I can get the data before it changed this.addEventListener(MouseEvent.CLICK , onChnage); which event the checkbox will send out after it changed so I can get the updated value. Thanks

Re: [flexcoders] checkbox and text input

2009-03-20 Thread Paresh M More
--- > > *From:* flexcod...@yahoogro ups.com [mailto: flexcod...@yahoogro ups.com ] > *On Behalf Of *diana_usim > *Sent:* Tuesday, March 17, 2009 4:34 AM > *To:* flexcod...@yahoogro ups.com > *Subject:* [flexcoders] checkbox and text input > > > > hye >

RE: [flexcoders] checkbox and text input

2009-03-20 Thread Tracy Spratt
t, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Dieyana Abu Bakar Sent: Thursday, March 19, 2009 9:32 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] checkbox and text input oh...can it b

Re: [flexcoders] checkbox and text input

2009-03-19 Thread Dieyana Abu Bakar
ou show me? From: Tracy Spratt To: flexcoders@yahoogroups.com Sent: Tuesday, March 17, 2009 9:21:28 PM Subject: RE: [flexcoders] checkbox and text input That task has several parts.  Which have you done successfully and which do you need help with?   Tracy Spratt, Laria

RE: [flexcoders] Checkbox issue

2009-03-17 Thread Tracy Spratt
t services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of secrit.service Sent: Tuesday, March 17, 2009 2:09 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Checkbox issue Hi all, I have a checkbox (chkMyCheckbox) and added an eventlist

[flexcoders] Checkbox issue

2009-03-17 Thread secrit.service
Hi all, I have a checkbox (chkMyCheckbox) and added an eventlistener to it. chkMyCheckbox.addEventListener(Event.CHANGE, checkBoxChangeHandler); In the changeHandler I peform the necessary tasks : private funtion checkBoxChangeHandler (evt:Event):void { if (chkMyCheckbox.selected) {

RE: [flexcoders] checkbox and text input

2009-03-17 Thread Tracy Spratt
4:34 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] checkbox and text input hye i've got a problem to build my checkbox.i have a checkbox with label "IP address" and a text input beside it. i want to be able to input any IP address and when i click the checkbox

[flexcoders] checkbox and text input

2009-03-17 Thread diana_usim
hye i've got a problem to build my checkbox.i have a checkbox with label "IP address" and a text input beside it. i want to be able to input any IP address and when i click the checkbox button it will filter the datagrid according to IP address input earlier.it like a combination of 'searc

[flexcoders] Checkbox Itemrenderer centering mystery...

2009-03-12 Thread aceoohay
I have an itemrenderer that is a checkbox. I define textAlign="center" in the datagriColumn. It doesn't center. I decided to ask folks here so I created a simple test case to post, and unfortunately it works fine. I tried adding some of the things that I do in the real module, and I can't get

RE: [flexcoders] checkbox itemEditor in DataGrid

2009-01-30 Thread Tracy Spratt
Services Flex development bandwidth available From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of markflex2007 Sent: Friday, January 30, 2009 10:42 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] checkbox itemEditor in

[flexcoders] checkbox itemEditor in DataGrid

2009-01-30 Thread markflex2007
Hi, I have add a checkbox itemEditor in DataGrid, I want to make current row selected when I select the checkbox. Please give me a deal how to do that. Thanks you for your help Mark my current code private function selectLabeler( item:Object, col:* ) : String { if(item.m

RE: [flexcoders] Checkbox in a DataGrid - how check without selecting the line.

2008-12-04 Thread Alex Harui
You can prevent the visuals from being displayed by overriding drawItem() From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of garyq22 Sent: Thursday, December 04, 2008 3:53 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Checkbox in a DataGrid - how check without

[flexcoders] Checkbox in a DataGrid - how check without selecting the line.

2008-12-04 Thread garyq22
Hi Everyone I have a CheckBox set as the renderer/editor for a column in my DataGrid and I would like users to be able to check and uncheck the boxes on different rows without selecting or changing the selection of the current grid row. Is this possible? Any help would be very much appreciated.

RE: [flexcoders] Checkbox in datagrid

2008-11-25 Thread Tracy Spratt
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sbnkn Sent: Tuesday, November 25, 2008 3:30 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Checkbox in datagrid Hi ALL, This group is being really helpful. I have asked a question earlier and people responded with answers on the same

[flexcoders] Checkbox in datagrid

2008-11-25 Thread sbnkn
Hi ALL, This group is being really helpful. I have asked a question earlier and people responded with answers on the same day. I appreciate and thank you all. Now back to the another question. I have a form to enter and a datagrid to display the records. Form has: text, textarea and multiple

RE: [flexcoders] checkbox jumping

2008-11-20 Thread Alex Harui
One way would be to wrap the loader with another IFlexDisplayObject that knows how big the loaded image will be From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of s.gratl Sent: Thursday, November 20, 2008 8:52 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] checkbox

[flexcoders] checkbox usage in flex

2008-11-20 Thread sbnkn
Hi All, I'm new to Flex development and have strong CF background. My simple project detail: I have a datagrid and a form (text field, textarea field, datefield, and checkbox). Once I provide all the information, and submit the form, the data gets inserted into the table(SQL DB) and shows in the

[flexcoders] checkbox jumping

2008-11-20 Thread s.gratl
hi, got a problem using a checkbox in a big application. the icons for the different states(over, down, selected) are not loaded initial. so if i rollover or select the box the first time the new icon is loaded and added to the stage, but the positioning happens in updateDisplayList(). that leads t

[flexcoders] Checkbox in dataGrid

2008-10-28 Thread markgoldin_2000
Here is my DG:

Re: [flexcoders] Checkbox label vertical Alignment

2008-10-20 Thread Naveen Booma
sting of a checkbox with no label and a separate label that was >> rotated. Note, to rotate text, the font must be embedded. >> >> >> >> Tracy >> >> >> -- >> >> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

Re: [flexcoders] Checkbox label vertical Alignment

2008-10-14 Thread Naveen Booma
font must be embedded. > > > > Tracy > > > -- > > *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On > Behalf Of *Naveen > *Sent:* Sunday, October 12, 2008 8:14 PM > *To:* flexcoders@yahoogroups.com > *Subject:* [flex

RE: [flexcoders] Checkbox label vertical Alignment

2008-10-14 Thread Tracy Spratt
Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Naveen Sent: Sunday, October 12, 2008 8:14 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Checkbox label vertical Alignment Hello everyone, I have been trying to align the label of

[flexcoders] Checkbox label vertical Alignment

2008-10-14 Thread Naveen
Hello everyone, I have been trying to align the label of a checkbox vertically, but I cannot find a way to do that. Can anyone suggest me a way to do that ?? Thank you, Naveen

Re: [flexcoders] Checkbox in Datagrid . . . how?

2008-09-02 Thread bjorn
You need to create a TreeItemRenderer, there's an example in the Flex Cookbook here: http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&postId=545&productId=2 - bjorn 2008/9/2 crumpelfungus <[EMAIL PROTECTED]> > Having looked through the archived topics, I was unable to

[flexcoders] Checkbox in Datagrid . . . how?

2008-09-02 Thread crumpelfungus
Having looked through the archived topics, I was unable to find anything relevant, but if anyone knows of an existing thread or tutorial, just post the link. Basically, I am retrieving information from a MySQL database and dsiplay it in a datagrid. And I'm using a customized component via the

RE: [flexcoders] checkbox ItemRenderer in a List doesn't allow wordWrap

2008-08-28 Thread Alex Harui
oders@yahoogroups.com Subject: [flexcoders] checkbox ItemRenderer in a List doesn't allow wordWrap Hello, i'm tryin to use wordWrap in labels of items of a List that has a checkBox Item Renderer, but when I run it, it doesn't do the wordWrap. Any help ?? thanks in advance.

[flexcoders] checkbox ItemRenderer in a List doesn't allow wordWrap

2008-08-28 Thread Bernardo Salazar
Hello, i'm tryin to use wordWrap in labels of items of a List that has a checkBox Item Renderer, but when I run it, it doesn't do the wordWrap. Any help ?? thanks in advance.

[flexcoders] CheckBox DataGrid column itemRenderer not updating. Please help.

2008-08-24 Thread greg_lafrance
I have a column in a datagrid using CheckBox as itemRender, and user checks CheckBoxes they want to send email for. But after user checks the CheckBoxes, the data provider has not been updated. Should I try to get the dataProvider to get the updated checked/unchecked state of the CheckBoxes (a

RE: [flexcoders] CheckBox Question, want to confirm before toggle

2008-07-22 Thread Alex Harui
08 10:13 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] CheckBox Question, want to confirm before toggle When someone clicks on the checkbox, I want them to confirm before the checkbox is toggled. Basically, how can I have the click on the checkbox not toggle it, and ill toggle it myself... ?

[flexcoders] CheckBox Question, want to confirm before toggle

2008-07-22 Thread tchredeemed
When someone clicks on the checkbox, I want them to confirm before the checkbox is toggled. Basically, how can I have the click on the checkbox not toggle it, and ill toggle it myself... ?

RE: [flexcoders] Checkbox as a headerRenderer

2008-05-05 Thread Alex Harui
Have your classfactory only return one instance. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markgoldin_2000 Sent: Monday, May 05, 2008 1:22 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Checkbox as a headerRenderer I

[flexcoders] Checkbox as a headerRenderer

2008-05-05 Thread markgoldin_2000
I am implementing a checkbox as a headerRenderer: public class CheckBoxHeaderRenderer extends CheckBox { public function CheckBoxHeaderRenderer() { super(); addEventListener("click", clickHandler); } override protected function clickHa

RE: [flexcoders] Checkbox with function problem

2008-02-15 Thread steven pollard
same result. I accidently left that true in there by mistake was testing. thanks To: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Fri, 15 Feb 2008 17:53:01 +Subject: Re: [flexcoders] Checkbox with function problem Maybe it should really be: if (!signature_include.selected) { Paul

Re: [flexcoders] Checkbox with function problem

2008-02-15 Thread Paul Andrews
Maybe it should really be: if (!signature_include.selected) { Paul - Original Message - From: steven pollard To: flexcoders@yahoogroups.com Sent: Friday, February 15, 2008 5:43 PM Subject: RE: [flexcoders] Checkbox with function problem I tried that and still the same

RE: [flexcoders] Checkbox with function problem

2008-02-15 Thread steven pollard
I tried that and still the same results.. here is my code To: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Fri, 15 Feb 2008 17:34:34 +Subject: RE: [flexcoders] Checkbox with function problem Use == rather than = (the former compares, the latter sets the value). (That’s from

RE: [flexcoders] Checkbox with function problem

2008-02-15 Thread Jim Hayes
5 February 2008 17:33 To: flexcoders@yahoogroups.com Subject: [flexcoders] Checkbox with function problem Hello Everyone, I am emailing because I have a problem whenever I write a function with if (Checkbox.selected=ture/false){something} or if (!checkbox.selected){something} Flex reads the

[flexcoders] Checkbox with function problem

2008-02-15 Thread ghus32
Hello Everyone, I am emailing because I have a problem whenever I write a function with if (Checkbox.selected=ture/false){something} or if (!checkbox.selected){something} Flex reads the function before I call it, or it reads the selected. So when I run the program the checkbox is already sele

Re: [flexcoders] checkbox- create a bindable "value" property

2008-01-22 Thread Sherif Abdou
Doesnt he need ti dispatch an Event so it works? So dispatch the event then have it [Binable(event="eventName")] - Original Message From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, January 22, 2008 12:56:05 A

Re: [flexcoders] checkbox- create a bindable "value" property

2008-01-21 Thread tim
Hi, As far as I understand binding the bind works from the data out to the bound component. So when the data is changed the componenet picks up the change. However I don't believe it works the other way, in fact I'm sure it doesn't. This makes sense as you should only change the data when you a

[flexcoders] checkbox- create a bindable "value" property

2008-01-21 Thread bmilesp
Hello! I want a checkbox to return 1 or 0 instead of true or false respectively. Here's my component: http://www.adobe.com/2006/mxml";> When i try to bind a data model to the "value" property, it doesn't update the model when the value changes. However, when I do: click="Alert.show(value)",

[flexcoders] checkbox - create a bindable "value"

2008-01-21 Thread bmilesp
Hello! I want a checkbox to return 0 or 1 instead of true or false respectively. Here's my component: http://www.adobe.com/2006/mxml";> When i try to bind a data model to the "value" property, it doesn't update the model when the value changes. However, whe

RE: [flexcoders] checkbox in datagrid

2007-09-14 Thread Alex Harui
rendererIsEditor From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of li_rang Sent: Thursday, September 13, 2007 7:30 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] checkbox in datagrid Hi, All, I have a strang problem in

[flexcoders] checkbox in datagrid

2007-09-14 Thread li_rang
Hi, All, I have a strang problem in datagrid, the last column in my datagrid is based on checkbox, but the when i click the checkbox, it turned to textinput again. Here are my code:

[flexcoders] checkbox in itemRenderer

2007-06-07 Thread danj520
Hi, I have an itemrenderer that I want to insert a checkbox component. When I display the TileList, how can I detect when the checkbox has been checked (and its value, true/false) for each itemrenderer? I have approx 40 tiles...Thanks in advance..

RE: [flexcoders] Checkbox needs to have the same behavior like 'ctrlkey+mouse click' in datagrid

2007-06-04 Thread Alex Harui
You could just keep setting selectedIndices From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of handitan Sent: Friday, June 01, 2007 3:06 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Checkbox needs to have the same behavior like

[flexcoders] Checkbox needs to have the same behavior like 'ctrlkey+mouse click' in datagrid

2007-06-02 Thread handitan
Hi, I have a datagrid that allows me to do select multiple rows by holding down ctrlkey and clicking each row, and it also allows me to drag those rows to a tree. Now, I have been told to replicate this same behavior but with checkbox. So I already have checkbox as part of the datagridColumn b

[flexcoders] CheckBox check icon style - checkColor hardcoded?

2007-05-30 Thread Derek Vadneau
I ran into this and thought I'd share the solution I used. The problem: How to change the colour of the check icon in the CheckBox component? Solution: There are a few ways to do this but here is the one I opted for since it allows me to change the colour through styles. 1. In the Style section

[flexcoders] CheckBox in DataGrid Issue

2007-04-24 Thread Romin Irani
I have a XMLListCollection and I am using DataGrid to show all the records of the collection. Inside DataGrid, I need to show a checkbox using itemRenderer for one of the XML elements. The documentation states that Checkbox works with boolean value BUT in my source XML the boolean value is in

Re: [flexcoders] Checkbox in DataGrid cell won't turn invisible!

2007-04-04 Thread Tom Chiverton
On Tuesday 03 Apr 2007, Ben Densmore wrote: > Hi Jamie, > I believe this is a bug in 2.0.1. I have run into the same issue with > trying to set a datagrid column to visible="false". It seems to be ignored. It was fixed in the hotfix: http://rachaelandtom.info/node/1440 -- Tom Chiverton Helping

Re: [flexcoders] Checkbox in DataGrid cell won't turn invisible!

2007-04-03 Thread Ben Densmore
an <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, April 3, 2007 12:18:27 PM Subject: [flexcoders] Checkbox in DataGrid cell won't turn invisible! Can someone help please ? In the following itemRenderer code for a dataGridColumn, I'm t

[flexcoders] Checkbox in DataGrid cell won't turn invisible!

2007-04-03 Thread jamiebadman
Can someone help please ? In the following itemRenderer code for a dataGridColumn, I'm trying to have the checkbox not show - but it seems that despite having 'visible="false"' or even 'includeInLayout="false"' it still shows up! In reality, of course, I have a function defining whether or not

[flexcoders] CheckBox Validator

2007-03-30 Thread ajudah987
Hi, I have a checkbox i need to force people to tick before accessing the next step in the checkout process. I was looking at using a validator to do this but i can't get this to work. Is this possible? Cheers, AJ

[flexcoders] Checkbox Select List Component

2007-03-26 Thread Rick Root
Someone blogged about a custom component they'd built that was like a list component, but rendered the items as checkboxes... however I can't find it anywhere. Our users prefer the visual of the checkbox in a multi-select component, plus not having to SHIFT-click or CTRL-click makes it easier for

RE: [flexcoders] Checkbox in Datagrid to Select Items

2007-03-19 Thread Tracy Spratt
//www.cflex.net/showfiledetails.cfm?ChannelID=1&Object=File&objectI D=559 Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of subeesh a Sent: Monday, March 19, 2007 12:16 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]

Re: [flexcoders] Checkbox in Datagrid to Select Items

2007-03-19 Thread subeesh a
Thanks Tracy, That was a great help. Can u please explain in detail in how can i update the dataprovider Subeesh - Original Message From: Tracy Spratt <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Monday, 19 March, 2007 10:29:16 PM Subject: RE: [flexcoders] Check

RE: [flexcoders] Checkbox in Datagrid to Select Items

2007-03-19 Thread Alex Harui
March 19, 2007 10:58 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Checkbox in Datagrid to Select Items When the user clicks a checkbox in the itemRenderer, the renderer must update a "selected" property on the dataProvider item with the value of the checkbox selected

RE: [flexcoders] Checkbox in Datagrid to Select Items

2007-03-19 Thread Tracy Spratt
om Subject: [flexcoders] Checkbox in Datagrid to Select Items Hi All, Can anyone help me with this If i place chek boxes in datagrid column by inline item renderer how can il put al the items in the datagrid in wich the check boxes are ticked to an array. Thanks

[flexcoders] Checkbox in Datagrid to Select Items

2007-03-19 Thread subeesh a
Hi All, Can anyone help me with this If i place chek boxes in datagrid column by inline item renderer how can il put al the items in the datagrid in wich the check boxes are ticked to an array. Thanks Subeesh __ Yahoo

[flexcoders] Checkbox in Celrenderer Problem

2007-03-12 Thread digital_eyezed
Hi, I have a cellrenderer for a datagrid which has a simple checkbox in it. My problem is, when I click the checkbox, another checkbox (which is outside the scroll area of the datagrid) is also checked and so on every row which is equal to the rowcount of the datagrid. Is this a bug? How do I g

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

2007-03-09 Thread Lisa Nelson
themselves. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alex Harui Sent: Thursday, March 08, 2007 6:24 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] checkbox in datagrid with vertical slider bar That's a common misunderstanding. The checkbox is drive

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

2007-03-09 Thread Tracy Spratt
excoders@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 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, row

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

2007-03-08 Thread Alex Harui
other related properties. From: flexcoders@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 ch

[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

RE: [flexcoders] checkbox with tree component

2007-02-26 Thread Joan Lafferty
.x + myCheckBox.width + margin; } } } } } Good Luck, Joan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dorkie dork from dorktown Sent: Friday, February 23, 2007 1:56 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders

Re: [flexcoders] checkbox with tree component

2007-02-26 Thread Mrinmoyee Sanyal
Or you cud get it free from Adobe: http://www.adobe.com/cfusion/exchange/index.cfm?view=sn611&extID=1047969 -MS On 2/23/07, dorkie dork from dorktown <[EMAIL PROTECTED]> wrote: Saurav, In case you want to buy a solution http://www.teotigraphix.com/flex2/components/controls/che

Re: [flexcoders] checkbox with tree component

2007-02-23 Thread dorkie dork from dorktown
Saurav, In case you want to buy a solution http://www.teotigraphix.com/flex2/components/controls/checkboxtreefx. On 2/22/07, sauravsinha79 <[EMAIL PROTECTED]> wrote: Hi, I want to add a check box with each tree node(branch/leaf). Any help will be really appreciated.I went through some sampl

[flexcoders] checkbox with tree component

2007-02-23 Thread sauravsinha79
Hi, I want to add a check box with each tree node(branch/leaf). Any help will be really appreciated.I went through some sample but couldn't understand. I m just a begginer w.r.t flex, but i know AS2 (OOPS). Any help will be really appreciated Regards & Thanx Saurav

[flexcoders] CheckBox in DataGridColumn Header in Flex1.5

2007-02-19 Thread Yasovardhan Babu
Hi, I have a datagrid with one column as checkbox. My requirement is that on clicking the checkbox in datagrid colmn header, it should check/uncheck all the items in the grid and should update the checked/uncked value of each item to the datbase. Can you please help me with a sample code? It sh

[flexcoders] CheckBox background color

2007-02-12 Thread Pablo
Hi All. How I can change CheckBox background color and Label background color?

  1   2   >