Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

EnterpriceItem - folder navigation

Status
Not open for further replies.

4RRRR

Programmer
Mar 11, 2004
34
US
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,
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top