Re: [flexcoders] Re: Flex alternatives

2012-01-16 Thread Rajan Jain
. No action script.   This is also browser independent and it also works well on mobile devices.   It is becoming more and more popular nowdays.   Everything displayed is widget and everything is on the server side behind the scenes it uses Ajax.   Thanks Rajan

[flexcoders] DataGrid | itemEditor | focus does not go to first row first column

2010-09-09 Thread Rajan
Hi I am sure most of the devlopers must have seen this sample http://blogs.adobe.com/aharui/DataGridMultiFieldEditor/DataGridMultiFieldEditorTest.swf Challenge: n the sample, use keyboard to tab the complete swf. After all the cell editors and button have recieved the focus atleast once then i

[flexcoders] Re: DataGrid | itemEditor | focus does not go to first row first column

2010-09-09 Thread Rajan
I got the answer add eventlistenet on the button keyFocusChange event and do the following event.preventDefault(); grid.invalidateDisplayList(); editGrid.editedItemPosition = {rowIndex: 0, columnIndex:1} Thanks ilikeflex --- In flexcoders@yahoogroups.com, Rajan ilikef...@... wrote: Hi I

[flexcoders] Alex Hauri Sample | CheckBox DataGrid

2010-07-29 Thread Rajan
Hi I am using Alex Sample in my piece of the code. http://blogs.adobe.com/aharui/2008/02/checkbox_selection_in_datagrid.html I have made grid editable and added the below columns couple of times. mx:DataGridColumn dataField=firstName headerText=First Name / mx:DataGridColumn

[flexcoders] Re: ItemEditor | Multiple Components | Focus Issue

2010-07-22 Thread Rajan
looks like it is a popup. Have you borrowed the code from the popup editor example as well? On 7/21/10 11:43 AM, Rajan ilikef...@... wrote: Actually itemEditEnd in the real sceanrio looks like below. Since i am uisng the nested datafield i am calling the event.preventDefault

[flexcoders] Re: ItemEditor | Multiple Components | Focus Issue

2010-07-22 Thread Rajan
/22/10 6:59 AM, Rajan ilikef...@... wrote: No, i have not borrowed the code for popup editorut yes i am using the popup editor. Please see the code for Pop up at http://ilikeflex.blogspot.com/ Under 'Code for PopUp' But my itemEditEnd event handler code is below. private

[flexcoders] Re: ItemEditor | Multiple Components | Focus Issue

2010-07-21 Thread Rajan
some clues. On 7/20/10 10:25 AM, Rajan ilikef...@... wrote: Actually, i have same itemeditor in different columns. Column1 1.One Tab - focus on textinput 2.Second Tab - focus on image. 3.Third Tab - Don't know where does the focus goes. Column2 4.Fourth Tab - focus

[flexcoders] Re: ItemEditor | Multiple Components | Focus Issue

2010-07-21 Thread Rajan
/ /mx:columns /mx:DataGrid /mx:Application Source Code for com.DateEditor is at http://blogcode.flexmonkeypatches.com/__FMP_datagrid_datefield_editor_asString/srcview/index.html --- In flexcoders@yahoogroups.com, Rajan ilikef...@... wrote: I have put the following code

[flexcoders] Re: ItemEditor | Multiple Components | Focus Issue

2010-07-21 Thread Rajan
(); datGrid.dataProvider.itemUpdated(event.itemRenderer.data); } } --- In flexcoders@yahoogroups.com, Rajan ilikef...@... wrote: Hi I have created simple test case to identify the issue. If i remove itemEditEnd then i have no issues with the focus. It works cleanly

[flexcoders] ItemEditor | Multiple Components | Focus Issue

2010-07-20 Thread Rajan
Hi http://blogs.adobe.com/aharui/category/item-renderers http://blogs.adobe.com/aharui/DataGridMultiFieldEditor/DataGridMultiFieldEditorTest.swf I looked to this example and i am using the custom item editor. My itemeditor has two components( text input + image ). Everything works fine and i

[flexcoders] Re: ItemEditor | Multiple Components | Focus Issue

2010-07-20 Thread Rajan
more than that? On 7/20/10 7:03 AM, Rajan ilikef...@... wrote: Hi http://blogs.adobe.com/aharui/category/item-renderers http://blogs.adobe.com/aharui/DataGridMultiFieldEditor/DataGridMultiFieldEditorTest.swf I looked to this example and i am using the custom item editor. My

[flexcoders] Itemrenderer images are not displayed correctly when clicked

2010-07-02 Thread Rajan
Hi I am using itemrenderer to display images. The images are displayed correctly according to the logic but when i click on the images the images are changed. I do not know what is causing the images to be change. Sometimes it even changes the image for row which is not clicked. Any pointers

[flexcoders] Re: Itemrenderer images are not displayed correctly when clicked

2010-07-02 Thread Rajan
try to explicitly set the source of the images in the set data function. For me that often helps when I run into strange itemrenderer behaviour. Am 02.07.2010 17:43, schrieb Rajan: Hi I am using itemrenderer to display images. The images are displayed correctly according

[flexcoders] Re: The lifespan of flex.

2010-07-02 Thread Rajan
In coming year most of the website will be Flex or Silver Light. --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: Believe me, if you saw how many people and how much money is invested in Flex, it would be clear that Adobe is committed. See the showcase on the adobe site and

[flexcoders] Re: ItemEditor | maxCharacters

2010-06-27 Thread Rajan
I got it working through your pointers. Thanks --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: You may need to call super.listData On 6/26/10 5:52 PM, Rajan ilikef...@... wrote: I created itemeditor public class TextInputFieldEditor extends TextInput

[flexcoders] Re: ItemEditor | maxCharacters

2010-06-26 Thread Rajan
I created itemeditor public class TextInputFieldEditor extends TextInput { private var _listData:BaseListData; private var _dataGrid:CheckBoxDataGrid; private var _dataField:String; private var _columnIndex:int;

Re: [flexcoders] Reflection does not provide information of Array Objects

2010-05-04 Thread Rajan Jain
Hi Oleg Thanks for the pointers. Regards Rajan From: Oleg Sivokon olegsivo...@gmail.com To: flexcoders@yahoogroups.com Sent: Tue, May 4, 2010 2:31:04 PM Subject: Re: [flexcoders] Reflection does not provide information of Array Objects   That's just a tag

Re: [flexcoders] Parser Error | Itemrender

2009-08-20 Thread Rajan Jain
Hi Alex Thanks ilikeflex From: Alex Harui aha...@adobe.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Thursday, August 20, 2009 1:44:50 AM Subject: RE: [flexcoders] Parser Error | Itemrender mx:Component defines a sub-document within

Re: [flexcoders] Re: Java/Flex questions answered by James Ward

2009-08-17 Thread Rajan Jain
Hi Mete You are 100% correct that i am using AMF Channel. I do not want to use HTTP Channel because then data has to be in XML format and it will make the request/response slow. At the same time i am using Remote Binding which will not be possible if i use HTTP Channel. But i put some time lag

Re: [flexcoders] Getting session in Flex

2009-06-09 Thread Rajan Jain
Use FlexContext.getHttpRequest or something is above lines. thanks ilikeflex From: nhid nhi...@gmail.com To: flexcoders@yahoogroups.com Sent: Monday, June 8, 2009 5:07:33 PM Subject: [flexcoders] Getting session in Flex Hello, How do I get an

Re: [flexcoders] Label is npt displayed for LinButton as Itemrenderer

2009-05-25 Thread Rajan Jain
Hi Jeff You are right. I worked for me after your pointer. Thanks ilikeflex From: Jeffry Houser j...@farcryfly.com To: flexcoders@yahoogroups.com Sent: Monday, May 25, 2009 8:30:22 AM Subject: Re: [flexcoders] Label is npt displayed for LinButton as

Re: [flexcoders] BindingUtils question.

2009-05-22 Thread Rajan Jain
Try using BindingUtils.bindSetter and create function. From: markflex2007 markflex2...@yahoo.com To: flexcoders@yahoogroups.com Sent: Friday, May 22, 2009 5:07:21 PM Subject: [flexcoders] BindingUtils question. I read a demo BindingUtils. bindProperty(

Re: [flexcoders] Adobe Bug | http://bugs.adobe.com/jira/browse/SDK-17299

2009-04-15 Thread Rajan Jain
then i would be great. Hope the statement below helps. PopUpManager. removePopUp( e.currentTarget. document as IFlexDisplayObject) ; thanks Rajan From: Igor Costa igorco...@gmail.com To: flexcoders@yahoogroups.com Sent: Tuesday, April 14, 2009 7:54:51 PM

[flexcoders] problem in WebService help me plz

2008-12-16 Thread NATA RAJAN
Hi All, The Below code is working very fine . but my need is i want to place the XML file instead of parameter (externalServiceParameterInfo). if i print in XML file using Aert it will show correctly.. mx:WebService id=ws_IM

Re: [flexcoders] ModuleLoader does not load module when instance is created as ModuleLoader()

2008-11-12 Thread Rajan Jain
Hi Alex It worked . Thanks Rajan From: Alex Harui [EMAIL PROTECTED] To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Saturday, November 8, 2008 11:59:22 PM Subject: RE: [flexcoders] ModuleLoader does not load module when instance is created

[flexcoders] Help Me

2008-10-01 Thread NATA RAJAN
Hi friends How to place the icons in DataGrid.can u send sample codings Regards Natarajan Add more friends to your messenger and enjoy! Go to http://messenger.yahoo.com/invite/

[flexcoders] How to capture fileds from XML file to combo box without DB

2008-09-24 Thread NATA RAJAN
sample XML file myxml.xml ?xml version=1.0? root   nodes data=US label=United States /   nodes data=IN label=INDIA/   nodes data=AE label=United Arab Emirates /   nodes data=AF label=Afghanistan /   nodes data=AG label=Antigua /   nodes data=AI label=Anguilla/   nodes data=AL

[flexcoders] Problem in second DataGrid

2008-09-24 Thread NATA RAJAN
?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Script     ![CDATA[         import mx.collections.ArrayCollection;         import mx.events.ListEvent;         import mx.controls.Alert;               public var n:String;   

[flexcoders] Problem in second DataGrid

2008-09-24 Thread NATA RAJAN
?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Script     ![CDATA[         import mx.collections.ArrayCollection;         import mx.events.ListEvent;         import mx.controls.Alert;               public var n:String;   

[flexcoders] Problem in second DataGrid

2008-09-24 Thread NATA RAJAN
?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Script     ![CDATA[         import mx.collections.ArrayCollection;         import mx.events.ListEvent;         import mx.controls.Alert;               public var n:String;   

[flexcoders] second time image is not appearing

2008-09-22 Thread NATA RAJAN
Hi ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute     mx:TextArea x=154 y=92 id=t1 height=27/     mx:Script      ![CDATA[ import mx.controls.Alert; import mx.controls.Image; import mx.controls.Button; public function hello():void {

[flexcoders] New to FLEX

2008-09-22 Thread NATA RAJAN
Hi friends am new to FLEX . can u send what are the flex sites to learn and PDF books and sample codings which u worked regards Natarajan Connect with friends all over the world. Get Yahoo! India Messenger at http://in.messenger.yahoo.com/?wm=n/

Re: [flexcoders] Icons are not displayed in menuItem

2008-09-16 Thread Rajan Jain
Hi Alex Thank you very much. It worked for both cases TestComponent.as and TestComponent.mxml. I added statement myMenu.document =   this refers to TestComponent in which icons class are declared   Thanks Rajan  this;   - Original Message From: Alex Harui [EMAIL PROTECTED

[flexcoders] UI Prototype Tool

2008-09-16 Thread Rajan Jain
Hi All   I just wanted to know which tool do you use to prototyping the application before actually start coding in flex?   Thanks Rajan

Re: [flexcoders] Icons are not displayed in menuItem

2008-09-15 Thread Rajan Jain
but i can change icon attribute in xml.  So if reference can be made to TestComponent from systemManager then it will work.   Please help me out.   Thanks Rajan   - Original Message From: Alex Harui [EMAIL PROTECTED] To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Monday

Re: [flexcoders] Icons are not displayed in menuItem

2008-09-14 Thread Rajan Jain
Rajan ?xml version=1.0 encoding=utf-8?mx:Applicationxmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute xmlns:local

[flexcoders] Icons are not displayed in menuItem

2008-09-13 Thread Rajan Jain
Hi All I am trying to display icon in the menu. I am using example from livedocs language reference. I have added icon attribute to dataprovider myMenu.iconField=@icon but icons are not displayed. Any pointers are highly appreciated. Thanks Rajan

[flexcoders] AdvancedDataGrid | totals | Hierachicalata

2008-08-01 Thread Rajan Jain
Hi Is mx:rendererProviders tag  inside mx:AdvancedDatagrid can be used with HierarchicalData only? I don't have HierarchicalData  and i want to show the totals in the grid. I have the xml in the format. But if i use the piece of code at bottom end  then render is never executed. Can anybody

Re: [flexcoders] flex testing

2008-07-16 Thread Rajan Jain
Try http://code.google.com/p/visualflexunit/ - Original Message From: phil swenson [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, July 16, 2008 12:59:56 AM Subject: [flexcoders] flex testing Any thoughts on testing the Flex UI?  I tried FunFX, but it crashed

Re: [flexcoders] Cast XMLList with 1 child to XML

2008-07-14 Thread Rajan Jain
Hi I think it is better to use XMLList.length(). IF you one child it will be 1. Hope this helps. Thanks ilikeflex - Original Message From: Sergey Kovalyov [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, July 14, 2008 1:50:26 AM Subject: [flexcoders] Cast XMLList with 1