[flexcoders] The processing instruction target matching [xX][mM][lL] is not allowed.

2009-09-26 Thread sanjaypmg
Hi All, I am using Flex Builder 3. When I create a new project using J2EE LCDS and compile the code without doing anything in MXML file. It gives the following error in Problems panel: The processing instruction target matching [xX][mM][lL] is not allowed. Code is:: ?xml version=1.0

[flexcoders] ADDED: The processing instruction target matching [xX][mM][lL] is not allowed.

2009-09-26 Thread sanjaypmg
The exact error is: Configuration error encountered on line 1, column 7: 'The processing instruction target matching [xX][mM][lL] is not allowed.' --- In flexcoders@yahoogroups.com, sanjaypmg sanjay...@... wrote: Hi All, I am using Flex Builder 3. When I create a new project using J2EE

[flexcoders] Re: Data Grid Issue

2009-01-13 Thread sanjaypmg
Hello Dharmendra, I have done this type of functionality in Flex 2. That functionality was like :: User can select multiple rows on a single click without pressing SHIFT key and when user again click on the selected row it gets deselected. for that functionality I have not override any method. I

[flexcoders] SpeedoMeter

2008-12-11 Thread sanjaypmg
Hi All, I have create a speedometer in flex. Will you guys help me out to dig this well..? All suggestions are welcome... Thanks in Advance... Sanjay Sharma

[flexcoders] autoSize for Buttons

2007-11-15 Thread sanjaypmg
Hi All, I want my buttons to be adjustable accourding to the text width. but autoSize property is not available for the same. Pls guide me how can I make its width adjustable accordingly? Request you to tell me the various ways to do it. Pls let me know. Thanks in advance. SS

[flexcoders] Re: Working with Session....

2007-05-24 Thread sanjaypmg
Hi, Thanks for your suggesions but I am already doing it in the same way as to store it in javascript variable and pass it using External Interface I am looking the way to access session variables directly from flex.. is there anyway..? thanks, SS --- In flexcoders@yahoogroups.com,

[flexcoders] Failed to disable shadow of ToolTip...

2007-05-23 Thread sanjaypmg
Hi, I want to remove shadow of the tooltip in my flex screen but failed to do the same... I have used (In MXML file) StyleManager.getStyleDeclaration(ToolTip).setStyle (dropShadowEnabled,false); or StyleManager.getStyleDeclaration(ToolTip).setStyle (dropShadowEnabled,false); (In CSS

[flexcoders] Re: Working with Session....

2007-05-23 Thread sanjaypmg
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Working with Session If you are using FDS, have a look at flex.messaging.FlexContext On May 22, 2007, at 11:27 AM, sanjaypmg wrote: Hi All, Am using flex with an existing java application here I

[flexcoders] Working with Session....

2007-05-21 Thread sanjaypmg
Hi All, Am using flex with an existing java application here I need to use some session variables so can anyone let me know the followings: 1. How to get the session variables in flex 2.0. 2. How to set the session variables in flex 2.0. 3. How to destroy the session using flex 2.0.

[flexcoders] Re: Tooltip : Charting issues

2007-05-09 Thread sanjaypmg
Jolly, you can use the followings in CSS file: ToolTip { fontFamily: Arial; fontSize: 11; cornerRadius: 0; dropShadowEnabled: false; } you can add more attributes like backgroundcolor, alpha etc. etc. Sanjay --- In flexcoders@yahoogroups.com,

[flexcoders] Can I change DateChooser Style?

2007-04-17 Thread sanjaypmg
Hi All, am using DateChooser in my flex screen.. the defaul format is next previous button with Year and month label... But I want to replace these labels with DropDowns of Year and months respectively. Is it possible to do that if yes, How can I ? Pls give me some hint to get it

[flexcoders] ToolTip on rollOver on Grid's SCROL bar

2007-04-11 Thread sanjaypmg
Hi All, We have a scrollTipFunction event for dataGrid which show the toolTip when user drags the scrollbar... But here I want this toolTip on rolling move over the scroll bar of the dataGrid. I have done something to get it done but i guess its not a proper solution and facing a lots of

[flexcoders] Re: HyperLink on Label in PieChart

2007-04-10 Thread sanjaypmg
handler to the child. 4) When your click handler gets called, grab the text of the currentTarget of the event. Use this to determine which item in the dataProvider the label refers to. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sanjaypmg

[flexcoders] Flex Installation\Compilation Guidelines for AIX OS

2007-04-09 Thread sanjaypmg
Hi All, I have developed an application for windows... Its working fine everywhere but now I have to make the whole application running on AIX too... Can anyone tell me, how can I do it? I mean What are the steps or some installation guidelines to compile the MXMLs for AIX.. I have already

[flexcoders] Re: Flex Installation\Compilation Guidelines for AIX OS

2007-04-09 Thread sanjaypmg
@yahoogroups.com, sanjaypmg sanjaypmg@ wrote: Hi All, I have developed an application for windows... Its working fine everywhere but now I have to make the whole application running on AIX too... Can anyone tell me, how can I do it? I mean What are the steps or some installation

[flexcoders] Re: hand + rollOver

2007-04-09 Thread sanjaypmg
Set buttonMode = true and useHandCursor = true --- In flexcoders@yahoogroups.com, mychemic Carlo Gulliani [EMAIL PROTECTED] wrote: How I can display a hand on rollOver mx:Button ? ___ _ Food fight?

[flexcoders] HyperLink on Label in PieChart

2007-04-09 Thread sanjaypmg
Hi All, I have a pieChart in my application. I have given label postion labelPosition=callout so the label is coming outside pieChart. Let me first tell you one scenario, there are only 2 items one's value is 1 million and another value is 1 only. so the second value is a thin line which is

[flexcoders] Re: Scroll Tip on Roll Over on scroll bar of a grid

2007-04-04 Thread sanjaypmg
ROLL_OVER handlers to the scrollbar and put up your own tooltip. You can probably borrow a bunch of code from ScrollControlBase.as From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sanjaypmg Sent: Monday, April 02, 2007 4:18 AM

[flexcoders] Scroll Tip on Roll Over on scroll bar of a grid

2007-04-02 Thread sanjaypmg
Hi All, I have a dataGrid and showing a tool tip on sroll by making showScrollTips=true and calling scrollTipFunction=mainScrollTipFunc.. TIP content is written in the funtion mainScrollTipFunc.. public function mainScrollTipFunc(dir : String, pos: Number):String {

[flexcoders] Problem in Menu control Example available in FlexBuilder

2007-03-30 Thread sanjaypmg
Hi All, I faced a problem When I was having a look on MenuControl Example available in Flex Builder. The problem is that When I select any of the menu item, the event is called twice... but logically I should be called once... Can anyone tell me why this is happening and how can i stop this

[flexcoders] Re: Hiding of datagrid header

2007-03-30 Thread sanjaypmg
Deepa, you can sent showHeaders property of dataGrid to false to hide the header of a grid. Sanjay --- In flexcoders@yahoogroups.com, deepa golamudi [EMAIL PROTECTED] wrote: Hai everybody. Can i get a clue of how can we hide the header of the datagrid control in flex.

[flexcoders] grid header becomes invisible while scroll

2007-03-29 Thread sanjaypmg
Hi All, I am using a grid with 22 columns all are rendered... the problem, I am facing here is that my header becomes invisible when I scroll the grid wethr I scroll vertically/ horizontally... I couldnt find the solution.. kinldy suggest. Thanks in advance... Sanjay

[flexcoders] PopUpButton :: creationComplete is giving ERROR

2007-03-29 Thread sanjaypmg
Hi All, I am using creation complete in my one of the screens where I am attaching a Dynamic menu to PopUpButton. I am using creationComplete event of PopUpButton to initialise that menu once the creation is completed of the popUpButton... but its shows the following error on run time:

[flexcoders] SCROLL for MENU

2007-03-29 Thread sanjaypmg
Hi All, I am using menu in my project but there are a huge number of items to be displayed in menu like 10-15 I want to put vertical scroll to make its height short... Is it possible? How can I do it? Thanks in Advance.. Sanjay

[flexcoders] Re: Line inbetween comboItems

2007-03-26 Thread sanjaypmg
@yahoogroups.com Subject: RE: [flexcoders] Line inbetween comboItems Maybe some sort of custom itemRenderer. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sanjaypmg Sent: Friday, March 23, 2007 2:09 AM To: flexcoders

[flexcoders] Re: Line inbetween comboItems

2007-03-26 Thread sanjaypmg
, sanjaypmg [EMAIL PROTECTED] wrote: Hi thanks... :) But I am using this combo in a dataGrid headerRenderer and all the items values are unique from the corresponding column. When I replace the combo code with PopUP Menu It doesnt load the menu when i click on the arrow. I

[flexcoders] DataGrid header paddingTop

2007-03-23 Thread sanjaypmg
Hi All, In my flex screen, there is a dataGrid with rendered headers. To make my header looking good I have given paddingTop=-2... but If I specify paddingTop=-2, vertical alignment of my Data/other rows shifts towards top in other words, which is not vertically in middle.. How can I make the

[flexcoders] Line inbetween comboItems

2007-03-23 Thread sanjaypmg
Hi All, I have a combo box in my application and there a lots of items all are related to 4-5 categories.. Wht I wanted to do here I want a seperator sort of line once a category Items are finished I have tried it but didnt get success. Pls suggest, How can i do the same? Thanks

[flexcoders] Re: Fascinating problem hiding columns in a DataGrid

2007-03-16 Thread sanjaypmg
Hi, I have done the same using remote object but didnt face this sort of problem. I am making the columns visible/invisible on the basis of value coming frm the database... Thanks Sanjay --- In flexcoders@yahoogroups.com, Peter Demling [EMAIL PROTECTED] wrote: While a problem for me, I

[flexcoders] Re: Show\Hide Column in DataGrid

2007-03-15 Thread sanjaypmg
@yahoogroups.com, Harish Sivaramakrishnan [EMAIL PROTECTED] wrote: do not use the column names, just store the indices of the columns and do datagridInstance.columns[columnIndex].visible= true / false. this is the right way of doing it. On 05 Mar 2007 22:20:28 -0800, sanjaypmg [EMAIL

[flexcoders] Skinning for Grid Header

2007-03-15 Thread sanjaypmg
Hi All, How can I implement skin for header of a dataGrid? Please do let me know Thanks in Advance,, SS

[flexcoders] Re: Combo Skin problem

2007-03-15 Thread sanjaypmg
Illustrator. I was having similar issues with graphics in the themes I made and breaking apart the graphics in Flash definitely helped. Juan scalenine.com --- In flexcoders@yahoogroups.com, sanjaypmg sanjaypmg@ wrote: Hi All, In my project, I have developed Filter functionality

[flexcoders] Re: Skinning for Grid Header

2007-03-15 Thread sanjaypmg
. Check out examples and doc on custom itemRenderers. A headerRenderer is basically a custom itemRenderer. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sanjaypmg Sent: Thursday, March 15, 2007 11:38 PM To: flexcoders

[flexcoders] Combo Skin problem

2007-03-14 Thread sanjaypmg
Hi All, In my project, I have developed Filter functionality in dataGrid using comboBox in the grid headerRenderer. I kept column rezisable true and combo width set to 100% so that if user resizes the column combo shld be adjustable with the column width. one more thing, I have skind the

[flexcoders] Scroll sycronization between 2 dataGrids and header becomes invisible

2007-03-14 Thread sanjaypmg
Hi All, I have developed filter functionality using dataGrid and combobox usind headerRanderer as it is in the MS Excel. There are 2 dataGrids in my screen and I have given there Drag n Drop between them. Since there are 22 columns in my dataGrid so I have sycronized their scrolls by

[flexcoders] Show\Hide Column in DataGrid

2007-03-05 Thread sanjaypmg
Hi All, I am facing an Error while making Grid columns visible\Invisible at runtime. I have made a function showHideColumns in my application which accepts 2 arrays as parameters. One is colNameArr Which has all the column names of GRID and another one is colStatusArr, which has TRUE or

[flexcoders] Re: How Can I save the drawing made at runtime

2007-03-05 Thread sanjaypmg
machine). Troy. On 3/5/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Monday 05 Mar 2007, sanjaypmg wrote: I have made a screen where user can draw some SHAPES using graphics class at runtime using . I wanna give a functionality to save that object/drwaings once the it is completed

[flexcoders] graphics Class

2007-03-04 Thread sanjaypmg
Hi All, I have drawn some graphical objects on runtime using graphics class in Flex/Flash. I want to save that drawing in my local hardisk or some other location. How can I do that? pls give me some hint. Or Is there anyway to export a JPG, GIF or PNG etc..? Kinldy help me out. Thanks in

[flexcoders] How Can I save the drawing made at runtime

2007-03-04 Thread sanjaypmg
Hi All, I have made a screen where user can draw some SHAPES using graphics class at runtime using . I wanna give a functionality to save that object/drwaings once the it is completed. And He/She can open it whenever he/she wants. How can I save that objects? or Is there anyway to export

[flexcoders] Re: Can anyone help on getting data from a grid cell .. I know the row/column index

2007-02-26 Thread sanjaypmg
Hi Sean, you can do it by calling a method on itemClick of a dataGrid. in this method you'll get the selected row of your Grid. thereafter you can access any particular cell's value by specifying dataField name like: evt.target.selectedItem.DataFieldNAME; -- In flexcoders@yahoogroups.com,

[flexcoders] problem in getting value of an editable ComboBox

2007-02-23 Thread sanjaypmg
Hi, I have an editable combo on my flex screen. I have entered some text in combo's editable area. but I am not able to get that value using ComboboxID.selectedID or ComboboxID.text. How can I get that value... Pls help me Thanks in advance Sanjay

[flexcoders] Re: problem in getting value of an editable ComboBox

2007-02-23 Thread sanjaypmg
Hey, I got the solution by using .value property, I got the value. thanks Sanjay --- In flexcoders@yahoogroups.com, sanjaypmg [EMAIL PROTECTED] wrote: Hi, I have an editable combo on my flex screen. I have entered some text in combo's editable area. but I am not able to get that value

[flexcoders] DataGrid Columns Printing???

2007-02-22 Thread sanjaypmg
Hi All, I have a huge data in my dataGrid like 22 Columns and thousands of rows. I want to print all the data, even I tried using PrintDataGrid. I prints all rows but it fails to print all the columns. I prints only the columns which fit in a single pagebut I want to print rest columns

[flexcoders] DataGrid Header Center Align??

2007-02-22 Thread sanjaypmg
Hi, How can I center align header text of a DataGrid? Thanks, Sanjay

[flexcoders] Google Map API Flex2.0 Integration??

2007-02-22 Thread sanjaypmg
Hi All, How can I integrate google map API with Flex? Has anybody done it? Please send your Comments\Ideas to get it done. Thanks in Advance, Sanjay

[flexcoders] How to get\set the sort status of a Grid Column

2007-02-21 Thread sanjaypmg
Hi All, I have a Data Grid with various columns. I have sorted the data by clicking on a specified column's header. How can I get the name of that purticular column name which has sorted and its sorting way (Ascending\Decending) programatically? In return, I need to set (implement) the same

[flexcoders] Array Collection Column Value

2007-02-14 Thread sanjaypmg
Hi, I have an ArrayCollection with various columns. I need to populate different combos using this array collection columns. I have a method where I am passing only column name as a parameter like: public function initArra(curColName:String):void{ var totalLen:int = tempArrCol.length;

[flexcoders] DataGrid Header Randar Example......

2007-02-13 Thread sanjaypmg
Hi All, I was looking into DataGrid Example from FB's Help of rendaring a header. I have used TextArea to display ColIndex in each corresponding header, which is working fine. Here, I want to display a combobox with unique value of that purticular coloumn. When I changed TextArea to ComboBox

[flexcoders] Any Idea to build such an application

2007-02-12 Thread sanjaypmg
Hi All, I want to know how can I build an application like: http://plasma.nationalgeographic.com/mapmachine/index.html#theme=Street c=0|0sf=190728987.993139 All Ideas are welcome here, Please go ahead.. Thanks, Sanjay sharma

[flexcoders] Show/Hide Column of Grid using Context Menu

2007-02-09 Thread sanjaypmg
Hi all, Am making a function of show/hide column of dataGrid using Context Menu. Contextmenu comes when user clicks right button of mouse on header. I have made a mxml component and added in headerRender of the dataGrid Column. But when I click on my hide column button of context menu it

[flexcoders] Re: Adding columns in DataGrid dynamically

2007-02-08 Thread sanjaypmg
) var colArray:Array = dg.columns; // remove column 3 var newColArray = colArray.splice(3,1); dg.columns = newColArray; At 12:00 PM 2/4/2007, sanjaypmg wrote: Hi, How can I delete a colum dynamicall? Thanks Sanjay --- In mailto:flexcoders% 40yahoogroups.comflexcoders@yahoogroups.com

[flexcoders] dropEnabled property of Image tag?

2007-02-08 Thread sanjaypmg
Hi, I have embd a trash image in the image tag. I want to drop a datagrid item over this trash image to delete it from the grid. But I didnt find dropEnabled property of Image tag. how can I do it? please suggest.. Thanks for support. Sanjay

[flexcoders] is there any other process?

2007-02-08 Thread sanjaypmg
Hi, I have a question regarding flex builder. Is there any to compile MXML file using command prompt as we do to compile JAVA file?? Pls suggest. regards, sanjay

[flexcoders] Re: Filters with DataGrid - Excel

2007-02-07 Thread sanjaypmg
, sanjaypmg [EMAIL PROTECTED] wrote: Hi, I have tried to get column index in my testCombo.mxml by importing mx.controls.dataGridClasses.DataGridListData But I am not able to get column index or column name. Could anyone please help me? so that i can complete the task and populate code

[flexcoders] functionality to open n close a panel?

2007-02-06 Thread sanjaypmg
Hi All, Please hav a look on the following mentioned URL: http://www.asfusion.com/apps/homelocator/ There is a panel on the right hand side with MAP which have been created using Yahoo API... there is one more panel on the same with SrollBar. this panel has an pointed arrow in the middle of

[flexcoders] Re: functionality to open n close a panel?

2007-02-06 Thread sanjaypmg
Regards, Ps On 2/6/07, sanjaypmg [EMAIL PROTECTED] wrote: Hi All, Please hav a look on the following mentioned URL: http://www.asfusion.com/apps/homelocator/ There is a panel on the right hand side with MAP which have been created using Yahoo API... there is one more panel

[flexcoders] Re: functionality to open n close a panel?

2007-02-06 Thread sanjaypmg
Ya, I have made it but i want the same functionality as its shown in the url. I want to open that panel over a dataGrid so that i can provider filter option under this extendible panel. Pls Suggest something.. Thanks Sanjay --- In flexcoders@yahoogroups.com, sanjaypmg [EMAIL PROTECTED] wrote

[flexcoders] Re: Adding columns in DataGrid dynamically

2007-02-04 Thread sanjaypmg
Hi, How can I delete a colum dynamicall? Thanks Sanjay --- In flexcoders@yahoogroups.com, Doug Lowder [EMAIL PROTECTED] wrote: You can reassign the grid's columns property to accomplish this. Array methods like push don't emit the events necessary for the component to detect that the

[flexcoders] Re: Non-Clustered CPU, Clustered, Distributed and Mirroring Environment????

2007-02-02 Thread sanjaypmg
PROTECTED] On Behalf Of sanjaypmg Sent: Friday, February 02, 2007 2:37 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Non-Clustered CPU, Clustered, Distributed and Mirroring Environment Hi All, We need to install an application where a number of screens are developed using

[flexcoders] Clusterd NonClustered CPU

2007-02-01 Thread sanjaypmg
Hi Group, Can anyone tell me the difference between Clustered and Non-Clustered CPU in terms of Flex Data Services (FDS) license? Thanks in Advance... Sanjay Sharma

[flexcoders] Clustered and Non-Clustered CPU

2007-02-01 Thread sanjaypmg
Hi Group, Can anyone tell me the difference between Clustered and Non-Clustered CPU in terms of Flex Data Services (FDS) license? Thanks in Advance... Sanjay Sharma

[flexcoders] Non-Clustered CPU, Clustered, Distributed and Mirroring Environment????

2007-02-01 Thread sanjaypmg
Hi All, We need to install an application where a number of screens are developed using FLEX. We could have different environment-setups in which the application may be deployed and need to know in what scenarios we will have to get separate licences of FLEX DATA SERVICES for application

[flexcoders] Re: (Added ) Selecting datagrid row on rollover...

2007-01-29 Thread sanjaypmg
Hey Jamie, Sorry to inturupt... I wanna add one more thing here whch i faced... I want to select multiple rows in a DataGrid without pressing Ctrl button. Is there anyway to do it? Thanks Sanjay --- In flexcoders@yahoogroups.com, jamiebadman [EMAIL PROTECTED] wrote: Hi, The title sums

[flexcoders] Re: PIVOT TABLE and CHART

2007-01-28 Thread sanjaypmg
I am trying to do this. --- In flexcoders@yahoogroups.com, leds usop [EMAIL PROTECTED] wrote: Hi everyone, BEfore we proceed with implementing pivot table (of MS excel -- same functionality although not necessarily with drag and drop support) in Flex, we wanna know if someone else in this

[flexcoders] Re: Flash simple question

2007-01-28 Thread sanjaypmg
Hi Olivier, SWF is stored at the Local Settings\Temporary Internet Files folders of your workstation. Thanks, Sanjay --- In flexcoders@yahoogroups.com, Stembert Olivier \(BIL\) [EMAIL PROTECTED] wrote: Hi all, When a swf file is downloaded to my computer, where is it stored? I mean

[flexcoders] Result from webservice?

2007-01-28 Thread sanjaypmg
Hi, I am using webservices to get data. I have made a simple webservice in Java which returns a simple Hello world and called it in flex in return I am not getting it by using result.target.toString(); I can display the result by using messaging as an XML Item. Please tell me is there any

[flexcoders] Re: Could it really take so much code to color a row in a DataGrid..?

2007-01-28 Thread sanjaypmg
Hi Paul, You can color DataGrid Rows by using the following: DataGrid { alternatingItemColors: #00, #cc66cc; } Thanks, Sanjay --- In flexcoders@yahoogroups.com, paulwelling [EMAIL PROTECTED] wrote: Hello, I'm sure I've missed it, but is there a straight forward way to color the

[flexcoders] DataGrid Column width Resizing

2007-01-26 Thread sanjaypmg
Hi All, I have two major issues with DataGrid. Please help to come out First Column Width I am not able get the width of datagrid's column. I need to store the width of each column of a datagrd in database and resize each column everytime it loads on the basis of value stored in the

[flexcoders] remove FDS from existing application

2007-01-22 Thread sanjaypmg
Hi All, I have an application in which I have used RO with FDS2. I have deployed this flex 2 using the instructions available on Adobe's website. I have copied Flex Folder in WEB-INF folder and copy the JARs to the relevent folders. Now I want to remove Flex Data Services from the

[flexcoders] Difference Between FDS and Flex SDK

2007-01-21 Thread sanjaypmg
Hi, Can anyone tell me the main differences between Flex Data Services (FDS) and Flex SDK? And I have one more question, Can I connect to Remote Object without FDS? Please clearify my doubts. Thanks, Sanjay Sharma

[flexcoders] Flex SDK configuration with JBoss?

2007-01-21 Thread sanjaypmg
Hi All, How can I configure Flex SDK with JBoss server? Is it the same as I configured Flex with JBoss or something different? Please do tell me. thanks, Sanjay sharma

[flexcoders] multiple Selection in DataGrid?

2007-01-18 Thread sanjaypmg
Hi Dude.. Is it possible to selected multiple rows in DataGrid? How can I do that? Regards, Sanjay Sharma

[flexcoders] Re: Application without FDS?

2007-01-18 Thread sanjaypmg
Thanks everybody thanks for your support... If you have more to say, your most welcome...:) Thanks to all Sanjay --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 18 January 2007 05:38, sanjaypmg wrote: If yes, How can I call my java's remote object

[flexcoders] Re: multiple Selection in DataGrid?

2007-01-18 Thread sanjaypmg
Thanks to all... :) Sanjay --- In flexcoders@yahoogroups.com, David Harris [EMAIL PROTECTED] wrote: you'd be after the 'allowMultipleSelection=true ' attribute I'd be guessing... On 1/19/07, sanjaypmg [EMAIL PROTECTED] wrote: Hi Dude.. Is it possible to selected multiple rows

[flexcoders] Re: Application without FDS?

2007-01-18 Thread sanjaypmg
at the runtime... this will take some server side code. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sanjaypmg Sent: Thursday, January 18, 2007 1:38 AM To: flexcoders@yahoogroups.com Subject

[flexcoders] Re: How can I do to add a background color for datagrid header?

2007-01-18 Thread sanjaypmg
Zedan, you can change background and header color of dataGrid by using the following in css: DataGrid { backgroundAlpha: 0.5; backgroundColor: #cc; headerColors: #ffcc00, #ff9900; } Regards, Sanjay --- In flexcoders@yahoogroups.com, zedan_gu [EMAIL PROTECTED] wrote: Igor Costa,

[flexcoders] Application without FDS?

2007-01-17 Thread sanjaypmg
Hi, I have a general question for all Can I make application with FDS? If yes, How can I call my java's remote object? If No, Can you please tell me? Why cannt I make application in flex without FDS? Thanks, Sanjay Sharma

[flexcoders] Re: Application without FDS?

2007-01-17 Thread sanjaypmg
[mailto:[EMAIL PROTECTED] On Behalf Of sanjaypmg Sent: Thursday, January 18, 2007 12:39 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Application without FDS? Hi, I have a general question for all Can I make application with FDS? If yes, How can I call my java's remote

[flexcoders] problem with DataGridListData

2007-01-16 Thread sanjaypmg
Hi, I am facing a problem when I initialise DataGridListData class in testCombo.mxml. I have initialised it in changeCombo method of testCombo.mxml but when i change the combo it doesnt show the value of column index in alert. If i have comment the initialisation and display somethingelse or

[flexcoders] Re: Filters with DataGrid - Excel

2007-01-15 Thread sanjaypmg
were able to convert that datagrid header filter cell renderer to Flex 2.0 can you please post the source up here? -Phil --- In flexcoders@yahoogroups.com, sanjaypmg sanjaypmg@ wrote: Hi, I have tried it but facing a problem when I try to access DataCollection from another MXML

[flexcoders] problem with DataGridListData....

2007-01-15 Thread sanjaypmg
Hi All, I am facing a problem with DataGridListData class I have initialised this class in changeCombo() method of testCombo.mxml and display testData.columnIndex.toString() in Alert but Alert is not coming. If i comment the initialisation and make the alert hard code, Alert comes. I

[flexcoders] problem with DataGridListData....

2007-01-15 Thread sanjaypmg
Hi All, I am facing a problem with DataGridListData class I have initialised this class in changeCombo() method of testCombo.mxml and display testData.columnIndex.toString() in Alert but Alert is not coming. If i comment the initialisation and make the alert hard code, Alert comes. I

[flexcoders] Re: Filters with DataGrid - Excel

2007-01-12 Thread sanjaypmg
{ return true; } //return true; } ]] /mx:Script /mx:ComboBox /mx:HBox --- In flexcoders@yahoogroups.com, sanjaypmg [EMAIL PROTECTED] wrote

[flexcoders] Paging with DataGrid??

2007-01-11 Thread sanjaypmg
Hi, Is there any way to put paging on datagrid? Please let me know, if there is something like dis in flex or the way to do it in flex. Regards, Sanjay sharma

[flexcoders] Re: Paging with DataGrid??

2007-01-11 Thread sanjaypmg
Of sanjaypmg Sent: Thursday, January 11, 2007 10:22 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Paging with DataGrid?? Hi, Is there any way to put paging on datagrid? Please let me know, if there is something like dis in flex or the way to do it in flex. Regards

[flexcoders] Re: Filters with DataGrid - Excel

2007-01-11 Thread sanjaypmg
are looking for. If someone can copy that source code and eliminate the compiler errors you will be doing several of us a huge favor! Thanks Phil --- In flexcoders@yahoogroups.com, sanjaypmg sanjaypmg@ wrote: Hi There, Is there any way to put filters feature on Datagrid

[flexcoders] Replacement of headerRenderer of Datagrid??

2007-01-11 Thread sanjaypmg
Hi All, Does anyone now What is the replacement of headerRenderer of Flex 1.5 in Flex 2.0? headerRenderer was a property of DataGrid in flex 1.5. If anyone knows, please let me know. Thanks, Sanjay Sharma

[flexcoders] Re: Calling javascript with navigateToURL

2007-01-10 Thread sanjaypmg
Hi, you can try : ExternalInterface.call(functionName, parameter); Regards, Sanjay sharma --- In flexcoders@yahoogroups.com, jensen.axel [EMAIL PROTECTED] wrote: I'm trying to do a loop, and call a javascript function in flex for every loop. The loop only seems to call the javascript

[flexcoders] ComboBox Open State?

2007-01-10 Thread sanjaypmg
Hi, In my application, there is a process which is running in the background. Here I want to know ComboBox's state whether it is open or not so that I can stop the process accordingly. If the combobox is open I dont want to excute that process. So please help and tell me how can i get the

[flexcoders] Customisation of busy cursor

2006-12-27 Thread sanjaypmg
Hi All, I want to customise busy cursor. is there any way to customise it? how can I put my own animation instead of clock animation? or is there other animations available to change that cursor? Please help me thanks. Sanjay

[flexcoders] Combo state???

2006-12-27 Thread sanjaypmg
Hi All, Is there anyway to get the current (open/closed) state of a combo box? Senario: in my application, the screen gets refresh automatically after a specific period, lets say 30 seconds. if i open my dropdown list and screen refreshes at that point of time, it closes the dropdown. What

[flexcoders] Canvas Label?

2006-12-27 Thread sanjaypmg
Hi All, There is an attribute called Label in Canvas tag, can anyone tell me whts the use of this attribute? Is there any way to show this label in the middle of top border of canvas as label is shown in VB n JAva's canvas? If there is a way to make the canvas or anyother component like VB

[flexcoders] Re: Flex 2 Compilation problem

2006-12-20 Thread sanjaypmg
by the destination correct? Renaun --- In flexcoders@yahoogroups.com, sanjaypmg sanjaypmg@ wrote: Hi, I am facing a strange problem while compling flex mxml file. I code and compile my mxml file in flex builder thereafter when I place that SWF in my project's folder and open my JSP file

[flexcoders] Re: 3D Charts for Flex 2

2006-12-19 Thread sanjaypmg
Ya, I am interested. --- In flexcoders@yahoogroups.com, graysonpierce [EMAIL PROTECTED] wrote: I'd like to gauge flexcoders' interest in collaborating on an open-source project to build 3D Charts for Flex 2. Of particular interest to me are Multiscapes and 3D Scatterplots. Before going

[flexcoders] Re: Spell Checker

2006-12-19 Thread sanjaypmg
Hi Guys, I have developed spell checker functionality in Flex 1.5. I have developed in flex and integrated it with coldfusion. to develop this spellchecker component, I have used Java's Jazzy which i available on net. I have developed the same functionality which provided by MSWord. you can

[flexcoders] Flex Vs Ajax

2006-12-19 Thread sanjaypmg
Hi All, Can anyone tell me Flex Advantages over Ajax and Vise-Versa. And a comparision table, in which, The different functionality, components available and enviornment supported by them. Pls do let me know. Thanks, SS

[flexcoders] Flex 2 Compilation problem

2006-12-19 Thread sanjaypmg
Hi, I am facing a strange problem while compling flex mxml file. I code and compile my mxml file in flex builder thereafter when I place that SWF in my project's folder and open my JSP file which contains my SWF, It show some RO error, SOME_RO destination not found. If I put mxml in my

[flexcoders] Re: Flex Vs Ajax

2006-12-19 Thread sanjaypmg
1.877.828.4436 [EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sanjaypmg Sent: Tuesday, December 19, 2006 12:32 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex Vs Ajax Hi All, Can

[flexcoders] how to get Piechart Item color??

2006-12-14 Thread sanjaypmg
Hi All, I have created a piechart using some database values. Is there anyway to get piechart's Item color code? because I need the same color codes for various Labels on the same screen. If there is anyway to get it pls let me know Thanks Sanjay

[flexcoders] SEO Compatibility

2006-12-14 Thread sanjaypmg
Hi All, Is Flex SEO Compatible? If yes, How can I my flex application SEC compatible? so that it can be easily available for search engines available. Regards, Sanjay

  1   2   >