mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
. Dashboards impl checkpoint
- beginnings of the dashboard configuration wizard (layouts) - icons for various layouts (a bit of Photoshop fun) - working layouts for single column, 2 column left and right narrow, three column . Added "immediate" attribute to ActionLink component - same functionality as for standard JSF Command Button . Fixed Wizard container.jsp to use "immediate=true" on Cancel button git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@3354 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -57,7 +57,7 @@ public class ActionLinkTag extends HtmlComponentTag
|
||||
setStringProperty(component, "value", this.value);
|
||||
setStringProperty(component, "target", this.target);
|
||||
setStringProperty(component, "onclick", this.onclick);
|
||||
|
||||
setBooleanProperty(component, "immediate", this.immediate);
|
||||
// TODO: Add image width/height properties
|
||||
}
|
||||
|
||||
@@ -77,6 +77,7 @@ public class ActionLinkTag extends HtmlComponentTag
|
||||
this.href = null;
|
||||
this.target = null;
|
||||
this.onclick = null;
|
||||
this.immediate = null;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -178,6 +179,11 @@ public class ActionLinkTag extends HtmlComponentTag
|
||||
{
|
||||
this.onclick = onclick;
|
||||
}
|
||||
|
||||
public void setImmediate(String immediate)
|
||||
{
|
||||
this.immediate = immediate;
|
||||
}
|
||||
|
||||
/** the target */
|
||||
private String target;
|
||||
@@ -208,4 +214,7 @@ public class ActionLinkTag extends HtmlComponentTag
|
||||
|
||||
/** the onclick handler */
|
||||
private String onclick;
|
||||
|
||||
/** the immediate flag */
|
||||
private String immediate;
|
||||
}
|
||||
|
Reference in New Issue
Block a user