Re: [flexcoders] Editable ComboBox Display Problem

2005-08-03 Thread Manish Jethani
On 8/3/05, matthew_zju [EMAIL PROTECTED] wrote: Listed is a simple case, mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; mx:ComboBox width=120 editable=true mx:dataProvider mx:Array mx:Object label=Engineering / mx:Object

Re: [flexcoders] Performace please some suggestion

2005-08-03 Thread Manish Jethani
On 8/2/05, devis [EMAIL PROTECTED] wrote: Hi, if you can see my code, work fine ok, but when flex go to render the performance it's very very slow. function Init_Taglie() { dgmisure.removeAllColumns(); myColumn= new

Re: [flexcoders] Re: hideEffect and deletePopUp

2005-08-03 Thread Manish Jethani
On 8/3/05, zipo13 [EMAIL PROTECTED] wrote: I have another problem because of this - since the effect I'm using is actually a Sequence of effects how do I know when the last effect was executed. I thought about counting the number of times the end effect method is called but I just doesn't

Re: [flexcoders] Manish Custom DateField

2005-08-03 Thread Manish Jethani
On 8/2/05, joao_m_fernandes [EMAIL PROTECTED] wrote: Manish posted this custom Editable Datefield ( http://manish.revise.org/archives/2005_04_01_archive.html ) wich is very usefull but when editing the field it doesn't dispatch de correct change event. If I pick the date from the pulldown it

Re: [flexcoders] removing backgroundImage

2005-08-04 Thread Manish Jethani
On 8/4/05, zipo13 [EMAIL PROTECTED] wrote: I have a background image of an Application that I want to remove at some point and get it back to the default backgroundColor. Since this is a style I tried: this.setStyle(backgroundImage,); this.setStyle(backgroundImage,null); but nothing

Re: [flexcoders] Re: removing backgroundImage

2005-08-04 Thread Manish Jethani
On 8/4/05, zipo13 [EMAIL PROTECTED] wrote: hmmm it works but isn't there a more offcial way to remove a style? The official way would be to set the value of backgroundImage to undefined, but as you discovered that doesn't seem to work. This how its done in the flex style explorer? Not sure.

Re: [flexcoders] Re: removing backgroundImage

2005-08-04 Thread Manish Jethani
On 8/4/05, zipo13 [EMAIL PROTECTED] wrote: Actually - the hack doesn't work. Once I resize the window the image just comes back :( this.border_mc.destroyObject('_backgroundImage_mc'); Manish Yahoo! Groups Sponsor ~-- font face=arial size=-1a

Re: [flexcoders] Whats the best way to do this

2005-08-04 Thread Manish Jethani
On 8/4/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Have a link on an mxml file that links to another mxml file? The Flex Store sample has a link to thinkgeek.com (I think). Similarly you can link to another MXML file on the same server using the Link component and calling getURL in the

Re: [flexcoders] vScrollPolicy acting real funny

2005-08-04 Thread Manish Jethani
On 8/4/05, Sauro, Nick [EMAIL PROTECTED] wrote: I have a SearchResults class which is a VBox. Now, inside this Vbox, I have a few components for a header(Search Results 1-4 of 253……). Beneath that, I have another Vbox which displays the results. Here's the problem. I set the height of

Re: [flexcoders] How to assign a data provider to a combo box

2005-08-04 Thread Manish Jethani
On 8/4/05, terry_hrtn [EMAIL PROTECTED] wrote: Is there a way to assign a data provider to combo box at run time using action script instead of mxml? Yups, simply set the dataProvider property. comboBox.dataProvider = newDataProvider; Manish Yahoo! Groups Sponsor

Re: [flexcoders] vScrollPolicy acting real funny

2005-08-04 Thread Manish Jethani
On 8/4/05, Sauro, Nick [EMAIL PROTECTED] wrote: I've tried that, to no avail :-/ Set minHeight to 1 on the inner VBox (the one you want the scrollbar on). It seems to work. Manish Yahoo! Groups Sponsor ~-- font face=arial size=-1a

Re: [flexcoders] Re: How to assign a data provider to a combo box

2005-08-04 Thread Manish Jethani
On 8/4/05, terry_hrtn [EMAIL PROTECTED] wrote: yes and no -- won't work in my case. Action script calls web services async. I have a single web service that returns multiple values depending on whats passed in, so having: webservice.send(); comboBox.dataprovider=webservice.result In that

Re: [flexcoders] Problem with Iframe

2005-08-04 Thread Manish Jethani
On 8/4/05, Paramjit jolly [EMAIL PROTECTED] wrote: I am trying to use this iFrame sample which someone has uploaded but Christophe's IFrame component? http://coenraets.com/viewarticle.jsp?articleId=95 I integrated whole thing in my project and it works fine Still one problem I am

Re: [flexcoders] Re: Problem With TileList...

2005-08-04 Thread Manish Jethani
On 8/4/05, sir_janksalot [EMAIL PROTECTED] wrote: It looks like this: public function setValue( str : String, item : Object ) : Void { var alreadyAddedFilterObject : Boolean = ( user == item || item == null || item == undefined ); if ( alreadyAddedFilterObject ) { return;

Re: [flexcoders] lists and DD

2005-08-04 Thread Manish Jethani
On 8/4/05, Douglas Knudsen [EMAIL PROTECTED] wrote: Consider using a list and the drag+drop manager. Assume the user has selected three items in the list contiguously. Can I determine which of the three items the users mouse is on upon a click and hold? I can't seem to see anything in the

Re: [flexcoders] mouseUp misfire??? and why so many warnings in log file?

2005-08-04 Thread Manish Jethani
On 8/4/05, zhongtie [EMAIL PROTECTED] wrote: I have two JPG images on convas, and want to draw a border around the image when I click it. I extended mx:Image to handle the mouseUp event. However, when I clicked on image1, image2 also had the border drawn around it. Why did both images received

Re: [flexcoders] lists and DD

2005-08-04 Thread Manish Jethani
On 8/5/05, Douglas Knudsen [EMAIL PROTECTED] wrote: but which on eof those items is the mouse on? Say the user selected 5 items contiguously then initiated a drag on them. I want to know which item teh mouse is on. Listen for the mouseDown event... ?xml version=1.0 encoding=utf-8?

Re: drg and expan..outlook style (was Re: [flexcoders] lists and DD)

2005-08-04 Thread Manish Jethani
On 8/5/05, Douglas Knudsen [EMAIL PROTECTED] wrote: these two ops cancel each other out. any ideas? } else { selector.width = lastW - deltaX ; selector.x += deltaX;

Re: [flexcoders] Re: mouseUp misfire??? and why so many warnings in log file?

2005-08-05 Thread Manish Jethani
On 8/5/05, zhongtie [EMAIL PROTECTED] wrote: But I am still very confused with how the event broadcasting works: it seems that the event handlers are always fired up, but only one of them (in our case, the image I clicked on) has the event.target defined. Why is that? Could be event

Re: [flexcoders] resizing panes via resize effect

2005-08-05 Thread Manish Jethani
On 8/5/05, zipo13 [EMAIL PROTECTED] wrote: In my app I have 3 panes. left and right - and the right one is divided to top and bottom. ___ | | | | |2| | 1 |_| what I'm trying to do, with a button click effect, is | | | to resize pane 3 so

Re: [flexcoders] Create Panel Child

2005-08-06 Thread Manish Jethani
On 8/6/05, Mehdi, Agha [EMAIL PROTECTED] wrote: I want to create a child of Panel through script. When a child needs to be created, I do the following function createPanelChild() { var child = components.category_ + childID; this.createChild( child, category ); }

Re: [flexcoders] Create Panel Child

2005-08-07 Thread Manish Jethani
On 8/8/05, Mehdi, Agha [EMAIL PROTECTED] wrote: Yeah, I have seen that example but it doesn't tell you how to create a child from file or URL. I build the path to the class dynamically like this: samples.classes. + dynamicClass; Where dynamic class is a variable that holds the name of the

Re: [flexcoders] SCGs with fonts

2005-08-08 Thread Manish Jethani
On 8/7/05, Manish Jethani [EMAIL PROTECTED] wrote: On 8/7/05, Jason W. Solinsky [EMAIL PROTECTED] wrote: Is it possible to Embed SVGs in mxml pages such that the SVG either uses a font already embeded in the application (preferable) or a font embeded in the SVG? http://wahlers.com.br

Re: [flexcoders] resizing panels

2005-08-08 Thread Manish Jethani
On 8/8/05, Rob Rusher [EMAIL PROTECTED] wrote: You need to use a canvas as its parent. You can also the parent's autoLayout to false for the duration of the resize. Manish Yahoo! Groups Sponsor ~-- font face=arial size=-1a

Re: [flexcoders] Re: nested viewstacks, creationPolicy of none and the creation dilemma

2005-08-08 Thread Manish Jethani
On 8/8/05, Jaime Bermudez [EMAIL PROTECTED] wrote: So, nobody on the board knows how to tell through the childDescriptors array if a child of a viewstack has creationPolicy of none? childDescriptors[childIndex]._properties().creationPolicy Manish Yahoo! Groups

Re: [flexcoders] Create Panel Child

2005-08-09 Thread Manish Jethani
On 8/9/05, Mehdi, Agha [EMAIL PROTECTED] wrote: When I load this file normally, it loads fine but when I load it with CreateChild method, it strips out the checkboxes. Is there anything else I need to be careful about? OK, first I'd like to clarify that I don't think passing the class name

Re: [flexcoders] Re: Dispatch event problem

2005-08-09 Thread Manish Jethani
On 8/9/05, Rajesh Jayabalan [EMAIL PROTECTED] wrote: Hi Matt, I am dispatching it using the listowner [...] mx.core.Application.alert(Order Added ); listOwner.parent.dispatchEvent({type:orderSavedEvent}); I think you want to dispatch it off the listOwner itself (not its parent):

Re: [flexcoders] HTTPService result in wrong charset

2005-08-09 Thread Manish Jethani
On 8/9/05, Christoph Guse [EMAIL PROTECTED] wrote: I can't influence the output of the HTTPService, so for me the FLEX HTTPService Tag is completely useless. I'm going to build java classes which contact the HTTPService an convert the result from iso-8859-1 to utf-8. Will there be an

Re: [flexcoders] Closing TitleWindow crashes program

2005-08-09 Thread Manish Jethani
On 8/9/05, Markus Ansamaa [EMAIL PROTECTED] wrote: I have included sample code to demonstrate the problem. Popup dialog can be closed and reopened if closing is done with Close-button. But if closing is done by pressing a cell in DataGrid the dialog cannot be reopened. What may cause

Re: [flexcoders] Re: Disable themecolor

2005-08-09 Thread Manish Jethani
On 8/9/05, Philippe Maegerman [EMAIL PROTECTED] wrote: Well, I tried and it did reset the theme to gray-ish: component.setStyle('themeColor', undefined) component.setStyle('themeColor', null) themeColor must be a valid colour. If it's undefined I suppose it's getting converted to 0

Re: [flexcoders] An interesting problem with models....

2005-08-10 Thread Manish Jethani
On 8/10/05, Tariq Ahmed [EMAIL PROTECTED] wrote: Got a simple model: mx:Model id=sectionModel region revenue=1/ region revenue=2/ region revenue=3/ region revenue=4/ /mx:Model And I got a function that just hard code updates the values: function

Re: [flexcoders] Beginners Questions - Can't seem to change the page background

2005-08-10 Thread Manish Jethani
On 8/10/05, Jawad Anwar [EMAIL PROTECTED] wrote: This might seem trivial but every time I ran a sample code on my local flex server, it shows the page in Grey Background (by default) So I tried using my own style sheet with a white background but didn't work. Put this in your CSS file:

Re: [flexcoders] changing the datagrid scrollbar colors

2005-08-10 Thread Manish Jethani
On 8/10/05, adit sathish [EMAIL PROTECTED] wrote: I want to have datagrid scrollbar colors to be same as datagrid row color without changing the style for scrollbar for whole app. I have tried using scrollTrackColor property but it is not working. Try setting themeColor on the DataGrid.

Re: [flexcoders] Validator Problem

2005-08-10 Thread Manish Jethani
On 8/10/05, dval823 [EMAIL PROTECTED] wrote: If no data is entered into the field, the validator does not trigger. If you enter data, and then delete the data, the validator is triggered. Or, if using the min and max example, if you enter data of the wrong length, the validator is

Re: [flexcoders] Combobox : Display tooltip scrolling over the elements

2005-08-10 Thread Manish Jethani
On 8/10/05, Abdul Qabiz [EMAIL PROTECTED] wrote: Does this work this way? comboBox.dropDown.showDataTips = true? ComboBox contains a List, so you can get the reference of list using 'dropDown' property of ComboBox and then set List properties on it, as shown above. Correction: There's

Re: [flexcoders] How to render a foreground color on an mx:Image

2005-08-10 Thread Manish Jethani
On 8/10/05, donalstar [EMAIL PROTECTED] wrote: I'm attempting to create a series of chiclet-shaped images in a variety of different colors. Ideally, I'd like to create a set of mx:Image objects array them on a canvas or HBox, and then programmatically set a fill or foreground color for

Re: [flexcoders] Re: How to render a foreground color on an mx:Image

2005-08-10 Thread Manish Jethani
On 8/11/05, Donal Carroll [EMAIL PROTECTED] wrote: I'm also listing the Laszlo code snippet so you'll see what I'm talking about: canvas view name=TestView simplelayout axis=y spacing=3/ view name=chip_fill resource=common/browse/color_chip_fill.swf fgcolor=red/

Re: [flexcoders] individual border settings?

2005-08-11 Thread Manish Jethani
On 8/12/05, Douglas Knudsen [EMAIL PROTECTED] wrote: according to http://livedocs.macromedia.com/flex/15/asdocs_en/mx/containers/Box.html we can not set the left border to blue and right border to green. Is this correct? Or are there some un-documented CSS settings or something? seems the

Re: [flexcoders] Accordion panel Ignoring click events

2005-08-11 Thread Manish Jethani
On 8/12/05, Cary Newfeldt [EMAIL PROTECTED] wrote: I'm doing the following [1] One accordion panel [2] Two VBoxes [3] Each VBox has a custom button embedded [4] Each button will pop up an alert when pressed. [5] When executing the application - The first button will

Re: [flexcoders] Combobox : Display tooltip scrolling over the elements

2005-08-11 Thread Manish Jethani
On 8/11/05, Valy Sivec [EMAIL PROTECTED] wrote: I poke around the combobox component without any luck... no tooltip :(( Set comboBox.__dropdown.showDataTips in the open handler for the ComboBox. ComboBox open=event.target.__dropdown.showDataTips = true / Manish

Re: [flexcoders] ColorPicker in a cellRenderer

2005-08-11 Thread Manish Jethani
On 8/11/05, Burge David A (Contractor) [EMAIL PROTECTED] wrote: I'm trying to use the ColorPicker in a cell renderer of a DataGrid component. I have no problem getting it to initially display except for the selected color. When the component is first drawn all the ColorPickers are black,

Re: [flexcoders] help...geting error when using http service

2005-08-11 Thread Manish Jethani
On 8/11/05, Amit Sanon [EMAIL PROTECTED] wrote: whenever i try to use httpservice tag i get an error --- HTTPService Fault:A start tag had no corresponding end tag --- Just taking a guess, I think your service is returning invalid XML. Set resultFormat=text on your HTTPService element and

Re: [flexcoders] Another Proxy? PHP?

2005-08-11 Thread Manish Jethani
On 8/12/05, heybluez [EMAIL PROTECTED] wrote: I have a client that does not want to use the Flex proxy for HTTPService requests. Unfortunately, you need to have a crossdomain.xml file on all the requested servers. This, is probably unlikely to be the case all the time...if even part of the

Re: [flexcoders] Re: Another Proxy? PHP?

2005-08-12 Thread Manish Jethani
On 8/12/05, heybluez [EMAIL PROTECTED] wrote: Can you expand on this? If I am sending a request from flex, how would i use RewriteRule? Well there's a RewriteRule in my .htaccess that looks something like this: RewriteRule ^archives/2004/12/30/foo/?$ http://bar.com/foo [QSA] You're better

Re: [flexcoders] Moving Cursor inside textArea

2005-08-12 Thread Manish Jethani
On 8/12/05, Josh Noland [EMAIL PROTECTED] wrote: Does anybody know how to move the cursor inside a textArea? I am implementing a system that allows a user to use shortcut phrases that are exploded into text. For instance when the user types hz it is exploaded to horizontal. Something

Re: [flexcoders] individual border settings?

2005-08-12 Thread Manish Jethani
On 8/12/05, Douglas Knudsen [EMAIL PROTECTED] wrote: well, interesting, IIRC they claim that Flex supports CSS when it only supprts these few things http://livedocs.macromedia.com/flex/15/flex_docs_en/0549.htm Who claims that Flex supports all of the CSS1/CSS2 spec? You're right, Flex

Re: [flexcoders] Working with Flex and ASP {Code} - To Manish

2005-08-12 Thread Manish Jethani
On 8/12/05, James [EMAIL PROTECTED] wrote: I'm getting a weird error, when I plugged in the below code, the compiler gave me an error on the alert lines of the HTTP service. There is no method with the name alert I was under the impression that alert was a part of the mx.controls class,

Re: [flexcoders] calling a function from on dispatchEvent change

2005-08-12 Thread Manish Jethani
On 8/12/05, Ghislain Simard [EMAIL PROTECTED] wrote: How to call a function inside a component In the dispatcher: function listChange():Void{ dispatchEvent({type:'selectionChanged', selectedBedern:myList.selectedItem}); } in

Re: [flexcoders] DepthManager

2005-08-12 Thread Manish Jethani
On 8/13/05, Rajesh Jayabalan [EMAIL PROTECTED] wrote: How do I use DepthManager, my menu is appearing below title windows, a work around I found was to use setdepthabove and pass the window to it for the menu, but this does not work if the window is moved. Man, it sure does help to have

Re: [flexcoders] Re: DepthManager

2005-08-13 Thread Manish Jethani
On 8/13/05, Rajesh Jayabalan [EMAIL PROTECTED] wrote: I created my menu adjustMenuDepths from your blog thanks :-), but it does have a problem in that after the title window is created the menu does appear above it, but when I move the window a bit or just click on the title window, the

Re: [flexcoders] How to programmatically scroll a grid to desired row ?

2005-08-18 Thread Manish Jethani
On 8/18/05, Shlomi Cohen [EMAIL PROTECTED] wrote: is there a way to scroll a datagrid object to a selected Index row ? Set vPosition. Manish Yahoo! Groups Sponsor ~-- font face=arial size=-1a

Re: [flexcoders] Resize popup

2005-08-21 Thread Manish Jethani
On 8/21/05, Kelly [EMAIL PROTECTED] wrote: I have a popup window that I want to be able to resize while it is popped up by having the user click a button. How do I get it to redraw itself? Call setSize and pass the desired width and height. Manish Yahoo! Groups

Re: [flexcoders] the \n doesn't work in XML

2005-08-26 Thread Manish Jethani
On 8/25/05, Nithya R [EMAIL PROTECTED] wrote: i am trying to use xml for displaying the button label is there any possible way of displaying it in two lines only using XML? i tried using #13; as told by gordon but it didnt work please help... ?xml version=1.0? mx:Application

Re: [flexcoders] Link Component

2005-08-26 Thread Manish Jethani
On 8/26/05, Omar Ramos [EMAIL PROTECTED] wrote: I am trying to disable the rollOver action on the Link component. It seams it doesn't have a useRollOver = false property. Anyone have been able to disable it some other way? Thanks Your only option seems to be that you set the rollOverColor

Re: [flexcoders] Accordion: save form on exit

2005-08-26 Thread Manish Jethani
On 8/26/05, Simard, Ghislain [EMAIL PROTECTED] wrote: In the following example. If I am in the Comp1 and I click on an item on the left tree...meaning that I am focussing out of the Comp1...how to get the Comp1 saved? mx:HBox mx:Tree .../ mx:Accordion mx:Form

Re: [flexcoders] using and detecting menubar selection

2005-08-26 Thread Manish Jethani
On 8/24/05, Greg Morphis [EMAIL PROTECTED] wrote: Maybe I'm missing something but how do YOU interact with the menuitem's you've created? I suppose I could add an id and pass that to an function like.. function changeEvt(event) { fSwitch.text=event.menuItem.attributes.label + +

Re: [flexcoders] creationComplete on ViewStack children *bug?*

2005-08-26 Thread Manish Jethani
On 8/26/05, Scott Barnes [EMAIL PROTECTED] wrote: I've got a typical setup where i set certain properties of controls within a child of a view stack. Inside the child i have the usual creationComplete=hlper.myfunc() Only the myFunc doesn't even know its children within, meaning if i did

Re: [flexcoders] Scrollbar in canvas

2005-08-26 Thread Manish Jethani
On 8/20/05, Rajesh Jayabalan [EMAIL PROTECTED] wrote: I have vScrollPolicy=auto in a canvas and a vbox inside it with a repreater which creates a buch of elements (labels, combos) In some cases the scrollbar works fine and shows correctly, but in some cases the scrollbar does not show up

Re: [flexcoders] Popup component

2005-08-26 Thread Manish Jethani
On 8/26/05, Alberto Albericio Salvador [EMAIL PROTECTED] wrote: The question is: how can I modify the container or the helper class so that Index.mxml know it has to show this component in a popup window? My lame solution to this has been replacing this: view:Login id=login / with

Re: [flexcoders] Accordion: save form on exit

2005-08-27 Thread Manish Jethani
On 8/26/05, Simard, Ghislain [EMAIL PROTECTED] wrote: Is there a way to get the opened component saving the values when we click anywhere in the apps outside of that component? I guess you can listen for the mouseDownSomewhere event and check for the event's target property. Manish

Re: [flexcoders] Re: Null Form

2005-08-29 Thread Manish Jethani
On 8/29/05, Andrew Spaulding [EMAIL PROTECTED] wrote: I've taken a quick look, and couldn't see why you need to override the getters and setters for the id property in CreateListItem.mxml 'id' is the UIObject property used to look up the component instance on the parent document. Jesse, if

Re: [flexcoders] canvas flickering on hideEffect

2005-08-29 Thread Manish Jethani
On 8/29/05, Jaime Bermudez [EMAIL PROTECTED] wrote: That's cool. The reason why I made the grid disabled is that the grid is clickable through the search box, even though the box is above the grid. In other words, I can select a row in the grid that is covered by the search box. Is there a

Re: [flexcoders] ComboBox dropShadow bug

2005-08-29 Thread Manish Jethani
On 8/29/05, Philippe Maegerman [EMAIL PROTECTED] wrote: Very quiet today, so here a bug to keep you busy ;))) The dropShadow in ComboBox is not really working :(( It's not supposed to. dropShadow works only on containers. Documentation bug. :) Manish Yahoo!

Re: [flexcoders] ComboBox dropShadow bug

2005-08-29 Thread Manish Jethani
On 8/29/05, Philippe Maegerman [EMAIL PROTECTED] wrote: It works with Lists and dataGrids, Flex Builder is showing these attributes too. Sorry, my bad. It does work for List. ComboBox does not extend List though. Is it going to disapear or be fixed in V2? The desired behaviour would

Re: [flexcoders] canvas flickering on hideEffect

2005-08-29 Thread Manish Jethani
On 8/29/05, Jaime Bermudez [EMAIL PROTECTED] wrote: Now, another issue I'm having is that when a preview panel is displayed, the search window gets cut off, even though it's width is a percentage. You'll see what I mean if you run the following app, select the first row to cause the preview

Re: [flexcoders] SplitPane in Flex

2005-08-31 Thread Manish Jethani
On 8/31/05, Shlomi Cohen [EMAIL PROTECTED] wrote: \ i'm reposting this , since i still haven't found a suitable solution . can you give it few minutes ? In case you want to write one on your own, start overriding the DividedBox class.

Re: [flexcoders] Metamorphosing RadioButtonGroup

2005-08-31 Thread Manish Jethani
On 8/31/05, Markus Ansamaa [EMAIL PROTECTED] wrote: I have been trying to dynamically create RadioButtonGroup (due to the problem I posted earlier). I managed to create the group but getting access to the RadioButtonGroup object seems to be quite hard. I create the group during

Re: [flexcoders] canvas flickering on hideEffect

2005-08-31 Thread Manish Jethani
On 8/31/05, Jaime Bermudez [EMAIL PROTECTED] wrote: Ok Manish... I'm still stuck on this one. Are you saying that I have to do something on the resize event of the preview panel? Do stacked components inside a canvas not resize like other components? Can you apply a workaround? Set the size

Re: [flexcoders] SplitPane in Flex

2005-09-01 Thread Manish Jethani
On 8/31/05, Shlomi Cohen [EMAIL PROTECTED] wrote: Can you please answer the question about the ScrollPane.as class from framework 2. is it possible to use it in Flex ? why it wasn't shipped with Flex ? I think ScrollPane.as was only for Flash (not Flex). I don't know beyond that, it

Re: [flexcoders] DateField - disabledRanges

2005-09-01 Thread Manish Jethani
On 9/1/05, Steve Cox [EMAIL PROTECTED] wrote: Is there a way of changing my date object to remove 1 day from it? And it will automatically workout the month/year changes if applicable? http://www.mail-archive.com/flexcoders@yahoogroups.com/msg05709.html Manish

Re: [flexcoders] Datagrid and Multiple Combo Boxes

2005-09-06 Thread Manish Jethani
On 9/6/05, priya_sukup [EMAIL PROTECTED] wrote: I have a grid with two combo boxes. So in order to use a common cell renderer i have extended the Datagrid column to include a dataProvider variable. I have created the common cell renderer. The combos are populated from different arrays using

Re: [flexcoders] Help: link to a specific viewstack inside a specific tab

2005-09-06 Thread Manish Jethani
On 9/6/05, face7hill [EMAIL PROTECTED] wrote: function goTab2Stack3(){ myViewStack.selectedIndex=3; mytabs.selectedIndex=2; } This takes me to tab 2 but it shows the wrong stack (shows the first view NOT the third). I have not been able to find a solution in the archives. If

Re: [flexcoders] Make a PopUp non-draggable

2005-09-06 Thread Manish Jethani
On 9/6/05, digital_eyezed [EMAIL PROTECTED] wrote: How do I make a popUp TitleWindow non-draggable (i.e. fixed in position so that trying to drag it around the parent container is not allowed) There's no documented way to do this, AFAIK. [undocumented] Here's a little hack: TitleWindow

Re: [flexcoders] Binding question

2005-09-06 Thread Manish Jethani
On 9/6/05, Abdul Qabiz [EMAIL PROTECTED] wrote: If you look at this link of Flex Documentation: http://livedocs.macromedia.com/flex/15/flex_docs_en/0695.htm You will find the following in the end: Note: Array elements do not trigger ChangeEvents and, therefore, cannot function as

Re: [flexcoders] cellRenderer

2005-09-07 Thread Manish Jethani
On 9/7/05, Philippe Maegerman [EMAIL PROTECTED] wrote: Let's say I have a dataGrid with a ComboBox cellRenderer and I want the Combos dataProviders to be the result of a remoting action 1°) DataGrid 2°) Remote onResult = _global.DP = result + dataGrid.getColumnAt().cellRenderer =

Re: [flexcoders] cellRenderer

2005-09-07 Thread Manish Jethani
On 9/7/05, Philippe Maegerman [EMAIL PROTECTED] wrote: onResult of the RemoteObject, I set the result in _global.result, and then apply a cellRenderer to a Datagrid column, then the cellRenderer would use the _global.result to initialize its values (ComboBox cellRenderer). But the

Re: [flexcoders] cellRenderer

2005-09-08 Thread Manish Jethani
On 9/7/05, Philippe Maegerman [EMAIL PROTECTED] wrote: If I would ask my question differently it would be : Is it possible to change cellRenderers on the fly, switching from cellRendererA to cellRendererB ? I think changing the cell renderer that way should work - i.e it should refresh the

Re: [flexcoders] 3 problems about datagrid ...

2005-09-08 Thread Manish Jethani
On 9/8/05, xiankevin2005 [EMAIL PROTECTED] wrote: 1: when i use a cellrenderer in the datagrid,such as checkCellRenderer,in the click event handler of the checkBox,the method listOwner.dataProvider.editField is invoked.but it seems that the datagrid control cannot handle the event that the

Re: [flexcoders] Invalidate Question

2005-09-10 Thread Manish Jethani
On 9/10/05, kreddington1 [EMAIL PROTECTED] wrote: How can I get the validators to turn off until the users starts to fill out the form again? I'm not sure, but I think you have to use Validator.disable

Re: [flexcoders] pausing for given time

2005-09-10 Thread Manish Jethani
On 9/10/05, Krzysztof Szlapinski [EMAIL PROTECTED] wrote: i've got this - probably simple - problem, I want to pause my application for some time, and I cant find neither pause nor wait nor halt or whatever function that can perform this task. here are the details: I've got a label and a

Re: [flexcoders] cellRenderer

2005-09-10 Thread Manish Jethani
On 9/8/05, Philippe Maegerman [EMAIL PROTECTED] wrote: Something I have discovered, in the mx:DataGrid tag, if you add initialize=event.target.getColumnAt(1).cellRenderer = boldRenderer the cellRenderer is taken, but not if you use the creationComplete event. I noticed that, if you add a

Re: [flexcoders] Question about the samples on the samples page

2005-09-16 Thread Manish Jethani
On 9/17/05, Tracy Spratt [EMAIL PROTECTED] wrote: I am not an attorney, but yes, you can use that code legally. Use common sense: if code is publicly posted, and there in not an explicit copyright restriction in it, you are probably safe to use it (I did not see any copyright notices in the

Re: [flexcoders] Dynamic Object Instantiation

2005-09-16 Thread Manish Jethani
On 9/16/05, Shahnavaz Alware [EMAIL PROTECTED] wrote: I do the similar stuff using getChildAt(i) instead of childDescriptors[i] and that works fine if I want to read the properties I set during createChild. Eg parentID.getChildAt(i).id childDescriptors is only for children created in MXML.

Re: [flexcoders] romoving focus, selection, highlight from a button

2005-09-17 Thread Manish Jethani
On 9/16/05, Krzysztof Szlapinski [EMAIL PROTECTED] wrote: first of all I dont know the proper name for this: when you move a mouse over a button its frame turns green is it called focus selection or highlight? whatever its name is :) i want to remove it from my button after it's been

Re: [flexcoders] problem about Text or TextArea

2005-09-17 Thread Manish Jethani
On 9/16/05, xiankevin2005 [EMAIL PROTECTED] wrote: is it possible?how to make the Text control editable or to make the TextArea control adjust its height to fit the content? The TextArea by default does not adjust its height. Every component measures its width and height during layout --

Re: [flexcoders] How to overload methods in Actionscript?

2005-09-17 Thread Manish Jethani
On 9/15/05, Abdul Qabiz [EMAIL PROTECTED] wrote: ActionScript doesn't support method overloading. Instead you can use following approach. function sayHello() { var n:Number = arguments.length; if(n==0) { alert(Hello World); }

Re: [flexcoders] Flash 8 compatibilty with Flex

2005-10-02 Thread Manish Jethani
On 10/1/05, sandip_patil01 [EMAIL PROTECTED] wrote: My server details -- OS : RedHat Linux Application Server :Jboss4.0.1sp1 JDK 1.4 Client browser details : IE 6.0 Flash Player8x Now when I am running my upload functionality in my local system(Win XP) fileio.browse() function opening

Re: [flexcoders] Accordion destroyChildAt

2005-10-02 Thread Manish Jethani
On 10/1/05, Ghislain Simard [EMAIL PROTECTED] wrote: If I am destroying a child (using destroyChildAt) in my accordion, how to reinsert it when needed ? Use createChild to create it again. Yahoo! Groups Sponsor ~-- Fair play? Video games

Re: [flexcoders] hidding a stack in the accordion

2005-10-02 Thread Manish Jethani
On 10/1/05, Ghislain Simard [EMAIL PROTECTED] wrote: How to programtically hide a stack (or a tab) in an accordion? One accordion pane will be visible at any given time. To switch to another pane simply set the 'selectedIndex' property accordingly. Yahoo! Groups

Re: [flexcoders] Dynamic Object Bindings

2005-10-02 Thread Manish Jethani
On 10/1/05, Aly Sidi [EMAIL PROTECTED] wrote: I was wondering if there was a way to iterate over an object created by XML2Object See the 'in' operator of ActionScript. Yahoo! Groups Sponsor ~-- Fair play? Video games influencing politics.

Re: [flexcoders] Tile List Effect.

2005-10-02 Thread Manish Jethani
On 10/1/05, Omar Ramos [EMAIL PROTECTED] wrote: Does anyone knows how was the effect of the http://www.caledonbank.com/accountFinder.html sort effect was made? Like this? ?xml version=1.0? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; mx:Tile id=tile width=200 height=200

Re: [flexcoders] extending the DataGrid component

2005-10-02 Thread Manish Jethani
On 9/30/05, Jaime Bermudez [EMAIL PROTECTED] wrote: I am trying to create a custom datagrid component that handles double-click events, but when I try to use the datagrid in an MXML component w/ the columns setup I get a compilation error. Here's an example of the component use:

Re: [flexcoders] how to add an icon in the Panel bar?

2005-10-02 Thread Manish Jethani
On 9/30/05, Ghislain Simard [EMAIL PROTECTED] wrote: how to add an icon in the Panel bar? http://www.mail-archive.com/flexcoders@yahoogroups.com/msg06841.html Yahoo! Groups Sponsor ~-- Get Bzzzy! (real tools to help you find a job). Welcome to the

Re: [flexcoders] Cannot link two controls with a custom event

2005-10-02 Thread Manish Jethani
On 9/30/05, jivankohinoor [EMAIL PROTECTED] wrote: LinkNavigator id=sender height=100% width=75% objkey={objkey} / LinkNavigator id=receiver sender={sender} height=100% width=75% / Then in the LinkNavigator source, we have a function that creates the

Re: [flexcoders] Questions about createChild() and destroyChildAt()

2005-10-02 Thread Manish Jethani
On 9/27/05, Prasad Dhananjaya [EMAIL PROTECTED] wrote: 1.How can I give mouseOver,mouseOverEffect,mouseOut,mouseOutEffect,mouseUp events to createChild().(check ★).I want to give above affects to all created children which are on the JobNetCanves. (In below code all

Re: [flexcoders] div like behaviour?

2005-10-02 Thread Manish Jethani
On 9/30/05, flexhansen [EMAIL PROTECTED] wrote: Is there an easy way to achieve mx:Tile behaviour but without the tiles being of equal size? In other words I'm looking for something like the div-tag of plain old html that wraps content to fit the width prop. instead of putting up

Re: [flexcoders] Popping up the same window more than once

2005-10-02 Thread Manish Jethani
On 9/29/05, fowleryj [EMAIL PROTECTED] wrote: I've noticed that if I have WindowA open, and I click a button inside of it that opens WindowB, a button inside of WindowB that is supposed to open an instance of WindowA will not do so. [...] Not sure what you mean by same window. Calling

Re: [flexcoders] Flex DataGrid with large recordset

2005-10-02 Thread Manish Jethani
On 9/29/05, sergei_tsoganov [EMAIL PROTECTED] wrote: When I first loaded my flex datagrid with 190 records I was really disappointed in flex. It was almost impossible to scroll tha grid or resize it. It seems like flex components are much slower than even flash components. What is the

Re: [flexcoders] Question about drawing on the canvas

2005-10-04 Thread Manish Jethani
On 10/4/05, Prasad Dhananjaya [EMAIL PROTECTED] wrote: Have a simple question about drawing on the canvas. Below code draws an arrow between mousedown point and mouseup point. It works well. But... When I move canvas's scrollbar, arrow didn't move. Means it is NOT on the canvas.Want to

Re: [flexcoders] How to find out the thickness of the scroll bar?

2005-10-05 Thread Manish Jethani
On 10/5/05, JesterXL [EMAIL PROTECTED] wrote: I think HScrollbar is always 16 wide, and VScrollbar is always 16 high. :: checks :: Hrm... well, screenshot reports 17, but I think that's a border. I think I remember having read in the docs that it's 16 by default. Anyway, so the way to check

  1   2   3   4   5   6   7   8   9   10   >