473,396 Members | 1,998 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

How to load a template into datalist at runtime?

Isz
PROBLEM:
This problem is related to the postback and handling events correctly.
BACKGROUND:
I have a datalist which acts as a tabbes list with horizontal layout.
This datalist is bound to a strogly typed collection I called
TabCollection which is a collevtion of items called tab. Each tab is as
follows:

tab.TabName
tab.TabTemplate
tab.TabIndex

TabTemplate is a string which holds the location of a user control which
inherits from ITemplate. Ideally, each tab instance within
TabCollection would contain a reference to a different template such
that when a user clicks on any of the horizontally aligned tabs, the
datalist would load the corresponding template. Each template is a user
control (.ascx) and contains an assortment of server controls such as
the dropdownlist, listbox, button, texbox, etc.

BEHAVIOR:
on Page_Load I am successfully able to load each template, as it is
defined by the instance of tab, int the item selected as the
SelectedItemTemplate. While the page looks nice, and all controls are
visible, invoking any of them that depend upon a postback results in one
of several tested outcomes:

1. The template disappears - this occurs if I select an item is the
drop-down list but do not bubble its event up to the page containing the
datalist.

2. The dropdown lists contents are reset upon a selection - this occurs
if I do bubble the selectedIndeChanged event up to the page with the
datalist and call ReBind(). The selected template remains visible.
QUESTION:
How is it handled that a datalist's SelectedItemTemplate loaded template
is retained while also being able to appropriately use controls within
the custom template?

CODE:
Though there might be a bit of code posted here, it might be useful for
some even in its current broken state.

+++++++++++++++++++++++++++++++++++++++++++
Tabs.ascx - this file contains the datalist

private void Page_Load(object sender, System.EventArgs e)
{
if(!Page.IsPostBack)
{
dl_tabs.SelectedIndex = INTIALIZE_TAB_INDEX;
BindData();
}
}

public void BindData()
{
dl_tabs.DataSource = tabsList;
dl_tabs.DataKeyField = "TabIndex";
dl_tabs.DataBind();
}

private void dl_tabs_ItemDataBound(object sender, DataListItemEventArgs
e)
{

if(e.Item.ItemType == ListItemType.SelectedItem)
{
int tabId = (int)dl_tabs.DataKeys[e.Item.ItemIndex];
MyNameSpace.Web.Controls.Templates.ITemplate template =
(MyNameSpace.Web.Controls.Templates.ITemplate)Load Control(TabsList
[e.Item.ItemIndex].TabTemplate);
template.CourseCategoryIndexChanged += new
CommandEventHandler(template_CourseCategoryIndexCh anged);
template.CourseLevelIndexChanged += new CommandEventHandler
(template_CourseLevelIndexChanged);
panel_selectedTab.Controls.Add((System.Web.UI.User Control)
template);
if(panel_selectedTab.Controls.Count > 1)
panel_selectedTab.Controls.RemoveAt(0);
}
}

private void dl_tabs_ItemCommand(object source, DataListCommandEventArgs
e)
{
dl_tabs.SelectedIndex = e.Item.ItemIndex;
BindData();
}

+++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++
MyTemplate1.ascx - this file is a user control template that gets loaded
in the dl_tabs_ItemDataBound of the Tabs.ascx datalist event.

// Events
public event CommandEventHandler CourseCategoryIndexChanged;

private void Page_Load(object sender, System.EventArgs e)
{
BindData();
}

public void BindData()
{
// DropDown Lists
MyNameSpace.DataEntities.CollectionClasses.CourseC ategoryCollectio
n courseCategoryCollection = new CourseCategoryCollection();
courseCategoryCollection = FacultyCourseServer.GetCourseCategories
(FacultyCourseServer.DEFAULT_FACULTY_ID);
this.ddl_courseCategory.DataSource = courseCategoryCollection;
this.ddl_courseCategory.DataTextField = EntityFieldFactory.Create
(CourseCategoryFieldIndex.CourseName).Name;
this.ddl_courseCategory.DataValueField = EntityFieldFactory.Create
(CourseCategoryFieldIndex.CourseCategoryId).Name;
this.ddl_courseCategory.DataBind();
}

private void ddl_courseCategory_SelectedIndexChanged(object sender,
System.EventArgs e)
{
// Do stuff like bubble up event.
if(CourseCategoryIndexChanged != null)
{
CommandEventArgs ev = new CommandEventArgs(null,
ddl_courseCategory.SelectedIndex);
CourseCategoryIndexChanged(this, ev);
}

}
+++++++++++++++++++++++++++++++++++++++++++
If anyone can tackle thi, please feel free to ask if more code is needed
or additional information.

Thank you.
Dec 29 '05 #1
0 3914

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Fabrizio | last post by:
Hi, I'm using a datalist with a LoadTemplate method from an ascx(text format) file. Everything is working fine till i need to find a control within the datalist in the datalist_itemdatabound event....
9
by: John Kirksey | last post by:
I have a page that uses an in-place editable DataGrid that supports sorting and paging. EnableViewState is turned ON. At the top of the page are several search fields that allow the user to filter...
0
by: Barry | last post by:
Hi, I have a template in a DataList. The template also contains a DataList. I'd like to bubble the OnItemCommand event from the template's DataList up the hierarchy. Here's what I've tried so...
8
by: Invalidlastname | last post by:
Hi, We are developing an asp.net application, and we dynamically created certain literal controls to represent some read-only text for certain editable controls. However, recently we found an issue...
3
by: moondaddy | last post by:
using vb.net 1.1 I have a datalist and in it's item template I have 2 buttons, 'edit' and 'ShipToThisAddress'. The edit button works fine and it opens up the edit template as it works with the...
1
by: DotNetJunkies User | last post by:
Hi, I was wondering if it is possible to load datagrid into datalist programatically using ITemplate interface with the following structure and place intp placeholder control. PlaceHolder -...
0
by: Richard Steele | last post by:
I have a default page that I load usercontrols depending on requirements through a master template using a PlaceHolder i.e. //some logic here..... Control UCUsers =...
1
by: Benton | last post by:
Hi there, I have a HyperLink control inside a DataList's ItemTemplate: <asp:DataList ID="lstDatos" runat="server"> <ItemTemplate> <asp:HyperLink ID="lnkName" runat="server" CssClass="Link"...
3
by: Crazy Cat | last post by:
Hi all, I am developing an asp.net 2.0 application in Visual Studio 2005. On my page I have a simple datalist that is bound programmatically to a collection of simple objects. On this page I...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.