AMF implementation for .NET Standard

2020-12-15 Thread Hugo Ferreira
Hello, For those that use .NET as a backend as you know there are not many options and most have vaniss from the web a long time ago or stopped the development. Meanwhile .NET Core (now just .NET 5) was developed and there was not a single option for AMF. I developed AMFCore 2 years ago based on

RE: Crux - RemoteObject do not conect to the backend within a Library

2020-12-15 Thread Maria Jose Esteve
Carlos, This has been the solution. Now I have it totally separated: views in the main project and the others in the library. Thank you, you are always there  (I will look for detailed information about this parameter) Thx. Hiedra. -Mensaje original- De: Carlos Rovira

Re: Crux - RemoteObject do not conect to the backend within a Library

2020-12-15 Thread Carlos Rovira
In views the dispatcher use to be the application, and the event is bubbling until reach the app and then it's headed to the controller. For Controller to View is not something that the MVC promote. The right way is controller change the model and then view updates through binding (check TodoMVC

Re: AMF implementation for .NET Standard

2020-12-15 Thread Piotr Zarzycki
Hi Hugo, Nice! :) Maybe share that news also on users mailing list. Thanks, Piotr wt., 15 gru 2020 o 19:55 Carlos Rovira napisał(a): > Hi Hugo, > > I don't use .NET but that's very cool. Thanks for sharing! :) > > El mar, 15 dic 2020 a las 16:43, Hugo Ferreira () > escribió: > > > Hello, > >

Re: AMF implementation for .NET Standard

2020-12-15 Thread Carlos Rovira
Hi Hugo, I don't use .NET but that's very cool. Thanks for sharing! :) El mar, 15 dic 2020 a las 16:43, Hugo Ferreira () escribió: > Hello, > > For those that use .NET as a backend as you know there are not many options > and most have vaniss from the web a long time ago or stopped the >

Re: Crux - RemoteObject do not conect to the backend within a Library

2020-12-15 Thread Carlos Rovira
Hi, I think library needs to add all metadata or that will be lost in compilation -keep-as3-metadata+=Inject,Dispatcher,EventHandler,PostConst ruct,PreDestroy,ViewAdded,ViewRemoved,Bindable,Transient; El mar, 15 dic 2020 a las 0:49, Maria Jose Esteve () escribió: > Hi Carlos, > These are the

RE: Crux - RemoteObject do not conect to the backend within a Library

2020-12-15 Thread Maria Jose Esteve
I'm "catching up" with mvc forgive me if I say something "too wrong". Almost all communication between my controllers and views, as you say, is done through the binded variables of the model, but on occasion I have preferred to dispatch a response event. I will be debugging my mental "mvc",

Re: Date Picker - Disable future dates

2020-12-15 Thread praveen captenarul
Hi Alina, I was trying the disabled option you suggested .So is the option to disable in Jewel only to disable the entire calendar or can we disable part of the dates . Example If today is 12/15 I want only all dates after 12/15 disabled. Regards, Praveen On Wed, Dec 9, 2020 at 9:34 AM Alina

Re: Date Picker - Disable future dates

2020-12-15 Thread Alina Kazi
Hi Praveen, See that's the constructor for DateChooser in jewel. public function DateChooser() { super typeNames = "jewel datechooser"; // default to today selectedDate = new Date(); } if you can create your own custom class extending the current DateChooser and apply these disable changes in the

Re: Date Picker - Disable future dates

2020-12-15 Thread Piotr Zarzycki
I believe you are searching implementation of such bead in Jewel ? https://github.com/apache/royale-asjs/issues/932 śr., 16 gru 2020 o 00:32 Alina Kazi napisał(a): > Hi Praveen, > See that's the constructor for DateChooser in jewel. > public function DateChooser() > { > super > typeNames =

Re: Date Picker - Disable future dates

2020-12-15 Thread Carlos Rovira
Hi Piotr, did you get some advance in that issue implementation? thanks El mié, 16 dic 2020 a las 0:55, Piotr Zarzycki () escribió: > I believe you are searching implementation of such bead in Jewel ? > > https://github.com/apache/royale-asjs/issues/932 > > śr., 16 gru 2020 o 00:32 Alina Kazi