Hi,
You can sort your BizForm entries by clicking on appropriate column title. It will sort it in DESC or ASC direction.
Whether you wish to sort it by default, it would be quite difficult. You can change '\CMSDesk\Tools\BizForms\BizForm_Edit_Data.aspx.cs' file.
You can add following bold line into Page_Load method:
if (dci != null)
{
className = dci.ClassName;
formName = bfi.FormName;
// Get columns names
columnNames = FormInfo.GetColumnNames();
// Get primary column name
gridData.OrderBy = primaryColumn = GetPrimaryColumn(FormInfo, formName);
gridData.OrderBy = gridData.OrderBy + " DESC";
}
Best regards,
Ivana Tomanickova