Hi All,
Im quite new to Business Central and i have created a custom pageList having a custom Soure Table and page Card, But the NEW and Delete Button on the Page List in Not working, i clicked on it several times but not working properly.

My Code for PageList is :
page 50102 BookList
{
PageType = List;
SourceTable = Book;
CardPageId = BookCard;
Editable = false;
layout
{
area(Content)
{
repeater(Group)
{
field("No."; "No.")
{
ApplicationArea = All;
}
field(Title; Title)
{
ApplicationArea = All;
}
field(Aurthor; Aurthor)
{
ApplicationArea = All;
}
}
}
}
}
Can anyone Please help me with this?