Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
534 views

Is there a better way to access controls in an ITemplate than FindControl()?

When a control is added to an UpdatePanel, it can still be accessed from the code behind of the containing page. How is this achieved? Can custom control developers do the same? In other words, if I ...
3
votes
2answers
473 views

Load template from embedded resource

How can I load an embedded resource as an ITemplate? The LoadTemplate() method only takes a string virtual path, and obviously this will not work for embedded resources.
3
votes
1answer
1k views

ITemplate and DataGrid Column in Codebehind

I have a situation where I need to work with a datagrid and adding columns dynamically in PageInit as the grid has a few conditional requests that it must handle. I'm moving along easily with ...
2
votes
0answers
591 views

ASP.Net ITemplate - ways of declaring

when we want to define a Template in our user controls we declare a field like this in our user controls public ITemplate MyTemplate { get; set; } so that the user defined templates contents will ...
1
vote
1answer
156 views

How To Add Event Handlers to Controls in a clss inheriting ITemplate

I've made a Template for adding controls to a DetailsView I have from code behind. private class edgFooterTemplate : ITemplate { private Button btn_Edit; public void InstantiateIn(Control ...
1
vote
1answer
236 views

ASP.NET composite control doesn't bubble event but template does

I am developing a composite control for an ASP.NET application and just by chance initially developed the control to use an ITemplate to create its child controls. There will be a series of buttons ...
1
vote
0answers
380 views

Can't change modes with dynamic FormView templates

I have an ASP.NET page with a FormView data-bound to an ObjectDataSource that uses dynamically generated templates to render the UI based on layout information from the application's database. I've ...
1
vote
1answer
521 views

Dynamic Column that contains a Repeater

How would I go about doing this programatically? I can do this just fine declaratively, using a template column and then using something like this: ... <TemplateGridColumn> ...
1
vote
2answers
1k views

Replace CheckBoxList TemplateControl with custom UserControl?

I am trying to create a more detailed item template for the standard CheckBoxList control. It exposes an ITemplate property called TemplateControl but I wasn't able to find a straightforward resource ...
1
vote
1answer
2k views

itemCommand event not firing in ListView with custom ITemplate

I have created a custom itemtemplate for my listView control, but the item command does not fire for the buttons generated through the ITemplate. NOt only this, the items disappear when you click on ...
1
vote
1answer
1k views

Dynamically adding Content blocks to Masterpage fails after Master.FindControl

I've encountered an odd problem that doesn't make any sense to me. I am trying to dynamically set up MasterPage Content controls on a page. I have it working nicely with the following code: ...
0
votes
1answer
26 views

ASP.net Hot to create custom command for control that implement ITemplate interface?

I have control that inherited from ITemplate Interface. Data is displayed in HtmlTable control, that automatically generated on control initialization. Each row contain ImageButton controls that ...
0
votes
0answers
38 views

Dynamically load an itemtemplate for a repeater

I have a base repeater which actually looks always the same but binds to different data and therefore displays data in a different way. Currently we just duplicated those repeaters across our app, ...
0
votes
2answers
284 views

ASP.Net Dynamic Gridview with custom ItemTemplate

I need some help in rendering a dynamic gridview. Using the source code below, I can add the grid to the page and it generates one row for each entry in the datasource. The problem is that the ...
0
votes
0answers
24 views

ComponentOne : LoadLayout for the C1NavigationList throwing designerHost is Nothing exception

In the page load i am adding dynamically creating the NavigationListItem and adding to the C1NavigationList if (HttpRuntime.Cache["NavListCache" + C1NavigationList1.ID] != null) { byte[] ...
0
votes
0answers
110 views

Custom ListView from ITemplate-Edit command not firing from added button

I'm really hoping someone can help me on this as I am completely stumped and have been unable to locate a response that fixes my issue. I am setting up a custom ListView, adding a button to it, and ...
0
votes
2answers
131 views

Dynamically adding controls to a Templated User Control?

A few weeks back I created a Templated User Control, for the most part based on the example here: http://msdn.microsoft.com/en-us/library/36574bf6(v=VS.90).aspx The difference is that I did not ...
0
votes
2answers
174 views

Error in Web User Control with ITemplate in the Design mode

I have a web user control with the following markup <table> <tr> <td> <h1> <%= this.Title %></h1> </td> ...
0
votes
1answer
83 views

Selecting an Item in GridView with ITemplate Generated Button

I'm having trouble figuring out how could I use my imagebutton (see below) in my ITemplate to append the button's corresponding row data (ItemID) as a query string. My ImageButton in my ITemplate: ...
0
votes
2answers
153 views

Can I load an ITemplate from a database or string?

I'm looking to implement some templates in a web application and wanted to utilize ASP.NET's templated controls. However, I don't want to rely on physical .ascx files, or the VirtualPathProvider in ...
0
votes
1answer
379 views

ID “itemPlaceholder” is not rendered when using custom LayoutTemplate

I've created a simple ASPX-page, added a ListView control to the page and created two implementations of the ITemplate; one for the LayoutTemplate and one for the ItemTemplate. The trick here is that ...
0
votes
2answers
273 views

How to implement LayoutTemplate with a PlaceHolder

In my own server control, I would like to implement something similar to the ListView: <asp:ListView runat="server"> <LayoutTemplate> <asp:PlaceHolder runat="server" ...
0
votes
1answer
439 views

ASP.NET DataPager Control in a Server Control

I'm trying to create a Server Control that will use a DataPager Control, but I'm having some difficulties with the PagerTemplate. This is the DataPager control that I want to generate from a Server ...
0
votes
1answer
257 views

Getting Eval to work in a databound, templated custom control

Context I'm putting together a templated, databound control. Presently it works with the following syntax... <cc:ItemChooserControl ID="ItemChooser" runat="server"> <TitleTemplate> ...
0
votes
1answer
309 views

Itemplate properties not available as attributes

I've added an ITemplate to Telerik's RadGrid control called SearchMenuTemplate ala: public class AbsRadGrid : RadGrid { private ITemplate _ItemTemplate; ...
0
votes
0answers
788 views

Help to FindControl with dynamically created gridview using ITemplate

Good day all, I am having problems trying to use FindControl with my gridview. I am generating the gridview columns using the ITemplate function. This generates a bunch of textbox fields for me that ...
0
votes
0answers
71 views

bind templatefield event to the class that implement it

I work on a control that implement dynamic templatefield , when I added an event to the textbox(TF : textchanged) I tought that I need to bind it the control event (e.g : when text changed control ...
0
votes
1answer
759 views

BindData to ITemplate for GridView in code behind

How do I programmatically bind data to a custom item template column for a GridView? So far, I've done something similar to this: TemplateField foo = new TemplateField(); ...
0
votes
2answers
372 views

ASP.NET - Nested Custom Templates

I'm thinking about converting a few usercontrols to use templates instead. One of these is my own UC which contains some controls, one of which is a repeater. Is it possible to specifcy a template for ...
0
votes
1answer
356 views

ASP.Net ITemplate - how do i read the raw content defined inside

i have situation where in i would like to read the content of the ITemplate. for example i have something like <WD:PopUpPanel runat="server" ID="MyPoPUp"> <InitScript> // javascript ...
0
votes
1answer
664 views

ASP.NET custom templated datalist throws argument out of range (index) on button press

I have a class BaseTemplate public abstract class BaseTemplate : ITemplate This adds the controls, and provides abstract methods to implement in the inheriting class. The inheriting class then adds ...
0
votes
1answer
800 views

ASP.NET GridView - Editing Dynamic Template Columns

I have created a GridView whose columns are dynamically created based on my data source. I have implemented these columns by using the approach described here.Those columns display properly on the ...
0
votes
5answers
1k views

ASP.NET Templated Control

I'm attempting to build a templated control. You'll see that as part of the Field section, I'd like to be able to define controls as children. When I attempt to compile I'm receiving the error ...
0
votes
1answer
545 views

Finding Controls in an ITemplated Custom Control

I have created a custom server control with properties implementing the ITemplate interface. It is basically a custom panel box with a header, body & footer. Here is the code: using System; ...
0
votes
1answer
914 views

Custom Web Control, ITemplate not recognised

Hopefully an easy one, I have created a Custom Repeater control that extends System.Web.UI.WebControls.Repeater. I Have added two ITemplate Properties to this control and add these when required and ...