Hi All,
Here "ItemCollection" having 2 items.I am ssigning one item to RadTreeViewItem as shown bellow.
Inside i am calling same method and assigning RadTreeViewItem(Insted of ItemCollection), if i call like this i am getting error "Can not convert type RadTreeViewItem to ItemCollection "
BuildConfigDetailsData_Helper(ItemCollection ndcol, ref string strConfigDetailsData)
{
string strImagesPath = "file:///" + _Params.SizerFolderName + "xml\\";
RadTreeViewItem nd;
for (int iCount = 0; iCount < ndcol.Count; iCount++)
{
nd = (RadTreeViewItem)ndcol[iCount];
BuildConfigDetailsData_Helper((ItemCollection)nd, ref strConfigDetailsData);
Please help me how can i proceed..........................
Here "ItemCollection" having 2 items.I am ssigning one item to RadTreeViewItem as shown bellow.
Inside i am calling same method and assigning RadTreeViewItem(Insted of ItemCollection), if i call like this i am getting error "Can not convert type RadTreeViewItem to ItemCollection "
BuildConfigDetailsData_Helper(ItemCollection ndcol, ref string strConfigDetailsData)
{
string strImagesPath = "file:///" + _Params.SizerFolderName + "xml\\";
RadTreeViewItem nd;
for (int iCount = 0; iCount < ndcol.Count; iCount++)
{
nd = (RadTreeViewItem)ndcol[iCount];
BuildConfigDetailsData_Helper((ItemCollection)nd, ref strConfigDetailsData);
Please help me how can i proceed..........................