[flex_india:21789] Help in Advanced datagrid

2009-04-23 Thread rjoshicool
I want to add data in the same row where a group is formed in advanced datagrid. The data would be coming from the XML. I have seen summaries in advanced datagrid, but gives results specific to some mathematical operations. --~--~-~--~~~---~--~~ You received this me

[flex_india:21819] Multi user access and Flex HTTPService and PHP

2009-04-24 Thread rjoshicool
Hi, I am developing a Flex application with PHP as a server side technology. I am using HTTPService to send and receive data to and fom PHP. When I want to receive a result, I send request to a particular PHP URL and handle the result in the Resut Event of the HTTP Service, which is in th form of

[flex_india:21894] HierarchicalData in Flex

2009-04-28 Thread rjoshicool
Hi, I want to read an XML file and put the result in a HierarchicalData type object. I had followed this link- http://livedocs.adobe.com/flex/3/html/help.html?content=advdatagrid_07.html for implementing it but am not able to get the similar tree like structure. I am not able to get the exact XML

[flex_india:21896] Drag and drop between datagrid and advanced datagrid

2009-04-28 Thread rjoshicool
Hi, I want to drag a row from my datagrid and drop it into an advanced datagrid. The columns in both the datagrids have different fields. How can this be done? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex In

[flex_india:21995] Populating data into Advanced Datagrid from an XML file

2009-05-04 Thread rjoshicool
Hi, I have an advanced datagrid in which i want to populate data coming from an XML File. I want to achieve a tree structure in the advanced datagrid which should be similar to the one shown here: http://livedocs.adobe.com/flex/3/html/help.html?content=advdatagrid_07.html Here they are using an

[flex_india:21998] Re: Populating data into Advanced Datagrid from an XML file

2009-05-04 Thread rjoshicool
ot; Estimate="45000"/> >             >         > > and you can read this XML using HTTPService and the dataprovider will > be > > new HirarchicalData(event.result) where event is ResultEvent of > HTTPService. > > HTH, > > -Ravi > > On May

[flex_india:21999] Validation on a Datagrid Column

2009-05-04 Thread rjoshicool
Hi, I have a Datagrid with three columns, out of which two columns are editable. I want to apply string validator on one of the editable column. How can I do this? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex

[flex_india:22033] Update database on change in advanced datagrid

2009-05-05 Thread rjoshicool
Hi, I have an Advanced datagrid which is getting data from MySQL DB using PHP. The rows in the adv. datagrid can be moved within the adv DG. The nodes in the adv DG are forming a tree like structure with parent then children and then sub children. What I want to do is whenever a row is moved, the

[flex_india:22034] Drag drop in advanced DataGrid

2009-05-05 Thread rjoshicool
I have an advanced datagrid which is having a HierarchicalData as its source which in turn is getting its data from an XML file. A tree structure is formed in the database. I want to drag an element from one tree and drop it into another tree within the hierarchy. How can I check that which child

[flex_india:22060] Prevent an item from being dropped in Flex

2009-05-06 Thread rjoshicool
I have an advanced datagrid which has a tree node at the top, then several children. These children can also be a tree node or can be a normal child and so on. I want to drag an item out of one tree node to another. But if the user places a node at the same level as the main parent tree node is, t

[flex_india:22061] Re: Populating data into Advanced Datagrid from an XML file

2009-05-06 Thread rjoshicool
          headerText="Territory Rep"/> >                             headerText="Actual"/> >                             headerText="Estimate"/> >         >     > > > > On May 4, 4:12 pm,rjoshicool wrote: > > > Hi, > >

[flex_india:15220] Problem filling DataGrid with XML - Object or ArrayCollection?

2008-10-17 Thread rjoshicool
Hi, I am trying to fill a datagrid with an XML file, rendered from a PHP script. The problem is that - first time there is only one entry in the XML file, so when I receive the data using event.result.root.child, I get an Object. But second time, when there are two entries in the XML file, the re

[flex_india:15239] Access an external ActionScript file from Flex component

2008-10-18 Thread rjoshicool
Hi, I have a flex project with Flex Main Application mxml file, one component in mxml and an actionscript file. I have specified the source of the as file in the main application. The components in the main application are able to access the functions in the as file but the components in custom co

[flex_india:15251] Re: Access an external ActionScript file from Flex component

2008-10-19 Thread rjoshicool
t; <[EMAIL PROTECTED]> wrote: > Hi, > > Two questions... > > - Are the methods in the .as file public? > - How are you trying to access the methods from the component? It should > work using parentDocument. > > Regards, > Venkat > > On Sat, Oct 18, 2008 at 4:0

[flex_india:15252] Re: How to enable flex security to allow local file access

2008-10-19 Thread rjoshicool
u can access local files on flex by using "-use-network=false", without quotes, as a command line argument if u are compiling it using sdk. If using flex builder, right click the application>properties>look for something called flex compiler>add the above mentioned parameter after locale en..., He

[flex_india:15253] Re: Problem filling DataGrid with XML - Object or ArrayCollection?

2008-10-19 Thread rjoshicool
evaraj > > On Oct 18, 1:24 am, rjoshicool <[EMAIL PROTECTED]> wrote: > > > Hi, > > > I am trying to fill a datagrid with an XML file, rendered from a PHP > > script. > > The problem is that - first time there is only one entry in the XML > > file, so wh

[flex_india:15257] Working with httpservice resultformats

2008-10-19 Thread rjoshicool
Hi, Is there any tutorial or source where I can get to know about all the HTTPService resultFormats... and how to handle each of them in flex, like If i set resultformat to XML then how to use it in my application... and similarly for all the resultformats? --~--~-~--~~~--

[flex_india:15298] Re: Access an external ActionScript file from Flex component

2008-10-20 Thread rjoshicool
ou wont be able to access private methods from anywhere else other than the > class itself. To access the methods from the components, make the methods > public. It will then work. > > Regards, > Venkatwww.venkatv.com > > On Sun, Oct 19, 2008 at 4:04 PM, rjoshicool <[EMAIL P

[flex_india:15302] Re: Access an external ActionScript file from Flex component

2008-10-20 Thread rjoshicool
rom the components, make the methods > public. It will then work. > > Regards, > Venkatwww.venkatv.com > > On Sun, Oct 19, 2008 at 4:04 PM, rjoshicool <[EMAIL PROTECTED]> wrote: > > > methods are private and i have given the source of the as file in the > &g

[flex_india:15321] Re: Access an external ActionScript file from Flex component

2008-10-21 Thread rjoshicool
wrote: > Hi , > > How ur calling the actionscript file from your custom component... > > Regards, > DineshKumar.T > > On Mon, Oct 20, 2008 at 11:16 PM, rjoshicool <[EMAIL PROTECTED]> wrote: > > > Hi, > > I tried making the methods public, but then als

[flex_india:15379] Sending a bindable value as parameter of a flex function from mxml

2008-10-22 Thread rjoshicool
Hi, I have a function in my actionscript file which takes a string as parameter. I am sending a bindable value from my mxml to that actionscript function in this form - callFunction({entries.currentItem.Title}) But this gives me error.. So how can i send this bindable variable from my mxml to th

[flex_india:15383] Re: Access an external ActionScript file from Flex component

2008-10-22 Thread rjoshicool
act code > are you writing inside your component to call the method of the .as file? > Are you trying to call the method directly... like methodName() or are you > doing something like parentDocument.methodName()? > > Regards, > Venkatwww.venkatv.com > > On Tue, Oct 2

[flex_india:16946] outerDocument Propery not accessible

2008-12-02 Thread rjoshicool
Hi, I am developing an application in Flex 3. I want to access a function of the main application from the item renderer component. I was trying to use the outerDocument property of Flex, but it is not recognizing it. How can I access this property? Also how can i use the ParentDocument property h

[flex_india:17350] Accessing function of a component from main Application

2008-12-12 Thread rjoshicool
I want to access a function, which i have written in the script tags in my component, from my main application. How can I achieve this? Regards, Rahul Joshi http://www.rjdesignz.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G

[flex_india:17351] Quiz Builder application in Flex

2008-12-12 Thread rjoshicool
I want to create a quiz builder type application in flex in such a manner that, the user can specify what will be the questions, the answers, how many checkboxes, radio buttons and all.. Any idea how should i proceed for the same? like some resources or tutorials i can follow? --~--~-~--~-

[flex_india:17732] Re: Display current time

2008-12-24 Thread rjoshicool
I tried it but it didn't work for me. it is not able to recognize timeFormat.. any solution?? On Dec 18, 4:25 pm, "Thalai raju" wrote: > hi *matiasx* >                 can you get current date and after you can get current time > using gettime() > > On 12/17/08, matiasx wrote: > > > > > Hi all,

[flex_india:17986] Validation problem

2009-01-06 Thread rjoshicool
i have a radio button group with yes and no as two radio buttons. if a person selects no above, i want him to select few options from check boxes below it and if yes was selected then don't let him select the check boxes. Also I want all the validations to be done in an external as file, but they

[flex_india:19914] Multiple page printouts from textarea

2009-03-02 Thread rjoshicool
I am having a text area with some content. I want that if the content length increase it should automatically print the data to next page and so on.. How can this be done? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Group

[flex_india:20235] Problem playing flv files.

2009-03-10 Thread rjoshicool
I have created a flash video player.The player gets the path of the files and the thumbnails corresponding to those videos from an xml file. Thumbnails and videos are both having absolute path. The problem is that, I am able to see the thumbnails but not able to view the movies. Any idea what migh

[flex_india:20710] Flash video player with pre-roll ads

2009-03-23 Thread rjoshicool
Hi, Can anyone give me link yo tutorial explaining how i can insert pre- roll ads in a custom built flash video player? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this gro

[flex_india:21077] Text effects in Flex

2009-04-01 Thread rjoshicool
Hi, How can i put text effects in flex? In particular I am looking for effects like bend text to a particular angle and put text on path. Rahul Joshi --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex India Commu