0
votes
0answers
8 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"
…
0
votes
1answer
20 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 …
0
votes
1answer
40 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 …
1
vote
1answer
124 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 …
0
votes
2answers
82 views
Difference between a WebControl and a CompositeControl?
Hello!
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 …
0
votes
0answers
9 views
How to manually force VS2008 Intellisense to search for controls in an assembly?
I have an assembly and a namespace registered as composite controls in web.config in . It takes awhile for VS2008 to search through the assembly for the controls. How do i force visual studio to …
0
votes
1answer
178 views
Creating ASP.NET composite control. How to apply properties associated with SkinID?
I am creating a custom composite control based off of an asp:Label control. I'd like to be able to have the label's default properties be skinable as well as additional properties that I add to my …
2
votes
1answer
130 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 …
0
votes
1answer
139 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 …
0
votes
2answers
332 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 …
0
votes
2answers
103 views
How to give a C# handler file as a url to jquery autocomplete
I am creating a custom control in asp.net . In the control itself i have to call the url for getting results for autocomplete. But both .aspx, .ashx file format are not supported by class library. Is …
0
votes
1answer
56 views
Is it possible to add a UserControl to a Composite control?
I'm trying to build a CompositeControl that's flexible. Depending on some of it's parameters, I would like my CompositeControl to load different user controls in it's CreateChildControls method. The …
1
vote
1answer
73 views
Hiding Control Attributes in ASP.Net
Hello
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 …
0
votes
0answers
120 views
How Do I Utilize An SWT Horizontally Scrolled Composite Using GridLayout?
I have an plugin that displays a composite with a horizontal scrolled bar. I can't figure out how to get GridLayout() to position each widget one row, one after another. If the number of widgets …
1
vote
2answers
138 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 …
