Re: [FlexJS, MDL] SnackbarModel and events

2016-12-29 Thread Alex Harui
On 12/28/16, 2:51 PM, "piotrz" wrote: >I'm not sure if that's the solution in my case. "action" is just the name >of >the event - I could change it to "snackbarAction". > >I see that models in FlexJS dispatches events and View can handle it >without >the problems. I don't have specific View lik

Re: AW: How to put an example online

2016-12-29 Thread Alex Harui
It appears to be available in the workspace, but I think you need to login to see it. Chris, any objections to publishing last successful artifacts? I think those can be seen by everyone. -Alex [1] https://builds.apache.org/job/FlexJS%20Framework%20(maven)/ws/examples/flex js/MDLExample/target

Re: [FlexJS, MDL] SnackbarModel and events

2016-12-29 Thread piotrz
Thanks Alex for explanation. I understand now. I will dispatch event through strand it should work. Carlos, In my opinion we should use FlexJS event and not introduce new code for that. Although if you have some specific idea with bootstraper feel free to show. Piotr - Apache Flex PMC pio

[FlexJS] Probable design to support runtime update to DataGrid component

2016-12-29 Thread sankar
/I reported this requirement to Apache JIRA (https://issues.apache.org/jira/browse/FLEX-35197) sometime back and also discussed here in mailing-list (apache-flex-flexjs-0.8.0-bin\frameworks\js\FlexJS\libs)./ I spent sometime to make the DataGrid component updates at runtime based on it's collectio

RE: [Non-DoD Source] Re: Starting fresh / new developers

2016-12-29 Thread Kessler CTR Mark J
So far it looks like two items have emerged. We should give FlexJS its own pages and fanfare. Maybe we should move the Tour de Flex to the Development tab. It does have a good amount of examples in it. However it seems to have each example compiled separately. Which makes everything take lon

Re: [FlexJS] Probable design to support runtime update to DataGrid component

2016-12-29 Thread piotrz
Hi Sankar, First of all Big Thank You for this work! I have questions to this class: "DataItemRendererFactoryForArrayList": 1) You are registering for events "beadsAdded" and "initComplete" - Is it possible that both event will call "finishSetup" handler ? Maybe you should unregister once you g

Re: AW: How to put an example online

2016-12-29 Thread Christofer Dutz
Hmmm … I could ask to make the lastsuccessfull build available without login … Chris Am 29.12.16, 09:16 schrieb "Alex Harui" : It appears to be available in the workspace, but I think you need to login to see it. Chris, any objections to publishing last successful artifacts? I thi

Re: AW: How to put an example online

2016-12-29 Thread Alex Harui
OK, sounds like you think this is an ok idea. I went and changed the build config to publish the examples/flexjs folder to last successful artifacts and started a new build. We'll see if it works without login. I also added a "build fixed" notification to the build because it could not easily te

Re: [FlexJS] Slider valueChange not working

2016-12-29 Thread piotrz
Carlos, I just checked Slider in example application with your newest changes and valueChange still doesn't work. Should it work with your changes ? Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Fle

Re: AW: How to put an example online

2016-12-29 Thread Alex Harui
Can folks see this without logging in? https://builds.apache.org/job/FlexJS%20Framework%20%28maven%29/lastSuccessf ulBuild/artifact/examples/flexjs/MDLExample/target/javascript/bin/js-debug/ index.html Short URL: https://s.apache.org/MDLExample -Alex On 12/29/16, 8:27 AM, "Alex Harui" wrote:

Re: AW: How to put an example online

2016-12-29 Thread Josh Tynjala
I can see it on my phone, and I'm pretty sure that I'm not logged in there. Nice looking example, by the way! That's the first time I've seen it. Good work on the MDL integration, everyone! - Josh On Dec 29, 2016 8:40 AM, "Alex Harui" wrote: > Can folks see this without logging in? > > https:/

Re: [FlexJS, MDL] SnackbarModel and events

2016-12-29 Thread Alex Harui
On 12/29/16, 1:23 AM, "piotrz" wrote: >Thanks Alex for explanation. I understand now. I will dispatch event >through >strand it should work. OK, hope it works for you. Actually, it occurred to me this morning that it might not be correct for ArraySelectionModel (or any model) to be dispatchin

Re: [FlexJS, MDL] SnackbarModel and events

2016-12-29 Thread piotrz
That could actually be the reason why my event didn't work. Once I dispatch it like that: (UIBase)(_strand).dispatchEvent(new Event("action")); It started to work. Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4

Re: AW: How to put an example online

2016-12-29 Thread Christofer Dutz
I manually logged out and tried it … seems to be working. Thanks for that … unfortunately the browsing experience is pretty sluggish. The other Infra guys asked me not to go down that path. When using Jenkins this way, he would act as a Webserver and as he is currently under quite a heavy load

[FlexJS, MDL] Menu with dataProvider and itemRenderer API

2016-12-29 Thread piotrz
Hi Carlos, Since I've finished Snackbar I can take next task. :) I see that Menu need to be updated with dataProvider and item renderer API. I will probably go same direction as you went with Lists - using ISelectionModel. I'm going also introduce in "core" package MenuEvent with ITEM_CLICK consta

Re: AW: How to put an example online

2016-12-29 Thread Andrew Wetmore
Layout looks very nice, and seems reasonably fast to respond On Thu, Dec 29, 2016 at 1:07 PM, Christofer Dutz wrote: > I manually logged out and tried it … seems to be working. Thanks for that > … unfortunately the browsing experience is pretty sluggish. > > The other Infra guys asked me not to

Re: AW: How to put an example online

2016-12-29 Thread Alex Harui
OK. I might copy the config to apacheflexbuild since it isn't under as much load until you get all this working. -Alex On 12/29/16, 9:07 AM, "Christofer Dutz" wrote: >I manually logged out and tried it … seems to be working. Thanks for that >… unfortunately the browsing experience is pretty sl

[FlexJS, MDL] Why MDL Toast need mdl-snackbar__action button?

2016-12-29 Thread piotrz
Hi, I've posted question [1] to MDL community on stackoverflow, but maybe someone have an idea here. [1] http://stackoverflow.com/questions/41386706/why-mdl-toast-need-mdl-snackbar-action-button Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apa

Re: [FlexJS, MDL] Menu with dataProvider and itemRenderer API

2016-12-29 Thread Alex Harui
On 12/29/16, 9:41 AM, "piotrz" wrote: >Hi Carlos, > >Since I've finished Snackbar I can take next task. :) I see that Menu need >to be updated with dataProvider and item renderer API. >I will probably go same direction as you went with Lists - using >ISelectionModel. I'm going also introduce in

Re: Filter function to ArrayList?

2016-12-29 Thread JoelProminic
I started some work on this feature. I created a JIRA issue here: https://issues.apache.org/jira/browse/FLEX-35232 I created a simple implementation, FilteredArrayList, that is just a subclass of ArrayList. I created an IFilter interface to define the filter, rather than the Function used by Ar

[4.16.0] # Apache Flex SDK 4.16.0 nightly build 184: Successful

2016-12-29 Thread flex . ci . builds
flex-sdk_release-candidate - Build #184 - Successful Changes since last build: No changes For more information, check the console output at http://apacheflexbuild.cloudapp.net:8080/job/flex-sdk_release-candidate/184/.

?the chinese word bug,i have put the bug 8 month ago,it is hard to fixed?

2016-12-29 Thread lizhi
this is import for some no english app for flexjs and i think it is easy fixed. i have put the bug at Apr 25, 2016; 5:39pm. but have not fixed. pls fixed it. var str:String ="你好" get js var str =""; - spriteflexjs.com -- View this message in context: http://apache-flex-developmen

Re: [FlexJS] Probable design to support runtime update to DataGrid component

2016-12-29 Thread sankar
Hi Piotr, piotrz wrote > I have questions to this class: "DataItemRendererFactoryForArrayList": > > 1) You are registering for events "beadsAdded" and "initComplete" - Is it > possible that both event will call "finishSetup" handler ? Maybe you > should unregister once you get what you want ? >

Re: ?the chinese word bug,i have put the bug 8 month ago,it is hard to fixed?

2016-12-29 Thread Alex Harui
Is this issue in JIRA somewhere? -Alex On 12/29/16, 7:27 PM, "lizhi" wrote: >this is import for some no english app for flexjs > >and i think it is easy fixed. > >i have put the bug at Apr 25, 2016; 5:39pm. > >but have not fixed. > >pls fixed it. > >var str:String ="你好" > >get js > >var str =

Re: ?the chinese word bug,i have put the bug 8 month ago,it is hard to fixed?

2016-12-29 Thread lizhi
https://issues.apache.org/jira/browse/FLEX-35233 - spriteflexjs.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/the-chinese-word-bug-i-have-put-the-bug-8-month-ago-it-is-hard-to-fixed-tp57644p57647.html Sent from the Apache Flex Development mailing

Re: Filter function to ArrayList?

2016-12-29 Thread Alex Harui
Sounds good. I may not be able to really review this until we get back to a regular schedule on Jan 3. Right now I get only get a few minutes here and there. Thanks for working on it. A couple of thoughts in-line... -Alex On 12/29/16, 3:27 PM, "JoelProminic" wrote: >I started some work on t

org.apache.flex.utils.Language.Vector is not a function

2016-12-29 Thread lizhi
i now update the flesjs sdk from dev. but get a lot of error. one error it is this. org.apache.flex.utils.Language.Vector is not a function - spriteflexjs.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/org-apache-flex-utils-Language-Vector-is