Moonshine 1.5.1 Released

2017-07-31 Thread sankar
We are pleased to announce that Moonshine 1.5.1 has been released. Updates: - Better simulator size for mobile application - Lots of fixes to Ant build procedures Let us know if you encounter any issues with the update. http://moonshine-ide.com -- View this message in context: http://apache-

Re: [FlexJS] Failing build for simple example

2017-08-05 Thread sankar
Josh Tynjala wrote > I'm guessing that you didn't update the compiler before building the SDK. > I > think that fxg-base-class is a somewhat new compiler option. Hi Josh, We downloaded all these following packages fresh before start our Ant SDK build: - flex-asjs - flex-falcon - flex-blazeds - f

Moonshine 1.6.0 Release

2017-10-11 Thread sankar
I am pleased to announce that Moonshine 1.6.0 has been released at http://moonshine-ide.com/ and on the App Store. Added - Useful Links Panel: This panel contains links that may be useful for your development work. More will be added as we find them. - Options to customize the display for the AIR

Re: [FlexJX][Falcon] Binding support fixes/improvements

2016-11-30 Thread sankar
I was recently testing 0.8.0 FlexJS nightly build, and I must say binding is more responsive here than 0.7.0 version. I was testing by the example project 'DataGridExample', and my interest was to see if data binding is working in grid item renderer as well. Is this doable with present nightly buil

Re: [FlexJX][Falcon] Binding support fixes/improvements

2016-11-30 Thread sankar
Alex Harui wrote > You should be able to convert ProductItemRenderer to MXML and use > data-binding, or just have the AS version listen for the appropriate event > fired from the data item. I've tried to create a new MXML component based on DataItemRenderer, but I couldn't even build compiler star

How Apache manages FlexJS version in flex-sdk-description?

2016-11-30 Thread sankar
Apache Flex (FlexJS) 0.7.0 FP23.0 AIR23.0 en_US *4.14.1* 20160905 I was wondering how Apache manages/marks version in flex-sdk-description.xml with it's releases? I noticed that from 0.5.0-0.7.0 and now in recent nightly builds (0.8.0) *version* value is always 4.14.1. While in Flex SDKs the v

Re: How Apache manages FlexJS version in flex-sdk-description?

2016-11-30 Thread sankar
But for proper information purpose if Flex SDK releases comes with appropriate *version* value in flex-sdk-description, doesn't FlexJS SDKs also suppose to come with modified versioning figures (except 4.14.1 everytime)? -- View this message in context: http://apache-flex-development.247.n

Re: [FlexJX][Falcon] Binding support fixes/improvements

2016-12-01 Thread sankar
Alex Harui wrote > But I think there isn't any code that will send itemUpdated if a field in > an item > changes, only if an item changes. Does the above means that if I updates a whole item, it suppose to reflect to the row UI? Does DataGrid has necessary codes to listen itemUpdate event at all,

Re: [FlexJX][Falcon] Binding support fixes/improvements

2016-12-01 Thread sankar
-- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJX-Falcon-Binding-support-fixes-improvements-tp54632p56908.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

Using source class instead of compiled swc

2016-12-02 Thread sankar
Can I use supplied source class in FlexJS SDK instead from the compiled "swc"? For an example, If I want to access *SimpleBinding* API resides at /\frameworks\projects\Binding\src\main\flex\org\apache\flex\binding\SimpleBinding.as/ instead from /\frameworks\libs\Binding.swc/, is that possible some

Why there are same files exists in multiple places?

2016-12-05 Thread sankar
I noticed there are files which exists multiple time with almost no changes. i.e. DataItemRenderer. This file exists multiple time in source folders: 1. https://github.com/apache/flex-asjs/blob/develop/frameworks/projects/Basic/src/main/flex/org/apache/flex/html/supportClasses/DataItemRenderer.as

Re: Why there are same files exists in multiple places?

2016-12-05 Thread sankar
Carlos Rovira-3 wrote > Hi Sankar > > 1. Why the 'Basic' and 'HTML' folders when holding almost same files? >> > > Basic is a deprecated project. When Alex and Harbs made the sprite > refactor > it was disconnected from build. I think Alex is worki

Re: [FlexJX][Falcon] Binding support fixes/improvements

2016-12-05 Thread sankar
Can Peter or anyone from Apache dev suggest where the present development stays for runtime data update to DataGrid component, or even any specific beads way already available, as discussed in earlier comments/queries? I think it's very much essential to me as a Flex developer to have the runtime

[Fix] Uploaded patch to JIRA issue

2016-12-05 Thread sankar
Recently I've found an issue when extending DataItemRenderer as MXML broke the application. Here's the JIRA issue - https://issues.apache.org/jira/browse/FLEX-35190. I've updated my patch to fix this. Please, review. -- View this message in context: http://apache-flex-development.247.n4.na

Re: Using source class instead of compiled swc

2016-12-06 Thread sankar
Alex Harui wrote > Any classes found in the source-path will be used instead of classes in a > SWC. That is the basis of "monkey-patching". I'm not very clear, but are you saying that when I declare a \frameworks\projects\Binding\src\main\flex\org\apache\flex\binding\SimpleBinding.as" instead fro

Re: [FlexJX][Falcon] Binding support fixes/improvements

2016-12-06 Thread sankar
PKumar wrote > @Sankar, FlexJS binding support is not similar to regular Flex SDK > binding and FlexJS DataGrid. FlexJS having the supported classes for > runtime data update in DataGrid and dataprovider. If you need the sample > code. i will check in my demo list & share with y

[FlexJS] Is there a way to auto-select row in DataGrid?

2016-12-11 Thread sankar
I seen DataGrid.selectedIndex is a read-only property in FlexJS. Is there a way to select one or multiple rows without user's click? Thanks. -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-Is-there-a-way-to-auto-select-row-in-DataGrid-tp57167.html

Re: [FlexJX][Falcon] Binding support fixes/improvements

2016-12-11 Thread sankar
sankar wrote > > PKumar wrote >> @Sankar, FlexJS binding support is not similar to regular Flex SDK >> binding and FlexJS DataGrid. FlexJS having the supported classes for >> runtime data update in DataGrid and dataprovider. If you need the sample >> code. i will

Filter function to ArrayList?

2016-12-14 Thread sankar
In conventional application we often found a list/grid with a search text box. This was easy to handle and filter the collection in Flex SDK, and affect the list/grid UI per it's binding. > private function filterCollectionOnTextSearch():void > { > gridArrayCol

Re: Filter function to ArrayList?

2016-12-22 Thread sankar
JoelProminic wrote > Define a new bead, say FilterDataProvider, with a "filter" field. This > would implement ICollection or IArrayList so that the methods return the > filtered data instead of the actual data. > > When this bead is added to a container, it would use the current > dataProvider

[FlexJS] Nightly build 0.8.0 Ant build failed

2016-12-27 Thread sankar
Today I downloaded most recent files from Git and tried to build the 'frameworks' package but followed by these errors: > : [compc] > E:\ApacheFlexJSFrameworkSource\source\flex-asjs\frameworks\projects\Basic\src\main\flex\org\apache\flex\core\UIBase.as(1509): > col: 38 Error: Incompatible overrid

Re: [FlexJS] Nightly build 0.8.0 Ant build failed

2016-12-28 Thread sankar
I checkout fresh copy of flex-typedefs from: https://github.com/apache/flex-typedefs. Upon building I hit by following error: > BUILD FAILED > E:\ApacheFlexJSFrameworkSource\source\flex-typedefs\build.xml:52: T > he following error occurred while executing this line: > E:\ApacheFlexJSFrameworkSou

Re: [FlexJS] Nightly build 0.8.0 Ant build failed

2016-12-28 Thread sankar
It didn't worked for me updating only 'flex-falcon' and 'flex-typedefs' - they bring other Ant file errors. Finally I able to do a successful build after deleting everything and checkout fresh copy of 'flex-asjs' and run it's Ant files. -- View this message in context: http://apache-flex-devel

[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: [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 ? >

[FlexJS] Probable design to support DataGrid sorting

2017-01-04 Thread sankar
/This has been discussed in Apache JIRA: https://issues.apache.org/jira/browse/FLEX-35222/ I spent sometime to implement a custom approach to the FlexJS DataGrid sorting. At this moment it's in it's very initial stage but able to do column sorts at runtime along with notification icon (ascending/d

Re: [FlexJS] Probable design to support DataGrid sorting

2017-01-05 Thread sankar
Alex Harui wrote > I'm wondering though, from the description below, is there a model bead > involved somewhere? I would expect to have a model bead store the sort > information (which column is being sorted, and whether ascending or > descending. That way the customer can set the model to have

Re: [FlexJS] Probable design to support DataGrid sorting

2017-01-05 Thread sankar
On a second thought, you probably tried to refer DataGridPresentationModel rather than DataProviderModel (DataProviderModel, which I thought initially). Yes, it's a good place to store the information about which column last sorted and ascending/descending value. But that may require me to modify t

Re: [FlexJS] Probable design to support DataGrid sorting

2017-01-05 Thread sankar
Accessing DataGridPresentationModel from DataGridButtonBarButtonItemRenderer seems quite tough even though it could be a nice place to store those information. To get DataGridPresentationModel I'll need to access their multiple parents as DataGridButtonBarButtonItemRenderer.parent.parent.parent w

Re: [FlexJS] Probable design to support DataGrid sorting

2017-01-05 Thread sankar
piotrz wrote > Maybe StrandUtils will help you. Hi again Piotr, It seems all the parameters are required here - StrandUtils.loadBead(..). Do we need to supply all parameters as valid value? Can you suggest with a demo example? -- View this message in context: http://apache-flex-development.23

[FlexJS] Data-binding fails when following multiple references

2017-01-08 Thread sankar
Hi, I've reported this issue to JIRA at: https://issues.apache.org/jira/browse/FLEX-35227. Basically, binding to UI components do not works when following multiple class references. i.e. following thing should work: ** But this won't: ** Even if both the fields (fieldA, fieldB) has it's bindi

Re: [FlexJS] Data-binding fails when following multiple references

2017-01-08 Thread sankar
Alex Harui wrote > How are the three elements defined? IOW: what is anyClass, a variable, a > getter/setter, a [Bindable]? What about subClass? > > Where there any warnings in the compiler output? Here is an example code snippets that should demonstrate the problem I described above. MyIniti

Re: [FlexJS] Data-binding fails when following multiple references

2017-01-08 Thread sankar
Sounds great! Thank you, Piotr! -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-Data-binding-fails-when-following-multiple-references-tp58022p58031.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

[FlexJS] Does BindableCSSStyles requires any particular way of implementation?

2017-01-09 Thread sankar
I tried by a pretty basic code, the BindableCSSStyle, but it didn't worked in my tests. Does it needs any particular way to implement? Following is the source: > http://ns.adobe.com/mxml/2009"; >xmlns:js="library://ns.apache.org/flexjs/basic"> > > > >

Re: [FlexJS] Does BindableCSSStyles requires any particular way of implementation?

2017-01-09 Thread sankar
I noticed this method never fires inside BindableCSSStyles class. Is it supposed to be? public function set watchedProperty(value:Object):void { if (_value !== value) { _value = value; if (_strand is IBeadView) IBeadView(_strand).

Re: [FlexJS] Runtime error when setting a property to a constant value

2017-01-09 Thread sankar
I was reading through this mailing thread. Recently I've created a post http://apache-flex-development.247.n4.nabble.com/FlexJS-Does-BindableCSSStyles-requires-any-particular-way-of-implementation-td58040.html against BindableCSSStyles class problem, and I noticed that LayoutChangeNotifier's /w

Re: [FlexJS] Data-binding fails when following multiple references

2017-01-09 Thread sankar
PKumar wrote > I checked the same scenario with minor changes. You need to use bit more > code to achieve the binding in FlexjS. use following code to achieve > correct binding behavior, > > [Bindable] * > public * > var anyClass:ClassA = new ClassA(); > protected function onTextInputChangeA(ev

Re: [FlexJS] Does BindableCSSStyles requires any particular way of implementation?

2017-01-09 Thread sankar
Alex Harui wrote > What does the click handler do? When a BindableCSSStyles property > changes, the watchedProperty should change. I'm thinking there is a > problem with the binding code still. Yes, for test purpose I'm trying to change the property inside BindableCSSStyles through button click

Re: [FlexJS] Data-binding fails when following multiple references

2017-01-09 Thread sankar
Actually the above scenario was always working in my tests also, previously, when you binding a field to an UI component in single reference way, i.e., {anyClass.fieldName}*"/> But, this never works if you the field name comes after multiple references, i.e., {anyClass.anotherClass.fieldName}*"/>

Re: [FlexJS] Data-binding fails when following multiple references

2017-01-10 Thread sankar
piotrz wrote > Yes I know, but I've started to investigate why you need to dispatch any > events from VO class in order to have workable Binding. This is how field binding to UI component has demonstrated in the example(s) that supplied within Apache FlexJS SDK. I followed that only; And I vaguely

[FlexJS] Probable design to support enable/disable state to TextInput

2017-01-10 Thread sankar
/This issue originally reported at: https://issues.apache.org/jira/browse/FLEX-35049./ In the above JIRA issue, Alex suggested this can be achieve through a new bead implementation. I spent sometime today to create a new bead which suppose to avail the feature in both SWF and HTML run. The bead cl

Re: [FlexJS] Data-binding fails when following multiple references

2017-01-10 Thread sankar
I'm from India Piotr. :) -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-Data-binding-fails-when-following-multiple-references-tp58022p58082.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

[FlexJS] TextInput restrict

2017-01-11 Thread sankar
Hi, Is there any existing bead available to restrict text input to TextInput component? Thanks! -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-TextInput-restrict-tp58141.html Sent from the Apache Flex Development mailing list archive at Nabble.com

Re: [FlexJS] TextInput restrict

2017-01-11 Thread sankar
Thanks Chris and Peter. Indeed 'accessories' has some TextInput beads. One bead that attract me particularly for this purpose is NumericOnlyTextInputBead. But unfortunately even it's worked in SWF it's broken into HTML. I've created a new RestrictInputBead now which should support all those purpo

Re: [FlexJS] TextInput restrict

2017-01-11 Thread sankar
Here is the JIRA link to a review request: https://issues.apache.org/jira/browse/FLEX-35241. Thanks! -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-TextInput-restrict-tp58141p58155.html Sent from the Apache Flex Development mailing list archive at

Re: [FlexJS] Probable design to support enable/disable state to TextInput

2017-01-12 Thread sankar
How can I restrict the mouse events to TextInput's TextField? I saw /TextField.mouseEnabled = false/ didn't helped. /mouseChildren/ also not available. Is there any way I can prevent the internal TextField's mouse activities in a TextInput component? Thanks! -- View this message in context:

[FlexJS] Popup

2017-01-18 Thread sankar
Hi, Is there any valid popup implementation is in development, which looks more like a popup having modal background, opens center of the screen, adds custom views etc.? SimpleAlert is too simple in this case. Thanks! -- View this message in context: http://apache-flex-development.247.n4.

Re: [FlexJS] Popup

2017-01-19 Thread sankar
Carlos Rovira wrote > MDL Dialog does exactly that you can see that here: > http://s.apache.org/MDLExample These examples looks fantastic, Carlos! :D NOOB questions (since I'm not much aware of the development at mdl side), 1. I see mdl has a new xmlns in the given mxml files. Is is something goi

Re: [FlexJS] Popup

2017-01-19 Thread sankar
Aha! I just noticed it's already in FlexJS examples folder. It's nothing that is developing behind the curtain and still need to be available! I see it's the .css which suppose to make things difference. I'm trying to run the project in Moonshine now :) Thanks! -- View this message in context:

Re: [FlexJS] Popup

2017-01-19 Thread sankar
I'm having some trouble running the example, though. When I tried to run as swf, I followed by these errors: > TypeError: Error #1007: Instantiation attempted on a non-constructor. > at > org.apache.flex.core::SimpleCSSValuesImpl/generateCSSStyleDeclarations()[E:\DevareaLocal\ApacheFlexJSFra

Re: [FlexJS] Popup

2017-01-19 Thread sankar
Hi Piotr, Thanks for the information. Anyway we're more interested to the HTML output :) But the HTML build is messed up UI and styles. I updated my FlexJS framework source sometime back and the examples were came within it. I'm not sure what goes wrong. Thanks! -- View this message in contex

Re: [FlexJS] Popup

2017-01-19 Thread sankar
I noticed that given example source application file was started with . But the running example to Apache server for MDL has it . So I downloaded the source of the project from http://apacheflexbuild.cloudapp.net:8080/job/MDLExample/lastSuccessfulBuild/artifact/examples/flexjs/MDLExample/. When

Re: [FlexJS] Popup

2017-01-19 Thread sankar
Carlos, sounds great! Thank you for this nice implementation! I shall update my local sources to give it a run. I think this implementation will answer many UI issues that we are aware in FlexJS framework. And this is more modernized UI than basic FlexJS styles. I'm a little curious though, I se

Re: [FlexJS] Popup

2017-01-19 Thread sankar
Carlos Rovira-3 wrote > Right, many of the MDL controls are extensions from the HTML ones. Others > don't have counterpart. So as I see in MDL the UI components were complete re-work than what we have in HTML package of FlexJS. MDL has different codes and approach to the problems. So I wonder a fe

Re: [FlexJS] Data-binding fails when following multiple references

2017-01-19 Thread sankar
I updated with latest compiler, and I confirm it's working fantastic! Thank you for yours effort Alex, Piotr. I've updated the JIRA issue as well. Thanks! -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-Data-binding-fails-when-following-multiple-r

Re: [FlexJS] Popup

2017-01-19 Thread sankar
I just updated my local copy to latest compiler. When I tried testing the MDLExample, my HTML output seems messed-up. Here's the screenshot link:https://i.imgsafe.org/1bf652697c.png. It looks like styles not available. Here's the application file codes, and I had no error during compilation. I t

Re: [FlexJS] Popup

2017-01-20 Thread sankar
piotrz wrote > In order to use MDL you have to use default template which contains links > to the JS code of MDL. This default template along with default css style > you can find in your downloaded FlexJS SDK folder: > "examples\flexjs\MDLExample\src\main\resources\". Hi Piotr, I'm already using

Re: [FlexJS] Popup

2017-01-20 Thread sankar
piotrz wrote > Are you using Flash Builder with command line compilation ? You need to > add > > -compiler.exclude-defaults-css-files=HTML.swc:defaults.css > -html-template=${basedir}/src/main/resources/mdl-js-index-template.html Piotr, After your previous comment to look into build.xml/pom.xml

Re: [FlexJS] Popup

2017-01-20 Thread sankar
piotrz wrote > Are you using Flash Builder with command line compilation ? You need to > add > > -compiler.exclude-defaults-css-files=HTML.swc:defaults.css > -html-template=${basedir}/src/main/resources/mdl-js-index-template.html Piotr, After your last comment to check build/pom.xml I noticed th

Re: [FlexJS] Popup

2017-01-20 Thread sankar
Now when I able to run the MDLExample project through Moonshine IDE with additional compiler arguments those were requires, I saw the wrapper HTML now taking it's template content from mdl-js-index-template.html file. But yet, it is not rendering expectedly, styles were broken. When I tried to co

Re: [FlexJS] Popup

2017-01-20 Thread sankar
Hi Carlos, I manually edit/add the following lines in mdl-js-index-template.html file to make the example work running from an IDE. Maybe Ant build file adds those lines at runtime, but I didn't have newly added lines in template file: /Edited/ https://code.getmdl.io/1.3.0/material.indigo-pink.mi

Re: [FlexJS] Popup

2017-01-20 Thread sankar
Hi Carlos, Yes, I've seen those style reference in pom.xml file. I was in need to run the project in an IDE, I made the modification in the template html file. Regarding the dialog polyfill style class insertion, I tried to omit those two style reference from the template file and run, that break

Re: git commit: [flex-asjs] [refs/heads/develop] - MDL Table component and example initial implementation

2017-01-24 Thread sankar
Hi, Somehow I manage to work adding new rows to the MDL Table component at runtime. It works great, but I saw one particular style is not affecting to the newly added item renderer component from it's parent (Table) - checkbox/select. Initial table code is simple: > className="customTableRowIte

Re: git commit: [flex-asjs] [refs/heads/develop] - MDL Table component and example initial implementation

2017-01-24 Thread sankar
Few more queries on these, 1. When a Table has selectable=true, how can I get the event when a particular item being selected? 2. How can I get the list of items being selected? 3. Is there any way to make a row selected other than selecting by it's checkbox? I have another query but with Cards

Re: git commit: [flex-asjs] [refs/heads/develop] - MDL Table component and example initial implementation

2017-01-24 Thread sankar
And as I continuing my queries :) 4. How can I make Table has specific height and vertically scrolled? -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Re-git-commit-flex-asjs-refs-heads-develop-MDL-Table-component-and-example-initial-implementation-tp58260

Re: git commit: [flex-asjs] [refs/heads/develop] - MDL Table component and example initial implementation

2017-01-25 Thread sankar
Hi Carlos, I do agree for the first phase of release, whatever you did, is spell bounding. And there is no question on that. I'll be happy to help you to make the MDL components more feature-rich per real-life application needs. Although, I'm not very familiar with JavaScript/CSS parts but tryin

Re: git commit: [flex-asjs] [refs/heads/develop] - MDL Table component and example initial implementation

2017-01-25 Thread sankar
One more question, Carlos. Is the said pagination available to present Table component state? Thanks! -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Re-git-commit-flex-asjs-refs-heads-develop-MDL-Table-component-and-example-initial-implementation-tp58260p

Re: git commit: [flex-asjs] [refs/heads/develop] - MDL Table component and example initial implementation

2017-01-25 Thread sankar
-- View this message in context: http://apache-flex-development.247.n4.nabble.com/Re-git-commit-flex-asjs-refs-heads-develop-MDL-Table-component-and-example-initial-implementation-tp58260p58692.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

Re: git commit: [flex-asjs] [refs/heads/develop] - MDL Table component and example initial implementation

2017-01-25 Thread sankar
I maybe thinking ahead of time and my abilities, and maybe you already had explored these parts and possibilities, Carlos, while searching Table height/checkbox-generation, selection etc. I came through this modified version of MDL Table, at here: https://github.com/daniel-nagy/md-data-table. Do

Re: git commit: [flex-asjs] [refs/heads/develop] - MDL Table component and example initial implementation

2017-01-26 Thread sankar
I added a new listener into TextField component to listen Enter key (as I haven't found one except text change); If this helps, Carlos. Initially I tried to add a Function type of field in TextField component (i.e. public var enter:Function;), but I had many unknown problems setting the field valu

Re: git commit: [flex-asjs] [refs/heads/develop] - MDL Table component and example initial implementation

2017-01-27 Thread sankar
If I'm not wrong, present FlexJS MDL style is little out-of-date. I found this link to MDL git site, where it's mentioned that 'mdl-data-table--selectable' use is deprecated. But present FlexJS Table class still using this specific style: https://github.com/google/material-design-lite/wiki/Deprecat

Re: [FlexJS] Data-binding fails when following multiple references

2017-01-29 Thread sankar
It looks like data binding is terribly broken in MDL components. Any plan to work on this soon? Thanks! -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-Data-binding-fails-when-following-multiple-references-tp58022p58785.html Sent from the Apache

Re: [FlexJS] Data-binding fails when following multiple references

2017-01-30 Thread sankar
Hi Piotr, Carlos, Thanks for replying. I understand that the things now in random testing phase and some functionalities may found still not implemented, i.e. bracketed binding to some components. I shall plan to create JIRA issue with examples for yours easy. Talking something else, I was won

[FlexJS] MDL requires JS:Container type of component

2017-01-30 Thread sankar
The requirement was pretty basic. Place the contents/components horizontally or vertically and some alignment. I tried to use The above usage always output contents laying vertically. Following is a screenshot of above c

Re: [FlexJS] MDL requires JS:Container type of component

2017-01-31 Thread sankar
Hi Carlos, I read your comment in other thread. But it's confusing me. Isn't Span, Div, H1 etc. tag are part of the HTML SWC? I see the MDLExample project also uses JS:Div etc. tags in places. You probably suggested to cut-off uses of any UI components from HTML SWC like js Label etc. I trie

Re: [FlexJS] MDL requires JS:Container type of component

2017-01-31 Thread sankar
Ok. I able to come up with something that I was trying for (components laying horizontally and aligned vertically): These also use HTML SWC API; and I didn't seen any plain Label type of component to MDL, so I generally using js:TextNode. Is there something else avail

Re: [FlexJS] MDL requires JS:Container type of component

2017-01-31 Thread sankar
Hi Carlos, Thank you for your notes. Yes, I do follow the MDLExample project only, but sometime sort of things missed my attention and some properties I'm not aware of (as no API docs still available), i.e. border=true :) Carlos Rovira wrote > https://github.com/T00rk/bootstrap-material-datetim

Re: [FlexJS] MDL requires JS:Container type of component

2017-02-01 Thread sankar
Hi Carlos, Thank you for your detailed reply on queries. I was looking into the date-chooser control and was trying to add a new MDL component calling date-chooser API. But I don't know how to write this in ActionScript: > $('document').ready(function() > { > $('#mdlMyTextField').bootstrap

Re: [FlexJS] MDL requires JS:Container type of component

2017-02-01 Thread sankar
sankar wrote > Can you give some idea how to head to this? I think I able to find how to work to this. It's running nice! Thanks! -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-MDL-requires-JS-Container-type-of-component-tp58822p58

Re: [FlexJS] Data-binding fails when following multiple references

2017-02-05 Thread sankar
Hi Piotr, Sorry it's my bad. I was busy lately with other things running here. I shall plan to putup a demo with MDL on binding problems. I shall let you know. At present I'm updating recent source from Apache repository. Thanks! -- View this message in context: http://apache-flex-develo

Re: [FlexJS] Popup

2017-02-05 Thread sankar
Hi, I'm trying to update recent source from Apache repository. When trying to build 'flex-asjs' source, I've turned to following error. Does anybody has any inside how to overcome this? > compile-js-swc: > [echo] Compiling target/MaterialDesignLiteJS.swc > [echo] FLEX_HOME: E:\ApacheFl

Re: [FlexJS] Popup

2017-02-05 Thread sankar
sankar wrote > I'm trying to update recent source from Apache repository. When trying to > build 'flex-asjs' source, I've turned to following error. Does anybody has > any inside how to overcome this? I able to overcome the above problem by updating other folders than

Re: [FlexJS] Data-binding fails when following multiple references

2017-02-06 Thread sankar
Hi Piotr, I've created a JIRA issue pointing bracketed binding problems to MDL components. You can find it at here: https://issues.apache.org/jira/browse/FLEX-35256 Please, take a look. Thanks! -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-Dat

Re: [FlexJS] Data-binding fails when following multiple references

2017-02-07 Thread sankar
piotrz wrote > I just resolved your jira. Take a look into the comments and let me know > if anything is wrong. Hi Priotr, I just looked into. Most of the components now working nicely! Thanks! Yet a few components missing their bracketed binding ways. If you please take a look into my findings a

Re: [FlexJS] Data-binding fails when following multiple references

2017-02-09 Thread sankar
piotrz wrote > Put into model only one model and it should work. Hi Priotr, I'm okay with adding only one model class in tag. I also tested if I declare an external class having data for Table component in tag and then bind to Table component, that does work. But Tabs and TabBar component sti

Re: [FlexJS] Data-binding fails when following multiple references

2017-02-12 Thread sankar
Hi Piotr, Sure, if we need to move early (than you fix) we'll probably need to move with the basic proven way of binding (to tab type of components). But I'm afraid some of the application here based on rendering dynamic data. Thus tabs and some other items shall be drawn after data available to t

Re: [FlexJS] MDL List problems

2017-02-14 Thread sankar
Hi, Why the List component missing features like roll-over and selection? I know these features wasn't available to original MDL library List component too, but isn't this a bit odd? A general List component is very unlike to not have these usual features! Is there any beads or some CSS can add

Re: [FlexJS] MDL List problems

2017-02-14 Thread sankar
Hi Carlos, Yes, I do understand what you and Piotr did already, is fantastic. Availability of kind of stuff to FlexJS scene to render HTML, is just marvelous. I also understand that it's only done it's first phase of development and things like features can be added as we progress. I already in

Re: [FlexJS] Data-binding fails when following multiple references

2017-02-15 Thread sankar
Great Piotr, Thank you! I shall give it a try soon possible! I'll keep you updated. Thanks! -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-Data-binding-fails-when-following-multiple-references-tp58022p59506.html Sent from the Apache Flex Developm

[FlexJS] MDL: Add/Remove item(s) to TabBar

2017-02-15 Thread sankar
/(*Note:* I've tested by new fix pushed by Piotr recently to TabBar bracketed binding source reported at: https://issues.apache.org/jira/browse/FLEX-35256)/ Hi, I have a requirement to add/remove tabs to TabBar component at runtime. Although by recent fix from Piotr for bracketed binding to TabB

Re: [FlexJS] MDL: Add/Remove item(s) to TabBar

2017-02-15 Thread sankar
Hi Piotr, I shall report with a project example. Thanks! -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-MDL-Add-Remove-item-s-to-TabBar-tp59508p59512.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

Re: [FlexJS] MDL: Add/Remove item(s) to TabBar

2017-02-15 Thread sankar
Here's the issue number Piotr - https://issues.apache.org/jira/browse/FLEX-35268. Thanks! -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-MDL-Add-Remove-item-s-to-TabBar-tp59508p59513.html Sent from the Apache Flex Development mailing list archive a

Re: [FlexJS] MDL: Add/Remove item(s) to TabBar

2017-02-15 Thread sankar
Hi Piotr, No, it was my first time. I tried by very basic codes (before you fixed bracketed binding to TabBar). My codes were like this: ... ... ... // in model class [Bindable(event="componentsTabsUpdated")] public function get componentsTabs():Array {

Re: [FlexJS] MDL: Add/Remove item(s) to TabBar

2017-02-16 Thread sankar
Also, I was thinking if there's a way possible to implement to programmatically 'active' certain section in *NavigationLayoutContent* (?) I was thinking to do a different component (i.e. breadcrumb) which should have similar structure in use like NavigationLayoutContent, but I'm not sure how to mak

Re: [FlexJS] MDL: Add/Remove item(s) to TabBar

2017-02-16 Thread sankar
sankar wrote > Also, I was thinking if there's a way possible to implement to > programmatically 'active' certain section in * > NavigationLayoutContent * > (?) Nevermind, I've created a method which does the job now. Thanks! -- View this message in context:

[FlexJS] MDL - Dynamic Child Problem

2017-02-17 Thread sankar
Hi, There's a critical and major problem exists with dynamic child creation in MDL structure. I've reported this to JIRA at: https://issues.apache.org/jira/browse/FLEX-35269. Request to look into this once. Thanks! -- View this message in context: http://apache-flex-development.247.n4.

Re: [FlexJS] MDL - Dynamic Child Problem

2017-02-17 Thread sankar
Hi Carlos, Is this makes some sense? - http://stackoverflow.com/questions/32363511/how-can-i-update-refresh-google-mdl-elements-that-i-add-to-my-page-dynamically (the answer part). I'm not very familiar with DOM development, though. Thanks! -- View this message in context: http://apache-flex-

Re: [FlexJS] MDL - Dynamic Child Problem

2017-02-17 Thread sankar
I think this should be an answer what they already mentioned in the original MDL library page: I also found somewhere at Stackoverflow people discussing on this, someone suggested this: > For future readers and use

Re: [FlexJS] MDL - Dynamic Child Problem

2017-02-19 Thread sankar
piotrz wrote > Deeper investigation points me to componentHandler.register method - It > looks like created component need to be registered and maybe than > upgradeElement method will work. > > Method register take: > > /** > * Describes the type of a registered component type managed by > * co

Re: [FlexJS] MDL - Dynamic Child Problem

2017-02-20 Thread sankar
Hi Piotr, Thanks for the update. Previously I was updating dataProvider by using but it anyway required me to change something in TabBar source. Your fixed example showing more cleaner procedure now. I shall use that. I shall update my local source soon, hopefully dynamic child problem will reso

  1   2   >