[GitHub] [royale-asjs] pashminakazi commented on issue #661: ColorPicker is not working

2020-01-19 Thread GitBox
pashminakazi commented on issue #661: ColorPicker is not working
URL: https://github.com/apache/royale-asjs/issues/661#issuecomment-576109807
 
 
   @aharui Thank u so much its working now


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [royale-asjs] pashminakazi commented on issue #661: ColorPicker is not working

2020-01-16 Thread GitBox
pashminakazi commented on issue #661: ColorPicker is not working
URL: https://github.com/apache/royale-asjs/issues/661#issuecomment-575043085
 
 
   Ok thank u so much Alex
   
   On Thu, Jan 16, 2020, 1:13 PM aharui  wrote:
   
   > Your application is set up more like:
   >
   > http://ns.adobe.com/mxml/2009;
   > xmlns:mx="library://ns.apache.org/royale/mx"
   > xmlns:s="library://ns.apache.org/royale/spark"
   > width="600" height="400" >
   > 
   > 
   > 
   > 
   > 
   > 
   > 
   >
   >
   > 
   >
   > where ValueObj looks like:
   >
   > package {
   >
   > [Bindable]
   > public class ValueObj
   > {
   > public var purchaseRequColor:String = "#ffeedd";
   > }
   > }
   >
   > I thought I had tested that locally, but apparently not as that scenario
   > is not working. The binding expression is not being set up correctly. It is
   > not handling the private bindable. I will look into it tomorrow unless
   > someone else can get to it sooner, but you can use the setStyle as a
   > workaround.
   >
   > —
   > You are receiving this because you modified the open/close state.
   > Reply to this email directly, view it on GitHub
   > 
,
   > or unsubscribe
   > 

   > .
   >
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [royale-asjs] pashminakazi commented on issue #661: ColorPicker is not working

2020-01-15 Thread GitBox
pashminakazi commented on issue #661: ColorPicker is not working
URL: https://github.com/apache/royale-asjs/issues/661#issuecomment-575014433
 
 
   @aharui Thanks


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [royale-asjs] pashminakazi commented on issue #661: ColorPicker is not working

2020-01-14 Thread GitBox
pashminakazi commented on issue #661: ColorPicker is not working
URL: https://github.com/apache/royale-asjs/issues/661#issuecomment-574532710
 
 
   i dont know what code will change color or contentBackgroundColor of 
s:TextInput.
   If i know then i will check this example myself and then check my setup 
according to this example


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [royale-asjs] pashminakazi commented on issue #661: ColorPicker is not working

2020-01-12 Thread GitBox
pashminakazi commented on issue #661: ColorPicker is not working
URL: https://github.com/apache/royale-asjs/issues/661#issuecomment-573535845
 
 
   SelectedItem is working now,But there is no color in TextInput


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [royale-asjs] pashminakazi commented on issue #661: ColorPicker is not working

2020-01-10 Thread GitBox
pashminakazi commented on issue #661: ColorPicker is not working
URL: https://github.com/apache/royale-asjs/issues/661#issuecomment-573015441
 
 
   Hi Alex,
   VDI is working now Please connect VDI with Computer 
namevdi.sidathyder.com.pk:6105 instead of
   vdi.sidathyder.com.pk:6022
   Other credentials are same
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [royale-asjs] pashminakazi commented on issue #661: ColorPicker is not working

2020-01-09 Thread GitBox
pashminakazi commented on issue #661: ColorPicker is not working
URL: https://github.com/apache/royale-asjs/issues/661#issuecomment-572898138
 
 
   When we open dbzPurchaseRequSetup **in Flex.**
   
   
   the Color of s:TextInput  is same as the color of ColorPicker.
   then when we open ColorPicker and select any Color,the Change method of 
ColorPicker called
   
   
   public function changeEvt(event:ColorPickerEvent):void 
{
purchaseRequColor.text= 
event.currentTarget.selectedItem;
}
   
   This changeEvt is setting the color of textinput same as ColorPicker's color.
   
   **In Royale** 
   There's default selection of Color in ColorPicker,but textinput is not 
setting that Color,textinput is white,
   then when i change Color from ColorPicker **ChangeEvt** function Called but 
purchaseRequColor.text is null because there's no value in 
**event.currentTarget.selectedItem;**
   then i change 
   purchaseRequColor.text= event.currentTarget.selectedItem; to
   purchaseRequColor.text= event.currentTarget.selectedColor;
   then the number of color is setted on textInput,But not the Color.
   Video: 
   ![SelectedColor of 
colorpicker](https://user-images.githubusercontent.com/42200979/72131741-f23aa380-339e-11ea-96eb-c376d54c3931.gif)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [royale-asjs] pashminakazi commented on issue #661: ColorPicker is not working

2020-01-08 Thread GitBox
pashminakazi commented on issue #661: ColorPicker is not working
URL: https://github.com/apache/royale-asjs/issues/661#issuecomment-572401442
 
 
   @aharui Thank u so much ColorPicker is working now.
   I have another issue 
   File Code :
   https://paste.apache.org/b2a5j
   When we select color from ColorPicker,spark textinput's color should be 
change.
   Spark textInput color and contentBackgroundColor property is not 
working.Please implement these properties.I will be very Thankful to You.
   
   Flex/Royale Comparison Video:
   ![Color of Spark 
TextInput](https://user-images.githubusercontent.com/42200979/72041848-753ff900-32ce-11ea-8318-ae7dfb0d2d33.gif)
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [royale-asjs] pashminakazi commented on issue #661: ColorPicker is not working

2020-01-08 Thread GitBox
pashminakazi commented on issue #661: ColorPicker is not working
URL: https://github.com/apache/royale-asjs/issues/661#issuecomment-571942915
 
 
   Alex you are right but I do not have time to work on SDK..I am only working 
on Royale now a days,I have to send 98 more complex setups to our QA team till 
15-January-2020.Its my deadline date of setups


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [royale-asjs] pashminakazi commented on issue #661: ColorPicker is not working

2020-01-07 Thread GitBox
pashminakazi commented on issue #661: ColorPicker is not working
URL: https://github.com/apache/royale-asjs/issues/661#issuecomment-571927630
 
 
   ColorPickerExample is not working
   File : https://paste.apache.org/8m7va
   
![image](https://user-images.githubusercontent.com/42200979/71958852-19646a00-3213-11ea-8b2f-82323f783043.png)
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services