﻿<%@ Control Language="C#" AutoEventWireup="true" CodeFile="MyControl.ascx.cs" Inherits="Controls_MyControl" %>
<%@ Register TagPrefix="aspui" Namespace="Composite.Core.WebClient.UiControlLib" Assembly="Composite"  %>

<!-- selecting a type - changes to this will update the list of items -->
<aspui:Selector ID="typeSelector" runat="server" AutoPostBack="true"> 
	<asp:ListItem Text="Person" Value="Person"></asp:ListItem>
	<asp:ListItem Text="Organization" Value="Organization"></asp:ListItem>
</aspui:Selector>

<!-- the selector holding items of the selected type -->
<aspui:Selector ID="itemSelector" DataTextField="value" DataValueField="Key" runat="server">
</aspui:Selector>

