[flex_india:21639] Re: DataGrid Shuffling itemrenderers when scrolled - Problem

2009-04-18 Thread nagu
This is the Url to check the Application http://golive.co.in/sample/ Just go to this site and open items menu and select edit/delete option then in that u will find this application After getting data into that just scroll the datagrid with mouse up and down rapidly u will see images moving her

[flex_india:21638] DataGrid Shuffling itemrenderers when scrolled - Problem

2009-04-18 Thread nagu
Hi, Im having datagrid it has two itemrenderer's in firt item reneder Combox is their and in second a Image & a button is their about 200 rows of data will be loaded vertical scroll will appear as it is large amount of data. The problem here is When all the data is loaded it is fine and looking

[flex_india:21637] Re: selected row Disable in datagird?

2009-04-18 Thread Jagadish M
Hi Karthik, I am sending a link regarding disable of an item in a listbox i think it may help you.. go through it. http://flexnflex.wordpress.com/2009/02/03/disabling-an-item-selection-in-listbox/ On Sat, Apr 18, 2009 at 3:42 PM, Karthik K wrote: > hi *vrathore* > > Thank you > > i tr

[flex_india:21636] Re: Test BlazeDS

2009-04-18 Thread Devaraj
It will work fine.. test with these http://nsdevaraj.wordpress.com/2009/04/18/flex-with-java/ Regards, Devaraj On Apr 18, 6:14 pm, sam wrote: > Hi All I am currently working on BlazeDS and want to know that is > there any way to check whether the java class compiled with service is > working cor

[flex_india:21635] Flex session Management

2009-04-18 Thread murali
hi I’m new for BlazeDS and working with cairngorm architecture. i stored my login user detail information in modellocator variable.but after some time the data was garbage collected.so i couldn’t maintain user’s detail.help me to maintain the user’s detail in session Thanks, Muralisankar Mahaling

[flex_india:21634] Test BlazeDS

2009-04-18 Thread sam
Hi All I am currently working on BlazeDS and want to know that is there any way to check whether the java class compiled with service is working correct. Like Browser in Amfphp and Management->Services->Service->Invoke in Weborb for PHP. Any External tool any. Please reply soon its urgent. Sumit

[flex_india:21633] Re: Datagridcolumn icons

2009-04-18 Thread sankar swaroop
Hi Hemavaan, see this code http://www.adobe.com/2006/mxml";> On Sat, Apr 18, 2009 at 12:02 AM, Hemavaan KKH wrote: > hi friends, > > I have same problem. i don't what can i do. if u wish plz send source file. > > Thanks&Regards in advance > Hemi (KKH) > +91-9865

[flex_india:21631] Re: selected row Disable in datagird?

2009-04-18 Thread Karthik K
hi *vrathore* Thank you i tried your sample is this sample will be used when editable=true is set am i right -- Karthik.k Mobile - +91-9894991640 On 4/18/09, vrathore wrote: > > > // calling the function on itemEditEnd > > [Bindable]var checkRow: Number = 0; > private function checkEditEnd(ev

[flex_india:21628] Re: Help Me Cursor Focusing Problem

2009-04-18 Thread natarajan santosh
Hi, thanks for the reply can i give some small example for setSelection 2009/4/17 vrathore > > Use > > 1. setFocus() > 2. setSelection(0,0) > > Cheers > Varun Rathore > http://www.vrathore.blogspot.com > > > > > --~--~-~--~~~---~--~~ You received this message be

[flex_india:21627] Re: activating buttons

2009-04-18 Thread Sri
If the second mxml file is child of first mxml file then you can access parent component by using parentDocument. Suppose if second mxml file is custom component then it is not good approach. The best way is ---> use Costom Events in Flex. On Apr 17, 4:40 am, Ravi Mishra wrote: > By dispatch

[flex_india:21626] Re: Help Me Cursor Focusing Problem

2009-04-18 Thread Flex Baby
call this function on init() method. it is work in IE & firefox only. just copy & paste below code to init() method only ExternalInterface.call('function browserFocus()' + '{document.getElementById(\'index\').focus();}'); On Apr 17, 11:47 am, Ravi Mishra wrote: > Hi Natrajan, > > swf files embe

[flex_india:21629] Re: MXML component

2009-04-18 Thread Sri
U should use both visible = false includeInLayout = false Sri. On Apr 17, 7:20 am, Sindhu wrote: > Hi dlo, > Tried out what you suggested. Thank you:) > Sindhu. > > On Apr 17, 4:08 pm, Sindhu wrote: > > > Hi Ashish, > > It worked!! Thanks for the help:) > > Sindhu. > > > On Apr 17, 2:19 pm,

[flex_india:21630] Re: Problem playing flv files.

2009-04-18 Thread naresh naresh
If U provide the source code(Project as Zip) I Will Check your problem. Thanks And Regads Naresh On Thu, Apr 16, 2009 at 12:58 PM, Stephanee wrote: > > > > > rjoshicool wrote: > > > > > > I have created a flash video player.The player gets the path of the > > files and the thumbnails correspondi

[flex_india:21625] IE warning

2009-04-18 Thread deepa
Hi, When I login to my flex app I see a javascript warning, which when I debug points to textresizedetector.js the warning is abt an invalid argument at this line if (document.getElementById(TextResizeDetector.TARGET_ELEMENT_ID)) in the js file. I read some posts that it is due to browser text

[flex_india:21624] Re: selected row Disable in datagird?

2009-04-18 Thread vrathore
// calling the function on itemEditEnd [Bindable]var checkRow: Number = 0; private function checkEditEnd(event : DataGridEvent):void{ checkRow = event.rowIndex } // calling the function on itemEditBegin disabling the current selected Ro