[flex_india:29849] OLAPCube Creation in ActionScript Not Working.

2010-05-05 Thread VN
Hi All, I'm trying to convert and OLAPCube creation from MXML to ActionScript and it's not working. Source code attached. Any help? + xml file +++ ActionScript Verison +

[flex_india:29148] Re: Error in AdvancedDataGrid

2010-03-12 Thread VN
Hi, I think you are seeing a bug in groupingcollection class. If you have null vaues in grouping column you'll get this error. You have to use a custom groupingFunction. try this private function groupByGroupingFunction(data:Object,field:GroupingField):String { var dataVal

[flex_india:26586] Re: Changing the selected Data Grid Row Style

2009-11-11 Thread VN
and this too http://www.switchonthecode.com/tutorials/flex-datagrid-selected-row-styling On Nov 11, 3:43 pm, VN wrote: > Did you look at > this?http://blog.flexexamples.com/2008/02/19/setting-the-selection-color-a... > > On Nov 11, 9:03 am, rana wrote: > > > > &

[flex_india:26585] Re: Changing the selected Data Grid Row Style

2009-11-11 Thread VN
Did you look at this? http://blog.flexexamples.com/2008/02/19/setting-the-selection-color-and-selection-disabled-color-for-a-row-in-the-flex-datagrid-control/ On Nov 11, 9:03 am, rana wrote: > Hi, > > I am having a datagrid with the context menu item "read", when i click > on that the data grid

[flex_india:26584] Re: GroupedCollection- changing the grouping field based on the data.

2009-11-11 Thread VN
You can use an ActionScript function to that see an example public function applyGrouping(field1:String,field2:String):void { mygroup = new GroupingCollection(); if (StringUtil.trim(field1).length >0){ mygroup.source = gridData; var group:Grouping

[flex_india:26583] Re: Grouping collection refresh issue when the underlying dataProvider data changes

2009-11-11 Thread VN
t; I do have the similar issue,can you please post the solution. > > > > > > VN-3 wrote: > > > I found the solution. > > > Tx > > > On Sep 18, 2:14 pm, VN wrote: > >> Hi All, > > >> I have an advanced data grid with  grouping col

[flex_india:25864] Generate Summary from ArrayCollection in ActionScript

2009-10-12 Thread VN
Hi All, I'm trying to generate a summary from arraycollection. I'm not getting the correct results. Could you please take a look at my code? Thanks Vimal http://www.adobe.com/2006/mxml"; layout="absolute"> --~

[flex_india:25504] Re: Datagrid selection

2009-09-25 Thread VN
I think this will di=o the job public var _max:int = 0; private function selectAll():void { _max = dataGrid.dataProvider.length; var na:Array = new Array(); for( var i:int=1; i<= _max; i++) { na.push(i-1); } dataGrid.selectedIn

[flex_india:/] Re: footer in advanced datagrid

2009-09-18 Thread VN
look at this http://blogs.adobe.com/aharui/2008/03/flex_3_datagrid_footers.html On Sep 15, 7:40 pm, rishi wrote: > Hi > > I need some example in advanced datagrid with actionscript 3.0 and > flex, not mxml. > Any working samples > > Thanks in advance > Rishi --~--~-~--~~~

[flex_india:24449] Re: DDL with Flex

2009-08-12 Thread VN
Did you mean EDDL? http://www.eddl.org On Aug 12, 4:48 am, kalavati singh wrote: > Hi, > >       Can any one suggest be any docs/examples of Device Description > Language(DDL) with Flex. > > Regards > > Kalavati Singh --~--~-~--~~~---~--~~ You received this messag

[flex_india:24001] Re: generate PDF in flex

2009-07-27 Thread VN
Look at this http://derby.faratasystems.com/fxReporter/presentation/presentation.html On Jul 24, 2:28 pm, ArthurMagno wrote: > Hi man... > > try AlivePDF > > On Jul 24, 5:09 am, Ganesh r wrote: > > > > > Hi All > > > Im trying to design pdf template from flex using sql mapping fields, drag > >

[flex_india:23972] Re: Flex With Java

2009-07-24 Thread VN
http://sujitreddyg.wordpress.com On Jul 24, 12:27 am, srinivas chinni wrote: > Good Afternoon to everyone, I want to know about the connecting of Flex with > Java.If you have any Materials or e-Books or Blog sites kindly send to me. > > Thanking You, > > Srinivas. --~--~-~--~~---

[flex_india:23971] Re: making TitleWindow Resizable

2009-07-24 Thread VN
You can try this http://brandonmeyer.net/blog/?p=6 On Jul 24, 12:32 am, kalavati singh wrote: > Hi. >    Thank you VN & jagdish  the panel only minises & maximises,I wanted > something related to resizing(to be specific  the user can catch the corners > &  play around

[flex_india:23950] Re: making TitleWindow Resizable

2009-07-23 Thread VN
Take a look at this http://flexscript.wordpress.com/2008/08/28/flex-minimize-maximize-panel-component/ On Jul 22, 11:29 pm, kalavati singh wrote: > Hi, > >        I created a Title Window that covers the full screen after I click on > a button .I want Functionality of resizing its edges.Can any

[flex_india:23925] Datagrid export data (Only selected rows)

2009-07-22 Thread VN
Hi All, I have an AdvancedDatagrid with multirow select enabled.My user want to export the grid data to Excel. My function export all grid data to excel. How do I export only selected rows, if the user select multiple rows. Any help appreciated. Thanks --~--~-~--~~~-

[flex_india:21810] Re: AdvancedDatagrid column shift question

2009-04-23 Thread VN
Any help on this? On Apr 22, 10:57 am, VN wrote: > Hi All, > > I have an advancedDatagrid and the firdt column I'm displaying row > number. I don't want the user to shift this column to other positions. > How can I prevent dragging ONLY on the first column in an >

[flex_india:21785] Re: excel to datagrid

2009-04-22 Thread VN
Did you mean from Datagrid to Excel? or reding from Excel to populate Datagrid? I have the working code to export dataGrid to excel or HTML. let me know. Vimal On Apr 22, 2:14 am, bhuvi wrote: > Hi can anyone share me the code for copying the data in excel to > datagrid --~--~-~--~~

[flex_india:21770] AdvancedDatagrid column shift question

2009-04-22 Thread VN
Hi All, I have an advancedDatagrid and the firdt column I'm displaying row number. I don't want the user to shift this column to other positions. How can I prevent dragging ONLY on the first column in an advanceddatagrid and allow dragging on all other columns? Thanks Vimal --~--~-~--~--

[flex_india:20321] Re: Can anyone help me with its coding in FLEX? i need code for application that will stream from webcam,convert the video to FLV format and then stream it to a FTP server. The vi

2009-03-11 Thread VN
take a look at this though it's very basic http://blog.flexexamples.com/2008/01/22/displaying-a-webcams-video-in-a-flex-videodisplay-control/ On Mar 10, 10:58 pm, Mahesh Chandra Bharti wrote: > Can anyone help me with its coding in FLEX? > > i need code for application that will stream from w

[flex_india:20216] Re: Saving the column order

2009-03-09 Thread VN
Try this. You can buil on this depends on how you want to save the data (XML, or table structure) http://www.adobe.com/2006/mxml"; layout="vertical" verticalAlign="middle" backgroundColor="white">

[flex_india:20072] Re: Datagrid

2009-03-04 Thread VN
try this. define the effect as and for the Garagrid On Mar 4, 4:03 am, Krishna Chaitanya wrote: > hi, >      i am having two grids in one viewstack, there are two buttons to > show two grids out of the view stack . i need to move or wipe effects > to the data grids, shall u tell me re

[flex_india:17526] Datagrid drag and drop column question

2008-12-17 Thread VN
Hi, Is it possible to drag the datagrid column out side the grid area to set the visible property to false? Any example code available? Thanks VN --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex

[flex_india:16926] AdvancedDataGrid Question

2008-12-02 Thread VN
Hi All, How to have AdvancedDataGridColumn headerText VERTICAL? e.g in place of Test, I want it to rotate the header text -90 degree. Thanks Vimal --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex Ind

[flex_india:15516] Oracle database and LiveCycle Data Services

2008-10-29 Thread VN
Hi All, How to use oracle database procedure which returns REFCURSOR or PL/SQL table with LiveCycle Data Services? Thanks VN --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex India Community" group.

[flex_india:15157] Re: Air question on tear off tabs into standalone windows

2008-10-16 Thread VN
Here's the solution http://weblogs.macromedia.com/emalasky/archives/2007/07/tear-off_tabs_i.html On Oct 15, 11:55 am, VN <[EMAIL PROTECTED]> wrote: > Hi all, > > Is it possible to tear off tabs into standalone windows in Air > application with TabNavigator? > &g

[flex_india:15128] Air question on tear off tabs into standalone windows

2008-10-15 Thread VN
Hi all, Is it possible to tear off tabs into standalone windows in Air application with TabNavigator? Like the feature in google chrome. Thanks VN --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Flex

[flex_india:14278] How to create Charts from Flat data?

2008-09-22 Thread VN
Hi All, In my application, I'm getting the data from database as arraycollection and displaying in a datagrid. How can I use the same data to create some charts? Can I use groupingCollection to create new grouped data? Could you please provide a sample? Than

[flex_india:14279] Re: Grouping collection refresh issue when the underlying dataProvider data changes

2008-09-22 Thread VN
I found the solution. Tx On Sep 18, 2:14 pm, VN <[EMAIL PROTECTED]> wrote: > Hi All, > > I have an advanced data grid with  grouping collection. The grouping > collection doesn't refresh when underlying dataprovider changes. > > It works fine, If I don't use

[flex_india:14178] Grouping collection refresh issue when the underlying dataProvider data changes

2008-09-18 Thread VN
Hi All, I have an advanced data grid with grouping collection. The grouping collection doesn't refresh when underlying dataprovider changes. It works fine, If I don't use grouping. Any solution? Thanks VN my data source is {model.gatet

[flex_india:13990] Re: How to create summary in GroupingCollection -- AS3

2008-09-12 Thread VN
Any help on this issue? Thanks On Sep 9, 2:46 pm, VN <[EMAIL PROTECTED]> wrote: > Hi All, > > I have a function to create the grouping (two levels), which is the > data provider for Advanceddatagrid. I want to add summary at the group > node. How to do that?

[flex_india:13833] How to create summary in GroupingCollection -- AS3

2008-09-09 Thread VN
("laneid"); var gf1:GroupingField = new GroupingField("wtaskid"); group.fields=[gf,gf1]; mygroup.grouping = group; mygroup.refresh(); dggroup.dataProvider = mygroup;

[flex_india:13655] Re: How to Filter an AdvancedDataGrid in Flex3

2008-09-05 Thread VN
del as a Singleton class and > access the model with its static method that gets you the reference of the > class. > > Regards, > Venkatwww.venkatv.com > > > > On Thu, Sep 4, 2008 at 11:45 PM, VN <[EMAIL PROTECTED]> wrote: > > >

[flex_india:13585] How to Filter an AdvancedDataGrid in Flex3

2008-09-04 Thread VN
Thanks Vn --~--~-~--~~~---~--~~ You received this message because you are subscribed to the G