I get an error as “the aggregation node for control 'sap.ui.table.Table' is incorrect”
up vote
0
down vote
favorite
I have just started with learning UI5
coding and I am not a pro in it.
I am trying to add a combo box in my search field to enhance the search option in my application. so I am using the table tag but whenever I try to insert the code;
<t:Table id="idoclist" selectionMode="MultiToggle" rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
< <t:headerToolbar>
<t:toolbar>
<Title text="IDOC Data" level="H1"/>
<t:ToolbarSpacer/>
<ComboBox id="filtercombo">
<core:Item key="Trkorr" text="IDOC Number"/>
<core:Item key="TrType" text="Created ON"/>
<core:Item key="As4text" text="IDOC Type"/>
<core:Item key="" text=""/>
</ComboBox>
<SearchField width="50%" search="onFilter" placeholder="Filter"/>
</t:toolbar>
</t:headerToolbar>
I get error saying:
the aggregation node for control 'sap.ui.table.Table' is incorrect.
Can somebody please help me if I am missing on to something before this.
Thanks,
Chaitali.
sapui5
add a comment |
up vote
0
down vote
favorite
I have just started with learning UI5
coding and I am not a pro in it.
I am trying to add a combo box in my search field to enhance the search option in my application. so I am using the table tag but whenever I try to insert the code;
<t:Table id="idoclist" selectionMode="MultiToggle" rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
< <t:headerToolbar>
<t:toolbar>
<Title text="IDOC Data" level="H1"/>
<t:ToolbarSpacer/>
<ComboBox id="filtercombo">
<core:Item key="Trkorr" text="IDOC Number"/>
<core:Item key="TrType" text="Created ON"/>
<core:Item key="As4text" text="IDOC Type"/>
<core:Item key="" text=""/>
</ComboBox>
<SearchField width="50%" search="onFilter" placeholder="Filter"/>
</t:toolbar>
</t:headerToolbar>
I get error saying:
the aggregation node for control 'sap.ui.table.Table' is incorrect.
Can somebody please help me if I am missing on to something before this.
Thanks,
Chaitali.
sapui5
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have just started with learning UI5
coding and I am not a pro in it.
I am trying to add a combo box in my search field to enhance the search option in my application. so I am using the table tag but whenever I try to insert the code;
<t:Table id="idoclist" selectionMode="MultiToggle" rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
< <t:headerToolbar>
<t:toolbar>
<Title text="IDOC Data" level="H1"/>
<t:ToolbarSpacer/>
<ComboBox id="filtercombo">
<core:Item key="Trkorr" text="IDOC Number"/>
<core:Item key="TrType" text="Created ON"/>
<core:Item key="As4text" text="IDOC Type"/>
<core:Item key="" text=""/>
</ComboBox>
<SearchField width="50%" search="onFilter" placeholder="Filter"/>
</t:toolbar>
</t:headerToolbar>
I get error saying:
the aggregation node for control 'sap.ui.table.Table' is incorrect.
Can somebody please help me if I am missing on to something before this.
Thanks,
Chaitali.
sapui5
I have just started with learning UI5
coding and I am not a pro in it.
I am trying to add a combo box in my search field to enhance the search option in my application. so I am using the table tag but whenever I try to insert the code;
<t:Table id="idoclist" selectionMode="MultiToggle" rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
< <t:headerToolbar>
<t:toolbar>
<Title text="IDOC Data" level="H1"/>
<t:ToolbarSpacer/>
<ComboBox id="filtercombo">
<core:Item key="Trkorr" text="IDOC Number"/>
<core:Item key="TrType" text="Created ON"/>
<core:Item key="As4text" text="IDOC Type"/>
<core:Item key="" text=""/>
</ComboBox>
<SearchField width="50%" search="onFilter" placeholder="Filter"/>
</t:toolbar>
</t:headerToolbar>
I get error saying:
the aggregation node for control 'sap.ui.table.Table' is incorrect.
Can somebody please help me if I am missing on to something before this.
Thanks,
Chaitali.
sapui5
sapui5
edited Nov 21 at 13:06
Jaro
1,43411122
1,43411122
asked Nov 20 at 10:49
Chaitali
1
1
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
1
down vote
You are missing the content aggregation on your toolbar. It should look like this:
<t:Table id="idoclist" selectionMode="MultiToggle"
rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
<t:headerToolbar>
<t:toolbar>
<content>
<Title text="IDOC Data" level="H1"/>
<t:ToolbarSpacer/>
<ComboBox id="filtercombo">
<core:Item key="Trkorr" text="IDOC Number"/>
<core:Item key="TrType" text="Created ON"/>
<core:Item key="As4text" text="IDOC Type"/>
<core:Item key="" text=""/>
</ComboBox>
<SearchField width="50%" search="onFilter" placeholder="Filter"/>
</content>
</t:toolbar>
</t:headerToolbar>
The sap.ui.core.Toolbar aggregation is now deprecated as of version 1.38 for sap.ui.table.Table so I would recommend using sap.m.Table on your view to look something like this:
<Table id="_yourTable">
<headerToolbar>
<Toolbar>
<content>
<Label text="Toolbar Label"></Label>
</content>
</Toolbar>
</headerToolbar>
There's more going on with this... assumingt:
points tosap.ui.table
, the toolbar control issap.ui.table.toolbar
which does not exist. there's noheaderToolbar
aggregation onsap.ui.table.Table
but there is onsap.m.Table
.
– Jorg
Nov 20 at 11:20
I see you already noticed, cheers.
– Jorg
Nov 20 at 11:21
1
@Jorg thought the same, just edited my answer. I think sap.m.Table should be used here.
– Andre F
Nov 20 at 11:22
Or theextension
aggregation onsap.ui.table.Table
I guess... I'd suggestsap.m.Table
too.
– Jorg
Nov 20 at 11:23
add a comment |
up vote
1
down vote
The headerToolbar
is not a valid aggregation for sap.ui.table.Table . This means that you cannot use headerToolbar inside Table directly. Your next option would be to use the toolbar
aggregation. But this has been deprecated since version 1.38 .(Refer this document to know more about sap.ui.table.Table
)
So you can use the extension aggregation to include your toolbar. I have modified your table with sap.m.Toolbar.
<t:Table id="idoclist" selectionMode="MultiToggle" rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
<t:extension>
<Toolbar>
<Title text="IDOC Data" level="H1"/>
<ToolbarSpacer/>
<ComboBox id="filtercombo">
<core:Item key="Trkorr" text="IDOC Number"/>
<core:Item key="TrType" text="Created ON"/>
<core:Item key="As4text" text="IDOC Type"/>
<core:Item key="" text=""/>
</ComboBox>
<SearchField width="50%" search="onFilter" placeholder="Filter"/>
</Toolbar>
</t:extension>
</t:Table>
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53391346%2fi-get-an-error-as-the-aggregation-node-for-control-sap-ui-table-table-is-inco%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
You are missing the content aggregation on your toolbar. It should look like this:
<t:Table id="idoclist" selectionMode="MultiToggle"
rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
<t:headerToolbar>
<t:toolbar>
<content>
<Title text="IDOC Data" level="H1"/>
<t:ToolbarSpacer/>
<ComboBox id="filtercombo">
<core:Item key="Trkorr" text="IDOC Number"/>
<core:Item key="TrType" text="Created ON"/>
<core:Item key="As4text" text="IDOC Type"/>
<core:Item key="" text=""/>
</ComboBox>
<SearchField width="50%" search="onFilter" placeholder="Filter"/>
</content>
</t:toolbar>
</t:headerToolbar>
The sap.ui.core.Toolbar aggregation is now deprecated as of version 1.38 for sap.ui.table.Table so I would recommend using sap.m.Table on your view to look something like this:
<Table id="_yourTable">
<headerToolbar>
<Toolbar>
<content>
<Label text="Toolbar Label"></Label>
</content>
</Toolbar>
</headerToolbar>
There's more going on with this... assumingt:
points tosap.ui.table
, the toolbar control issap.ui.table.toolbar
which does not exist. there's noheaderToolbar
aggregation onsap.ui.table.Table
but there is onsap.m.Table
.
– Jorg
Nov 20 at 11:20
I see you already noticed, cheers.
– Jorg
Nov 20 at 11:21
1
@Jorg thought the same, just edited my answer. I think sap.m.Table should be used here.
– Andre F
Nov 20 at 11:22
Or theextension
aggregation onsap.ui.table.Table
I guess... I'd suggestsap.m.Table
too.
– Jorg
Nov 20 at 11:23
add a comment |
up vote
1
down vote
You are missing the content aggregation on your toolbar. It should look like this:
<t:Table id="idoclist" selectionMode="MultiToggle"
rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
<t:headerToolbar>
<t:toolbar>
<content>
<Title text="IDOC Data" level="H1"/>
<t:ToolbarSpacer/>
<ComboBox id="filtercombo">
<core:Item key="Trkorr" text="IDOC Number"/>
<core:Item key="TrType" text="Created ON"/>
<core:Item key="As4text" text="IDOC Type"/>
<core:Item key="" text=""/>
</ComboBox>
<SearchField width="50%" search="onFilter" placeholder="Filter"/>
</content>
</t:toolbar>
</t:headerToolbar>
The sap.ui.core.Toolbar aggregation is now deprecated as of version 1.38 for sap.ui.table.Table so I would recommend using sap.m.Table on your view to look something like this:
<Table id="_yourTable">
<headerToolbar>
<Toolbar>
<content>
<Label text="Toolbar Label"></Label>
</content>
</Toolbar>
</headerToolbar>
There's more going on with this... assumingt:
points tosap.ui.table
, the toolbar control issap.ui.table.toolbar
which does not exist. there's noheaderToolbar
aggregation onsap.ui.table.Table
but there is onsap.m.Table
.
– Jorg
Nov 20 at 11:20
I see you already noticed, cheers.
– Jorg
Nov 20 at 11:21
1
@Jorg thought the same, just edited my answer. I think sap.m.Table should be used here.
– Andre F
Nov 20 at 11:22
Or theextension
aggregation onsap.ui.table.Table
I guess... I'd suggestsap.m.Table
too.
– Jorg
Nov 20 at 11:23
add a comment |
up vote
1
down vote
up vote
1
down vote
You are missing the content aggregation on your toolbar. It should look like this:
<t:Table id="idoclist" selectionMode="MultiToggle"
rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
<t:headerToolbar>
<t:toolbar>
<content>
<Title text="IDOC Data" level="H1"/>
<t:ToolbarSpacer/>
<ComboBox id="filtercombo">
<core:Item key="Trkorr" text="IDOC Number"/>
<core:Item key="TrType" text="Created ON"/>
<core:Item key="As4text" text="IDOC Type"/>
<core:Item key="" text=""/>
</ComboBox>
<SearchField width="50%" search="onFilter" placeholder="Filter"/>
</content>
</t:toolbar>
</t:headerToolbar>
The sap.ui.core.Toolbar aggregation is now deprecated as of version 1.38 for sap.ui.table.Table so I would recommend using sap.m.Table on your view to look something like this:
<Table id="_yourTable">
<headerToolbar>
<Toolbar>
<content>
<Label text="Toolbar Label"></Label>
</content>
</Toolbar>
</headerToolbar>
You are missing the content aggregation on your toolbar. It should look like this:
<t:Table id="idoclist" selectionMode="MultiToggle"
rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
<t:headerToolbar>
<t:toolbar>
<content>
<Title text="IDOC Data" level="H1"/>
<t:ToolbarSpacer/>
<ComboBox id="filtercombo">
<core:Item key="Trkorr" text="IDOC Number"/>
<core:Item key="TrType" text="Created ON"/>
<core:Item key="As4text" text="IDOC Type"/>
<core:Item key="" text=""/>
</ComboBox>
<SearchField width="50%" search="onFilter" placeholder="Filter"/>
</content>
</t:toolbar>
</t:headerToolbar>
The sap.ui.core.Toolbar aggregation is now deprecated as of version 1.38 for sap.ui.table.Table so I would recommend using sap.m.Table on your view to look something like this:
<Table id="_yourTable">
<headerToolbar>
<Toolbar>
<content>
<Label text="Toolbar Label"></Label>
</content>
</Toolbar>
</headerToolbar>
edited Nov 20 at 11:20
answered Nov 20 at 11:12
Andre F
21012
21012
There's more going on with this... assumingt:
points tosap.ui.table
, the toolbar control issap.ui.table.toolbar
which does not exist. there's noheaderToolbar
aggregation onsap.ui.table.Table
but there is onsap.m.Table
.
– Jorg
Nov 20 at 11:20
I see you already noticed, cheers.
– Jorg
Nov 20 at 11:21
1
@Jorg thought the same, just edited my answer. I think sap.m.Table should be used here.
– Andre F
Nov 20 at 11:22
Or theextension
aggregation onsap.ui.table.Table
I guess... I'd suggestsap.m.Table
too.
– Jorg
Nov 20 at 11:23
add a comment |
There's more going on with this... assumingt:
points tosap.ui.table
, the toolbar control issap.ui.table.toolbar
which does not exist. there's noheaderToolbar
aggregation onsap.ui.table.Table
but there is onsap.m.Table
.
– Jorg
Nov 20 at 11:20
I see you already noticed, cheers.
– Jorg
Nov 20 at 11:21
1
@Jorg thought the same, just edited my answer. I think sap.m.Table should be used here.
– Andre F
Nov 20 at 11:22
Or theextension
aggregation onsap.ui.table.Table
I guess... I'd suggestsap.m.Table
too.
– Jorg
Nov 20 at 11:23
There's more going on with this... assuming
t:
points to sap.ui.table
, the toolbar control is sap.ui.table.toolbar
which does not exist. there's no headerToolbar
aggregation on sap.ui.table.Table
but there is on sap.m.Table
.– Jorg
Nov 20 at 11:20
There's more going on with this... assuming
t:
points to sap.ui.table
, the toolbar control is sap.ui.table.toolbar
which does not exist. there's no headerToolbar
aggregation on sap.ui.table.Table
but there is on sap.m.Table
.– Jorg
Nov 20 at 11:20
I see you already noticed, cheers.
– Jorg
Nov 20 at 11:21
I see you already noticed, cheers.
– Jorg
Nov 20 at 11:21
1
1
@Jorg thought the same, just edited my answer. I think sap.m.Table should be used here.
– Andre F
Nov 20 at 11:22
@Jorg thought the same, just edited my answer. I think sap.m.Table should be used here.
– Andre F
Nov 20 at 11:22
Or the
extension
aggregation on sap.ui.table.Table
I guess... I'd suggest sap.m.Table
too.– Jorg
Nov 20 at 11:23
Or the
extension
aggregation on sap.ui.table.Table
I guess... I'd suggest sap.m.Table
too.– Jorg
Nov 20 at 11:23
add a comment |
up vote
1
down vote
The headerToolbar
is not a valid aggregation for sap.ui.table.Table . This means that you cannot use headerToolbar inside Table directly. Your next option would be to use the toolbar
aggregation. But this has been deprecated since version 1.38 .(Refer this document to know more about sap.ui.table.Table
)
So you can use the extension aggregation to include your toolbar. I have modified your table with sap.m.Toolbar.
<t:Table id="idoclist" selectionMode="MultiToggle" rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
<t:extension>
<Toolbar>
<Title text="IDOC Data" level="H1"/>
<ToolbarSpacer/>
<ComboBox id="filtercombo">
<core:Item key="Trkorr" text="IDOC Number"/>
<core:Item key="TrType" text="Created ON"/>
<core:Item key="As4text" text="IDOC Type"/>
<core:Item key="" text=""/>
</ComboBox>
<SearchField width="50%" search="onFilter" placeholder="Filter"/>
</Toolbar>
</t:extension>
</t:Table>
add a comment |
up vote
1
down vote
The headerToolbar
is not a valid aggregation for sap.ui.table.Table . This means that you cannot use headerToolbar inside Table directly. Your next option would be to use the toolbar
aggregation. But this has been deprecated since version 1.38 .(Refer this document to know more about sap.ui.table.Table
)
So you can use the extension aggregation to include your toolbar. I have modified your table with sap.m.Toolbar.
<t:Table id="idoclist" selectionMode="MultiToggle" rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
<t:extension>
<Toolbar>
<Title text="IDOC Data" level="H1"/>
<ToolbarSpacer/>
<ComboBox id="filtercombo">
<core:Item key="Trkorr" text="IDOC Number"/>
<core:Item key="TrType" text="Created ON"/>
<core:Item key="As4text" text="IDOC Type"/>
<core:Item key="" text=""/>
</ComboBox>
<SearchField width="50%" search="onFilter" placeholder="Filter"/>
</Toolbar>
</t:extension>
</t:Table>
add a comment |
up vote
1
down vote
up vote
1
down vote
The headerToolbar
is not a valid aggregation for sap.ui.table.Table . This means that you cannot use headerToolbar inside Table directly. Your next option would be to use the toolbar
aggregation. But this has been deprecated since version 1.38 .(Refer this document to know more about sap.ui.table.Table
)
So you can use the extension aggregation to include your toolbar. I have modified your table with sap.m.Toolbar.
<t:Table id="idoclist" selectionMode="MultiToggle" rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
<t:extension>
<Toolbar>
<Title text="IDOC Data" level="H1"/>
<ToolbarSpacer/>
<ComboBox id="filtercombo">
<core:Item key="Trkorr" text="IDOC Number"/>
<core:Item key="TrType" text="Created ON"/>
<core:Item key="As4text" text="IDOC Type"/>
<core:Item key="" text=""/>
</ComboBox>
<SearchField width="50%" search="onFilter" placeholder="Filter"/>
</Toolbar>
</t:extension>
</t:Table>
The headerToolbar
is not a valid aggregation for sap.ui.table.Table . This means that you cannot use headerToolbar inside Table directly. Your next option would be to use the toolbar
aggregation. But this has been deprecated since version 1.38 .(Refer this document to know more about sap.ui.table.Table
)
So you can use the extension aggregation to include your toolbar. I have modified your table with sap.m.Toolbar.
<t:Table id="idoclist" selectionMode="MultiToggle" rows="{idoc_list_msg>/results}" visibleRowCount="12" cellClick="onPress"
sort="sortDeliveryDate" enableCellFilter="{ui>/cellFilterOn}" ariaLabelledBy="title">
<t:extension>
<Toolbar>
<Title text="IDOC Data" level="H1"/>
<ToolbarSpacer/>
<ComboBox id="filtercombo">
<core:Item key="Trkorr" text="IDOC Number"/>
<core:Item key="TrType" text="Created ON"/>
<core:Item key="As4text" text="IDOC Type"/>
<core:Item key="" text=""/>
</ComboBox>
<SearchField width="50%" search="onFilter" placeholder="Filter"/>
</Toolbar>
</t:extension>
</t:Table>
answered Nov 20 at 11:50
d01ph1n
1115
1115
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53391346%2fi-get-an-error-as-the-aggregation-node-for-control-sap-ui-table-table-is-inco%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown