Hi All,
I am trying to use BO XI Server control, Folder control,
I wanted to control the navigation based on the type if it is folder I want to allow navigation and dont allow if it not folder.
<<<<<CODE>>>>>
private void folderslist_ItemClicked(object sender, CrystalDecisions.Enterprise.WebControls.ItemEventArgs e)
{
if (e.ItemType != "CrystalEnterprise.Report")
{
folderslist.AllowDrillDown = true;
folderslist.DataBind();
}
else
{
folderslist.AllowDrillDown = false;
}
}
It doesnt work, I trying to create UI some thing like InfoView. I have another problem ReportParameter COntrol doesnt populate parameters from BO, I am working with tech support, I will let you know the resolution.
Thanks,
I am trying to use BO XI Server control, Folder control,
I wanted to control the navigation based on the type if it is folder I want to allow navigation and dont allow if it not folder.
<<<<<CODE>>>>>
private void folderslist_ItemClicked(object sender, CrystalDecisions.Enterprise.WebControls.ItemEventArgs e)
{
if (e.ItemType != "CrystalEnterprise.Report")
{
folderslist.AllowDrillDown = true;
folderslist.DataBind();
}
else
{
folderslist.AllowDrillDown = false;
}
}
It doesnt work, I trying to create UI some thing like InfoView. I have another problem ReportParameter COntrol doesnt populate parameters from BO, I am working with tech support, I will let you know the resolution.
Thanks,