Re: Issue with Jewel popup

2019-01-15 Thread Harbs
Sure. All I was saying with the z-indexes is that it makes sense to stick to some conventions when implementing different beads/managers so they play nicely with each other. > On Jan 16, 2019, at 8:41 AM, Alex Harui wrote: > > Royale offers choices. For PAYG reasons we probably wouldn't want

Re: Issue with Jewel popup

2019-01-15 Thread Alex Harui
Royale offers choices. For PAYG reasons we probably wouldn't want to implement only the "ultimate floating window manager". There are different strategies as to what goes on top and when (on mouseDown or mouseUp). Modal dialogs can have popups and float stuff over them if they want. My 2 cen

Re: Issue with Jewel popup

2019-01-15 Thread Harbs
Floating windows could probably be handled pretty easily by changing the z-index on each of the popups (in HTML). Of course you’d need a manager to handle that, but it shouldn’t be too hard to implement. That would probably be either a FloatingWindowManager singleton or FloatingWindowUtils sta

Build failed in Jenkins: royale-asjs_MXTests #356

2019-01-15 Thread apacheroyaleci
See -- [...truncated 2.00 MB...] [mxmlc] using source file:

Re: Issues with the first-app tutorial

2019-01-15 Thread Alex Harui
Hi Andrew, I see you filed some issues. Is there some action you are looking for others to take on? Seems like you could just change the name of the attribute in that one example. Sorry if I'm missing something. -Alex On 1/14/19, 4:14 PM, "Alex Harui" wrote: Hi Andrew, Eithe

Build failed in Jenkins: royale-asjs_MXTests #355

2019-01-15 Thread apacheroyaleci
See Changes: [carlosrovira] Set up a Popup with a Form to show in Tour De Jewel and check all popups -- [...truncated 2.00 MB...] [mxmlc

Jenkins build is back to normal : royale-asjs_jsonly #2226

2019-01-15 Thread apacheroyaleci
See

Re: Issue with Jewel popup

2019-01-15 Thread Alex Harui
On 1/15/19, 2:48 PM, "Carlos Rovira" wrote: > > Support for "overlapping windows" would be PAYG and added via some other > classes. I don't think we've done anything there at the Basic level, the > emulation components may have to support it since Flex did. > What

Re: Issue with Jewel popup

2019-01-15 Thread Carlos Rovira
Hi Alex, El mar., 15 ene. 2019 a las 18:50, Alex Harui () escribió: > In theory, the Basic popup support is "basic". It should handle > "stacking" scenarios, but not "overlapping window" scenarios. > > So, a popup dialog should be able to have a tooltip or a > dropdownlist/popupmenu or even popu

Re: Issue with Jewel popup

2019-01-15 Thread Carlos Rovira
Thanks Harbs, let me know if you need some help from my side El mar., 15 ene. 2019 a las 20:05, Harbs () escribió: > I’ll try to find some time to work on these. > > > On Jan 15, 2019, at 8:19 PM, Carlos Rovira > wrote: > > > > Hi > > > > El mar., 15 ene. 2019 a las 18:35, Harbs () > escribió: >

Re: Issue with Jewel popup

2019-01-15 Thread Harbs
I’ll try to find some time to work on these. > On Jan 15, 2019, at 8:19 PM, Carlos Rovira wrote: > > Hi > > El mar., 15 ene. 2019 a las 18:35, Harbs () escribió: > >> 1. Try typing into the date field. The date separators get all weird, and >> you can’t delete text. >> > > Right, That's some

Re: Should we change width/height to use EM instead PX?? (was: Re: Using em vs px)

2019-01-15 Thread Alex Harui
Hi Carlos, In theory, nobody is "forcing" anything in Basic. Hopefully everything is PAYG. If there is a PAYG way to support "em" in Basic then great. Maybe having a units var/const is good enough. One thing I just thought of is that there is typically a 'get-what-you-set' rule for Flex pro

Re: Issue with Jewel popup

2019-01-15 Thread Carlos Rovira
Hi El mar., 15 ene. 2019 a las 18:35, Harbs () escribió: > 1. Try typing into the date field. The date separators get all weird, and > you can’t delete text. > Right, That's something to fix. Didn't have the time to solve it, so if you have some idea feel free to improve it. I think you have mor

Re: Issue with Jewel popup

2019-01-15 Thread Alex Harui
In theory, the Basic popup support is "basic". It should handle "stacking" scenarios, but not "overlapping window" scenarios. So, a popup dialog should be able to have a tooltip or a dropdownlist/popupmenu or even popup an Alert or another popup dialog. The latest popup should be addElement'd

Re: [Non-DoD Source] Re: Things that we still doesn't have and need in UIBase sizing

2019-01-15 Thread Alex Harui
Hi Carlos, IMO, we want to abstract away platform/runtime-specific implementations in the API surface. It is not a good idea to have our user's application rely on API practices that may not work on all targets. So first, we have to agree on what width/height is in Royale. I do not think tha

Re: Issue with Jewel popup

2019-01-15 Thread Harbs
1. Try typing into the date field. The date separators get all weird, and you can’t delete text. 2. The validation only happens after the date field loses focus. That causes the error tip to remain. > On Jan 15, 2019, at 7:24 PM, Carlos Rovira wrote: > > Hi Harbs, > > just tested now in Tour

Re: Issue with Jewel popup

2019-01-15 Thread Carlos Rovira
Hi Harbs, just tested now in Tour De Jewel and now works perfect. Thanks for fixing this! :) What do you mean with "DateValidator still needs work."? What you miss there? El mar., 15 ene. 2019 a las 16:50, Harbs () escribió: > I changed popup and validator. > > The validator behavior is a bit

Re: Issue with Jewel popup

2019-01-15 Thread Harbs
I changed popup and validator. The validator behavior is a bit different, but I think it’s better. DateValidator still needs work. Let me know what you think. Harbs > On Jan 15, 2019, at 5:19 PM, Harbs wrote: > > I don’t think Popup should implement IPopupHost and IPopupHostParent. > > Also

Re: Issue with Jewel popup

2019-01-15 Thread Harbs
I don’t think Popup should implement IPopupHost and IPopupHostParent. Also: Tips including ErrorTips should self-remove as soon as the component which launches them loses focus. > On Jan 15, 2019, at 2:06 PM, Carlos Rovira wrote: > > Hi Harbs > > I saw this the other day. Thanks for reporting

Re: Should we change width/height to use EM instead PX?? (was: Re: Using em vs px)

2019-01-15 Thread Carlos Rovira
Hi, very interesting discussion @Alex : My first reaction is that Basic is basic and works in pixels and that adding other units can happen in other component sets and beads. Although Basic is just Basic, people using it could want to switch from PX to EM at sometime. I think it should not be go

Re: Issue with Jewel popup

2019-01-15 Thread Carlos Rovira
Hi Harbs I saw this the other day. Thanks for reporting. The problem is that PopUp uses UIUtils.addPopUp(_popUp, getHost()); (that does a call to findPopUpHost) And the ToolTips uses this too. In the other hand Alex did some changes and now we have IPopUpHost and IPopUpHostParent And I thi

Re: [Non-DoD Source] Re: Things that we still doesn't have and need in UIBase sizing

2019-01-15 Thread Carlos Rovira
Hi Alex, El lun., 14 ene. 2019 a las 18:37, Alex Harui () escribió: > Right now there are some places where we unset by setting width/height to > "". I think those will have to change to "initial" but it is the same > principle. But changing "" to "initial" seems to me focus just in HTML plat

Issue with Jewel popup

2019-01-15 Thread Harbs
https://royale.apache.org/tourdejewel/# Click on Popup and click the non-modal one. Type something into the fields and you’ll see that the validation text gets cut off to the boundaries of the section div on the main page. The validation div also remains after closing the popup. Is there a rea