Tagged Questions
The composite-controls tag has no wiki summary.
3
votes
2answers
355 views
Should a DropDownList within a CompositeControl remember selected item?
Given the following
public class MyControl : CompositeControl
{
private DropDownList myList;
protected override void CreateChildControls()
{
base.CreateChildControls();
...
3
votes
3answers
208 views
The Taligent Programming Model for .Net
Has anyone created a control architecture using the taligent programming model as follows?
http://www.wildcrest.com/Potel/Portfolio/mvp.pdf
The question is how do you implement or map the ...
3
votes
4answers
2k views
Error Creating Control - Custom Control
I have a custom control and it works fine...except that the control cannot be rendered on Design Time. ( I am using VS 2008)
I am thinking many people who develop custom controls encounter this ...
3
votes
2answers
1k views
Setting AssociatedControlID on label fails
I have a composite control that adds a TextBox and a Label control to its Controls collection. When i try to set the Label's AssociatedControlID to the ClientID of the Textbox i get this error
Unable ...
3
votes
1answer
745 views
How do I properly handle the viewstate of a child control within a composite control?
I have a composite control that contains a ListBox child control. On postback, the items for the ListBox disappear. I have a property for the ListBox that initializes it, and I add it to the controls ...
2
votes
1answer
29 views
Postback From Controls inside Composite Web Control
Let's say we have a composite web control with a combobox and a textbox. Is it possible to build into the control functionality such that when the text in the textbox changes, it posts back and adds ...
2
votes
1answer
220 views
Creating Custom WPF Controls in IronPython: a control made up out of standard controls
I've looked at the other custom control creation questions on here, as well as other online resources, but I'm lost as to how to create a custom control that doesn't require a C# code-behind file. ...
2
votes
1answer
140 views
How to remove parent control without deleting its children in asp.net c#?
I want to remove parent control (which is span in this case) without deleting its children controls from container. how can I accomplish this in asp.net c#?
you can see the code here: ...
2
votes
1answer
618 views
WPF TabIndex in a composite control
I have a simple window with a simple composite control embedded within it.
(Main Window)
<Window x:Class="TabOrder.Window1"
xmlns:local="clr-namespace:TabOrder"
...
2
votes
1answer
261 views
How can I change child controls in a composite server control on postback
I have an ASP.NET web form composite control, let's call it control A, which contains a child composite control, which I'll call control B. The child controls of control B are dependent on a property ...
2
votes
1answer
548 views
ASP.Net CustomValidator in a CompositeControl
I present to you a little mystery... the following control is intended to fail validation every time, no matter what, but it does not:
public class Test : CompositeControl
{
protected override ...
2
votes
2answers
1k views
ASP.NET Composite Control raise event to parent form
Say I have a composite control in ASP.NET (C#) which includes a drop down list. I need to be able to bubble the event back to the parent form so that other code can be executed based on its ...
2
votes
3answers
943 views
How can I have an ASP.NET templated composite control?
I am trying to add a template to a simplified composite control containing a Label and a TextBox. I want my mark up to look something like this:
<test:FormItem ID="fi" runat="server" ...
2
votes
2answers
1k views
Expose OnSelectedIndexChanged event in CompositeControl
If I have a DropDownList control that makes up part of a CompositeControl how can I expose the SelectedIndexChanged event to the consuming aspx page?
Thanks
2
votes
1answer
2k views
Why should I create my child controls in CreateChildControls() on a CompositeControl?
Ok so the obvious answer is, because the flow of a composite control demands my childcontrols to be created at a certain point in time. I got a problem i think other people must have had as well.
My ...
1
vote
1answer
40 views
Databinding controls inside CompositeControl
I have created a CompositeControl that is essentially a wrapper for a MultiView, but if I try to use any databound controls such as GridView or FormView inside the View, I get the error:
Databinding ...
1
vote
0answers
50 views
Postback in server composite control
I am writing a Server Composite Control which will among other controls include a grid.
Now since events like sorting values in a column or paging are beeing handled by the grid itself (I don't have ...
1
vote
1answer
235 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
3answers
855 views
Inheriting from a System.Web.UI.UserControl base class
First off, I am wondering if this is possible. I read slight grumblings around the internet about this, but I was not entirely sure.
My scenario: I have a base chart class which has some methods ...
1
vote
2answers
313 views
Getting the content of an ASP.NET System.Web.UI.WebControls.PlaceHolder
I have a server control that has a PlaceHolder that is an InnerProperty. In the class when rendering I need to get the text / HTML content that is supposed to be in the PlaceHolder. Here is a sample ...
1
vote
1answer
614 views
Asp Composite control child control (radiobutton) losing checked value
I am working on a quiz control in asp.net with dynamically created questions and options.
The main control is basically a container to hold all of the questions.
In design view users can add questions ...
1
vote
1answer
155 views
Adding jquery into a composite control
I am creating a composite control that has a textbox and uses a jquery plugin to add a watermark. Lets say I have a basic function that looks like this
$(function () ...
1
vote
2answers
271 views
Add ability to provide list items to composite control with DropDownLIst
I'm creating a composite control for a DropDownList (that also includes a Label).
The idea being that I can use my control like a dropdown list, but also have it toss a Label onto the page in front ...
1
vote
1answer
150 views
Persisting a collection backed by viewstate in a CompositeControl
Maybe it's been a long day but I'm having trouble persisting a collection backed by the ASP.NET ViewState in a CompositeControl. Here's a simplified version:
public class MyControl : CompositeControl
...
1
vote
1answer
643 views
Converting listview to a composite control
The link below shows a listview composite control in its most basic form however I can't seem to extend this to what I'm trying to do.
...
1
vote
1answer
506 views
ASP CompositeControl & ScriptManager
I'm really new to the WebControl / CompositeControl world, and I have a small test class I am playing with. It's just a LinkButton that updates when clicked. Things work great when I leave it out of ...
1
vote
1answer
297 views
CompositeControl and XML Deserialization on design-time error
I get "Error rendering control" error that only happens when I place the control on the webform in desgin-mode, if I run the page the control is displayed correctly.
The above statement is not ...
1
vote
2answers
900 views
Difference between a WebControl and a CompositeControl?
I have been looking around on the web and found some articles about the topic, but i still can't figure out the difference between them. I have the code show below, if i inherit from a ...
1
vote
1answer
453 views
Validator Disappears on PostBack Inside Composite Control
This should be a simple problem to fix, as it uses the same way I fixed my last problem with FooControl (below).
Basically, I want to add a derived validator I made to this composite control. It ...
1
vote
1answer
132 views
Hiding Control Attributes in ASP.Net
I am building a composite control that is composed of an Infragistics WebDataGrid, an add Button, and some ModalPopupExtenders. I want design-time usage of this composite control to be as simple as ...
1
vote
1answer
458 views
How to stop CompositeControl TabIndex property from setting tabindex on container span
I wrote a custom server control that inherits from CompositeControl. When the control is instantiated, I am dynamically adding a TextBox to its Controls collection. I have overridden the TabIndex ...
0
votes
0answers
33 views
CompositeControl for generating html inside FormView
What is the best way to create composite controls for encapsulating
html generation in asp? I have a lot of forms built with html-tables
that look like this:
<table>
<tr>
...
0
votes
0answers
15 views
How can i recreate control collection on oninit that depends on property on my webpage
I have researched a lot on web before posting this question, regarding how to work with dynamic controls in dotnet. I understand that the dynamically created control on the webform needs to be ...
0
votes
1answer
15 views
compositecontrol - user control - different approaches
I have seen this code to create a Login control, I guess instead of writing this code, we can use an .ascx file to create this control. Can someone explains the difference of these two approaches. ...
0
votes
2answers
69 views
CMS content editor / viewer
One of our users has decided that they need to be able to edit sections of content on our main website and I've been given the task of implementing it. The underlying model is that one or more divs in ...
0
votes
1answer
18 views
Panel in composite control ignores visibility
I'm building a composite control that renders HTML on a page based on a specified state.
If I set up the control, and add it to the ControlCollection for composite, and set the visibility of the ...
0
votes
1answer
75 views
Custom Composite Control
I've Creted Composite control which has FormView and two custom server control. The Control renders correctly. now when i add control to page from toolbox i want to edit Composite Control's FormView ...
0
votes
0answers
72 views
Silverlight Composite Control Dependancy
I have a custome composite control in Silverlight we will call the Test control for the sake of simplicity. This control has three child controls on a blank canvas, textbox1, textbox2, and textbox3. ...
0
votes
0answers
99 views
Problem with CustomValidator on CompositeControl
I'm developing a CompositeControl with a listview and some CustomValidators inside the edit and insert templates of the ListView, When the data is invalid on the customvalidators the update event is ...
0
votes
1answer
125 views
Which control to choose? WebControl or CompositeControl that is the question
I'm looking forward to create some customs controls like AutoCompletes, TagClouds and others. To use in my projects as tools without need to worry every time that i need one of them.
i saw in This ...
0
votes
1answer
271 views
MSDN example of Composite Control
I'm reading through some MSDN example code on Composite controls and finding that there is one thing I don't understand. Using the code here I've created the LabelTextBox control in my project and ...
0
votes
1answer
38 views
How do I cache a composite server control?
How would I use the system caching object, HttpContext.Current.Cache to store a custom server control in the cache?
Currently I have code that looks like this:
string adxkey = ...
0
votes
3answers
414 views
How to save value across postbacks for a composite control without using viewstate
I have a composite control that has a couple of private fields that reference values in the cache and these private fields are called during the constructor method. Since a string key is used to ...
0
votes
2answers
370 views
Failed to load viewstate composite control
I have a composite control that contains a different set of child controls based on the value of one of it's properties at runtime.
Whenever there is a postback, I get the following error:
Failed to ...
0
votes
1answer
377 views
Failed to load viewstate with a composite control
I have created a composite control that changes the controls in it based on the value of one of it's properties called "Type".
The intent is that once this "Type" property is set, it is not changed ...
0
votes
2answers
56 views
Correct order of overrides for a composite control based on an abstract one
I'm writing a set of C# composite web server controls for displaying dialog boxes.
I want to have one abstract class which handles the basic layout and things like titles of the control, then have a ...
0
votes
1answer
164 views
Composite control property that allows coder to select from options
The question is in the title but to make it clearer when you use a normal server control like
<asp:textbox />
<CC1:CtrlArticleList SortBy="Title" ID="compositeControlArticleList" ...
0
votes
1answer
575 views
Text-property of my ASP.NET Composite-control doesn't set text-changes
I have build a composite control which renders a TextControl or a RADEditor control, dependable of a property a set. Both rendered controls have a Text-property. The problem is that when I change the ...
0
votes
1answer
1k views
DropDownList within composite control is losing selected value on postback
I am building a composite server control that currently only has a TextBox and a DropDownList. Here is the code in all its foetal glory:
public Address : CompositeControl
{
private string[] ...
0
votes
2answers
2k views
Error Rendering control - [A] cannot be cast to [B] in the context LoadNeither
I am working on a composite control and this requires me to open multiple Visual studio IDEs and add the control on pages.
This causes Visual Studio to create multiple assemblies.
So every time this ...