[flex_india:30657] Suppose client sent a request to server and server didn't respond back yet and How can we prevent a client to send next request until server responds

2010-07-08 Thread Sidhu Vijay Sidhu
Suppose client sent a request to server and server didn't respond back yet and How can we prevent a client to send next request until server responds -- You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email to f

Re: [flex_india:30657] Re: Help me on Dual slider with two thumbs

2010-07-08 Thread Venu's
Hi Kannan, Thanks for immediate response. I tried this. infact, this is the solution i followed. But i am looking for other solution. I wanted to restrict the movement in reverse. This could be possible when we override getSnapValue method. I tried that.. But not working as i expected. could you

RE: [flex_india:30657] Help me on Dual slider with two thumbs

2010-07-08 Thread indianflexdevelo...@gmail.com
Hi Venu, in the change event try this code. //for left thumb if(evt.thumbIndex==0){ if(slider.values[0]>slider.values[1]){ slider.values[0] = slider.values[1] } do the same for the right thumb also. in that assign values[0] to values[1]. Regards, Valli V -Original Message- From:

[flex_india:30657] How to add UIComponents in to a Text Input Control

2010-07-08 Thread Rajesh
Hi all I need to add some components like button,label,date chooser inside my text input control. Can u please help me in regard. Thanks in advance. Regerds Rajesh Raju -- You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to thi

[flex_india:30657] Re: Soap 1.2 in flex

2010-07-08 Thread veeru rahul
Guys Any support on the below query. Thanks, Veeru On Wed, Jul 7, 2010 at 12:40 AM, veeru rahul wrote: > Hi Folks, > > I know that Flex does not support Soap 1.2. > > But i need to connect to a third party whose WSDL is generated using > Soap1.2. > > So is there any work around/hack to overcome

Re: [flex_india:30663] [Job/Consulting/Contract] - Flex Developer/Lead with 2-3 years exp @ NetBramha Studios

2010-07-08 Thread kannan leo
Nice but wats the username and pass or without that what u expect as to see there mate... Your forgot password effect was nice... but remember my id goes invisible on mouse over, that was not expected behaviour i suppose. Best regards, kannan. r On Thu, Jul 8, 2010 at 8:20 AM, sandeep gupta wr

Re: [flex_india:30664] [Job/Consulting/Contract] - Flex Developer/Lead with 2-3 years exp @ NetBramha Studios

2010-07-08 Thread kannan leo
Nice cv there mate.. On Thu, Jul 8, 2010 at 12:50 PM, kannan leo wrote: > Nice but wats the username and pass or without that what u expect as to see > there mate... > > Your forgot password effect was nice... > > but remember my id goes invisible on mouse over, that was not expected > behaviou

Re: [flex_india:30665] Suppose client sent a request to server and server didn't respond back yet and How can we prevent a client to send next request until server responds

2010-07-08 Thread kannan leo
Simple, by using client side script.. what scripting language do you prefer?? On Thu, Jul 8, 2010 at 7:54 AM, Sidhu Vijay Sidhu wrote: > Suppose client sent a request to server and server didn't respond back yet > and How can we prevent a client to send next request until server responds > > --

Re: [flex_india:30666] Re: Help me on Dual slider with two thumbs

2010-07-08 Thread kannan leo
Hi mate, Yup sure thing... I will try it and let you know asap. In the meantime please keep us updated of any solutions u find. And other frnds please help us out here THanks, kannan. r -- You received this message because you are subscribed to the Google Groups "Flex India Community" group. T

Re: [flex_india:30667] Suppose client sent a request to server and server didn't respond back yet and How can we prevent a client to send next request until server responds

2010-07-08 Thread Saurabh Narula
Hello, There are to type of server requests you can fire from the client to the server, synchronous and asynchronous. If you fire a Synchronous call, your client waits for the server to return with the result, server would either return with result or throw an error or will time out. If you fire

Re: [flex_india:0] [Job/Consulting/Contract] - Flex Developer/Lead with 2-3 years exp @ NetBramha Studios

2010-07-08 Thread Flex India Moderators
Sandeep, How does your CV and your reply helps the group as a whole? we are a bunch of developers here and the group is meant for technical discussions, how does public post of your CV helps the group? Please always be careful while posting a reply, this reply should go to the email address of Aas

[flex_india:30669] How to embed image source in css for resusability ?

2010-07-08 Thread Ajantha Vijayasekharan
Hi , I have got a lot of icons for an application and right now its embedded in the script tag eg:in my script tag i have [Embed(source="/assets/icons/save_it_icon.png")] [Bindable] private var saveIcon:Class; in my flex component How do i move this image source to c

[flex_india:30670] Slider labels dynamically change

2010-07-08 Thread Gaurav
Hi buddies, I have a requirement where I want to update the slider labels whenever an input box value corresponding to it changes. I tried doing it in updateDisplayList but its not working. Also the slider is customized one and has the custom drawn track. Currently I can see labels once I set them

Re: [flex_india:30671] How to embed image source in css for resusability ?

2010-07-08 Thread GAGAN anand
Hi Ajantha, Have a look at this link http://cookbooks.adobe.com/post_Embedding_mp3_sounds_in_flex_css_stylesheets-12146.html Hope this will help u. Regards Gagan Deep On 8 July 2010 13:39, Ajantha Vijayasekharan wrote: > Hi , > > I have got a lot of icons for an application and right now its e

[flex_india:30672] Re: How to add UIComponents in to a Text Input Control

2010-07-08 Thread v...@t
Hi, use createChildren() to add child components inside textInput. use commitProperties() to set propery of that components. may helps you. Regards, Virat Patel On Jul 8, 9:25 am, Rajesh wrote: > Hi all > >  I need to add some components like button,label,date chooser inside > my text input co

Re: [flex_india:30673] [Job/Consulting/Contract] - Flex Developer/Lead with 2-3 years exp @ NetBramha Studios

2010-07-08 Thread kannan leo
Sorry group, I just went through the group rules, and read about this. My sincere apologies. On Thu, Jul 8, 2010 at 1:33 PM, Flex India Moderators < flex.india.moderat...@gmail.com> wrote: > Sandeep, > > How does your CV and your reply helps the group as a whole? we are a bunch > of developers

Re: [flex_india:30674] How to add UIComponents in to a Text Input Control

2010-07-08 Thread Abdul
Hi, override the "createChildren()" of TextInput class. On 8 July 2010 09:55, Rajesh wrote: > Hi all > > I need to add some components like button,label,date chooser inside > my text input control. > > Can u please help me in regard. > > Thanks in advance. > > Regerds > > Rajesh Raju > > --

[flex_india:30675] Re: Code for Gammaln Function of Excel

2010-07-08 Thread krishna
Hi All, Just thought of sharing the code if somebody is interested, public function LnGamma(xx:Number):Number // This function returns the logGamma for a given value { var j:int; var x:Number; var y:Numbe

[flex_india:30675] An XML-based menu generator - Feedback welcome

2010-07-08 Thread Pranav Negandhi
I had to create an application menu for one of my projects which would run on an external XML resource. The idea was to abstract away as much of the core NativeMenu and NativeMenuItem API and be able to create recursive menus in a globally-understood format. The result was the AppMenu class which I

Re: [flex_india:30677] Suppose client sent a request to server and server didn't respond back yet and How can we prevent a client to send next request until server responds

2010-07-08 Thread Vijay
I m using flex n as3 Regards Sidhu Sent from iPhone On Jul 8, 2010, at 3:24 AM, kannan leo wrote: Simple, by using client side script.. what scripting language do you prefer?? On Thu, Jul 8, 2010 at 7:54 AM, Sidhu Vijay Sidhu > wrote: Suppose client sent a request to server and server did

[flex_india:30678] Help on OLAP Datagrid control

2010-07-08 Thread sachin kewale
hi all, i am working on OLAP Datagrid control ,and i want some help regaridng Styling and customizing this control. Is anyone work on this control or making same control ? any help on this will be really helpful to me. The issues i face, i can't wordwrap text in the dimensio

Re: [flex_india:30679] Re: How to add UIComponents in to a Text Input Control

2010-07-08 Thread Sidhu Vijay Sidhu
Can u send the sample code... On Thu, Jul 8, 2010 at 4:52 AM, v...@t wrote: > Hi, > > use createChildren() to add child components inside textInput. > use commitProperties() to set propery of that components. > > may helps you. > > Regards, > Virat Patel > > On Jul 8, 9:25 am, Rajesh wrote: > >

[flex_india:30680] Re: How to add UIComponents in to a Text Input Control

2010-07-08 Thread v...@t
Hi, Check sample code .. /// CusButton.as / package { import mx.controls.Button; import mx.controls.TextInput; public class CusButton extends TextInput { private var _btnAdd : But

Re: [flex_india:30681] Re: Select All record in Data Grid

2010-07-08 Thread nithya flex
Here is the sample var all:Array = new Array(); dg.selectedIndex = 0; for(var x:int = 0; x wrote: > Hi Amit, > > It's simple, just set allowMultipleSelection = true in your datagrid. > and then pass the array of indices of all the items of your datagrid > to selectedIndices property of