https://github.com/Microsoft/AL/issues/39
Now the dropdown is working.

When I click on New/Advanced from dropdown, the page is opened like card page?

properties of the page are

Looks like a bug to me. This is the table extension code. Isn't it? http://mohana-dynamicsnav.blogspot.hu/2016/12/developing-extensions-using-new-visual_22.html
I have created a tableextension with the simplest table relation and I got the expected list. It could also be something that got fixed late and has not made it the January update.
We will investigate it and come back with the result.
You probably forgot a repeater. Without the repeater the List page looks like a messed up Card.
page 70008001 ReasonCodeList
{
PageType = List;
SourceTable = MyReasonCode;
layout
{
area(content)
{
group(GroupName)
{
repeater(Rep) // Important
{
field(Code;Code) {}
field(Desc;Description) {}
}
}
}
}
}
I thought of testing with repeater today but dot issue 74.
Is it possible to get compilation issue for these kind of missing important things?
We should also be able to create list/card type snippets like wizards in previous development to create pages?
Or a tpagelist code snippet ;-)
We are looking into more compiler validating of "invalid" pages and other types of developer "guidance" like snippets.
New tpage snippet has been added that generates a template for a List page.
Next: tpagewizard ;-)
(I'm working on something like that, by the way ..)
Most helpful comment
Or a tpagelist code snippet ;-)