|
Who Are We?Fluent Consulting is a software development and consulting firm that specializes in enterprise application integration, web applications, and software product development. We are a dedicated team focused on providing the highest level of quality and value for our clients. Please feel free to visit our corporate site or get in touch! |
ListTransfer Component Released
The ListTransfer Control simplifies the transfer of ListItems and is useful in the creation of double or mutliple listbox controls. With this component you can lay out your typical ListControls such as the ListBox, then just drag on the ListTransfer Control and wire it up. More details.<script runat="server"> void AddEmployees(object sender, EventArgs args){ ListTransferEmployees.CopySelected(); } void AddAllEmployees(object sender, EventArgs args){ ListTransferEmployees.CopyAll(); } void RemoveEmployees(object sender, EventArgs args){ ListTransferEmployees.RemoveSelected(); } void RemoveAllEmployees(object sender, EventArgs args){ ListTransferEmployees.RemoveAll(); } void MoveUp(object sender, EventArgs args){ ListTransferEmployees.MoveUpListControlTo(); } void MoveDown(object sender, EventArgs args){ ListTransferEmployees.MoveDownListControlTo(); } </script> ... <asp:ListBox ID="ListBoxEmployees" Runat="server" SelectionMode="Multiple" CssClass="listbox" /> ... <fluent:ListTransfer Runat="server" ID="ListTransferEmployees" ListControlTo="ListBoxProjectMembers" ListControlFrom="ListBoxEmployees" /> <asp:LinkButton Runat="server" OnClick="AddEmployees"><img border="0" src="images/right.gif"></asp:LinkButton> <asp:LinkButton Runat="server" OnClick="RemoveEmployees"><img border="0" src="images/left.gif"></asp:LinkButton> <asp:LinkButton Runat="server" OnClick="AddAllEmployees"><img border="0" src="images/rightAll.gif"></asp:LinkButton> <asp:LinkButton Runat="server" OnClick="RemoveAllEmployees"><img border="0" src="images/leftAll.gif"></asp:LinkButton> ... <asp:ListBox ID="ListBoxProjectMembers" Runat="server" SelectionMode="Multiple" CssClass="listbox" /> ... <asp:LinkButton Runat="server" OnClick="MoveUp" ><img border="0" src="images/up.gif"></asp:LinkButton> <asp:LinkButton Runat="server" OnClick="MoveDown"><img border="0" src="images/down.gif"></asp:LinkButton>
This entry was posted in the following categories:
Aspect-Oriented Components
Posted by mlehman at October 29, 2003 10:40 AM
Comments
Great job !
Posted by: Shaho at December 12, 2003 04:27 PMCopyright © 2002-2003 Fluent Consulting. All rights reserved.



