Eindeutige Id's CC (#1699)
erledigt git-svn-id: https://svn.libreccm.org/ccm/trunk@2460 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
edd6971282
commit
e85fde631b
|
|
@ -75,6 +75,8 @@ import com.arsdigita.web.Web;
|
|||
*/
|
||||
public class ContentSectionContainer extends CMSContainer {
|
||||
|
||||
private static final String CONTENT_SECTION_CLASS = "contentSections";
|
||||
|
||||
private ContentSectionTable m_table;
|
||||
private FormContainer m_formContainer;
|
||||
private SingleSelectionModel m_typeSel;
|
||||
|
|
@ -97,6 +99,7 @@ public class ContentSectionContainer extends CMSContainer {
|
|||
public ContentSectionContainer(SingleSelectionModel typeSel,
|
||||
SingleSelectionModel sectionSel) {
|
||||
super();
|
||||
setClassAttr(CONTENT_SECTION_CLASS);
|
||||
|
||||
m_typeSel = typeSel;
|
||||
m_sectionSel = sectionSel;
|
||||
|
|
|
|||
|
|
@ -103,6 +103,7 @@ public class TasksPanel extends CMSContainer {
|
|||
private StringParameter m_sortTypeParam;
|
||||
private StringParameter m_lockFilterParam;
|
||||
// control link variable
|
||||
private static final String TASK_PANEL_CLASS = "taskPanel";
|
||||
private static final String TASK_ACTION = "taskAction";
|
||||
private static final String SORT_DOWN = "sortActionUp";
|
||||
private static final String SORT_UP = "sortActionDown";
|
||||
|
|
@ -149,6 +150,10 @@ public class TasksPanel extends CMSContainer {
|
|||
public TasksPanel(int maxRows, ACSObjectSelectionModel typeModel,
|
||||
ACSObjectSelectionModel sectionModel) {
|
||||
super();
|
||||
|
||||
// Set class attribute
|
||||
setClassAttr(TASK_PANEL_CLASS);
|
||||
|
||||
m_maxRows = maxRows;
|
||||
|
||||
m_typeSel = typeModel;
|
||||
|
|
|
|||
Loading…
Reference in New Issue