Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Lorenzo2016-12-16 09:47:18 +0000
committerGerrit Code Review @ Eclipse.org2016-12-16 11:58:49 +0000
commita7c20a24ca00590c455903411e20db554a05f771 (patch)
tree29b6c099ce81bd93b4dc928630d9c2141ca48fd5
parentb49a43327cb7e7a5a94a704ee76be4a1156f38fa (diff)
downloadorg.eclipse.papyrus-a7c20a24ca00590c455903411e20db554a05f771.tar.gz
org.eclipse.papyrus-a7c20a24ca00590c455903411e20db554a05f771.tar.xz
org.eclipse.papyrus-a7c20a24ca00590c455903411e20db554a05f771.zip
508975: [Table][Documentation] The table user and developper documentation must be updated - add some informations about table in Property View
Signed-off-by: Vincent Lorenzo <vincent.lorenzo@cea.fr>
-rw-r--r--plugins/doc/org.eclipse.papyrus.infra.nattable.doc/src/site/mediawiki/tableDevDoc.mediawiki6
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/doc/org.eclipse.papyrus.infra.nattable.doc/src/site/mediawiki/tableDevDoc.mediawiki b/plugins/doc/org.eclipse.papyrus.infra.nattable.doc/src/site/mediawiki/tableDevDoc.mediawiki
index 4409540b480..1c773fc456e 100644
--- a/plugins/doc/org.eclipse.papyrus.infra.nattable.doc/src/site/mediawiki/tableDevDoc.mediawiki
+++ b/plugins/doc/org.eclipse.papyrus.infra.nattable.doc/src/site/mediawiki/tableDevDoc.mediawiki
@@ -2362,8 +2362,12 @@ The classes managing the NatTable widget in the property view are:
These tables have some custom behaviors:
* the tree table is always expand all ath the beginning
+* <pre style="color:red">the table will use percentage sizing for the columns display, excepted if you set a BooleanNamedStyle columnsWidthAsPercentage to false has a child of your TableConfiguration.</pre>
* the table are not really persisted, but we keep the user configuration for a given table opened on an object of a given EClass. See
-<code>org.eclipse.papyrus.uml.properties.widgets.NattablePropertyEditor.createTableURI(EObject, TableConfiguration)</code> for further information.
+<code>org.eclipse.papyrus.uml.properties.widgets.NattablePropertyEditor.createTableURI(EObject, TableConfiguration)</code> for further information.
+* <pre style="color:red"> So during your table development, you need to clear your workspace each time to test your table configuration, or you need to remove your table instance from the location yourRuntimeWorkspace/.metadata.plugins/org.eclipse.papyrus.uml.properties/tables.</pre>
+
+
=Enhancements to plan for a next table version=
*allow to a user/developper to add a new AxisManager to an existing table. Currently it is not possible, because the java AxisManager are represented in the nattableconfiguration file by an AxisManagerRepresentation. This one provides several configuration to the AxisManager, like LabelProvider to use

Back to the top