PROP : Removes data-bind property on AttributesTab. 06/22306/1
authornakyoung2.choi <nakyoung2.choi@samsung.com>
Sat, 31 May 2014 09:46:20 +0000 (18:46 +0900)
committernakyoung2.choi <nakyoung2.choi@samsung.com>
Sat, 31 May 2014 09:46:20 +0000 (18:46 +0900)
Change-Id: I601bfabbe410b15fd595f6d434b6da8401d3e122
Signed-off-by: nakyoung2.choi <nakyoung2.choi@samsung.com>
org.tizen.webuibuilder/src/org/tizen/webuibuilder/ui/views/properties/attributes/AttributesTab.java

index deefc9e..5cde73d 100644 (file)
@@ -152,6 +152,9 @@ public class AttributesTab extends PropertiesTabItem {
                     model.getPartDescriptor().getPropertyDescriptors();
 
             for (PropertyDescriptor property : properties) {
+                if (property.getPropertyName().equals("data-bind")) {
+                    continue;
+                }
                 String groupName = property.getCategory();
 
                 CategoryComposite category = getCategory(groupName);