Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 6B3D8200C19 for ; Sun, 12 Feb 2017 18:39:47 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 69E34160B6B; Sun, 12 Feb 2017 17:39:47 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id B3A0D160B51 for ; Sun, 12 Feb 2017 18:39:46 +0100 (CET) Received: (qmail 79764 invoked by uid 500); 12 Feb 2017 17:39:46 -0000 Mailing-List: contact issues-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list issues@flex.apache.org Received: (qmail 79755 invoked by uid 99); 12 Feb 2017 17:39:45 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 12 Feb 2017 17:39:45 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 595191A045E for ; Sun, 12 Feb 2017 17:39:45 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -1.199 X-Spam-Level: X-Spam-Status: No, score=-1.199 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id XaajHjyUuEIb for ; Sun, 12 Feb 2017 17:39:44 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id 034135F3BF for ; Sun, 12 Feb 2017 17:39:44 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 349B8E012C for ; Sun, 12 Feb 2017 17:39:43 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 67EFE21D64 for ; Sun, 12 Feb 2017 17:39:42 +0000 (UTC) Date: Sun, 12 Feb 2017 17:39:42 +0000 (UTC) From: "Piotr Zarzycki (JIRA)" To: issues@flex.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (FLEX-35256) [FlexJS] MDL - Bracketed binding is broken to various components MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Sun, 12 Feb 2017 17:39:47 -0000 [ https://issues.apache.org/jira/browse/FLEX-35256?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15862890#comment-15862890 ] Piotr Zarzycki commented on FLEX-35256: --------------------------------------- [~santanu4ver], Issue with bracketed binding in Tabs is fixed in 51cdd613de1879c3fbe99bb6c3e07b845517ffe1. Let me know whether it's working for you. Piotr > [FlexJS] MDL - Bracketed binding is broken to various components > ---------------------------------------------------------------- > > Key: FLEX-35256 > URL: https://issues.apache.org/jira/browse/FLEX-35256 > Project: Apache Flex > Issue Type: Bug > Affects Versions: Apache FlexJS 0.8.0 > Reporter: Devsena > Assignee: Piotr Zarzycki > Fix For: Apache FlexJS 0.8.0 > > Attachments: NonWorkingBindingInMDL.zip > > > Bracketed binding is broken to many a components in FlexJS MDL implementation. Lately this bracketed binding mostly fixed now to FlexJS regular components. The kind of approach/output also expects from the MDL components as well. > I'm attaching herewith a project, running which almost shows nothing but some bounding boxes (components) without texts; Since they will all fail to render data/values in a bracketed binding way. Here's some details what components were taken to this example and what they were suppose to do. Although, not to making longer the demo example I tried to show by a few components only. But this problem may applies to almost all the components to MDL. > *Table binding* > Suppose to render a demo _Table_ component. It _dataProvider_ declared in following way instead of using any _SimpleBinding_ or _ConstantBinding_ tags. Not works. > {code} > dataProvider="{tableModel.materials}" > {code} > *List binding* > A simple List component tried to bind it's _dataProvider_ to an array declared in same page. Not works. > *Button text binding* > MDL Button that tried to bind it's _text_ property to a locally declared String field. Not works. > *Button 2 text binding* > MDL button that tries to bind it's _text_ property that declared in another class. Not works. > {code} > text="{classA.subFieldClassA}" > {code} > The above button click also sets/changes value in another class' field, which binds to next component. > *TextField binding* > TextField _text_ that binds to an external class' String field; The value suppose to change when previous button clicked. Not works. > *InnerHTML binding* > InnerHTML components _text_ field also not works when supplied it's value in a bracketed binding way. > *H4 binding* > Local String field binding even not works. > *Tabs binding* > If I use Tab component and if try to feed it's _dataProvider_ in bracketed way, that breaks my application in HTML run throwing following error. So I choose not to include that component here, but this also requires a fix. > {panel} > Uncaught TypeError: Cannot read property 'flexjs_wrapper' of undefined > {panel} > Thank you! -- This message was sent by Atlassian JIRA (v6.3.15#6346)