This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Register TagPrefix="fluent" Namespace="Fluent" Assembly="Fluent.ListTransfer" %> | |
... | |
<fluent:ListTransfer Runat="server" ID="ListTransferEmployees" | |
ListControlTo="ListBoxProjectMembers" | |
ListControlFrom="ListBoxEmployees" | |
EnableClientSide="True" | |
> | |
<asp:ListBox ID="ListBoxEmployees" Runat="server" | |
SelectionMode="Multiple" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Register TagPrefix="fluent" Namespace="Fluent" | |
Assembly="Fluent.DataGridAdapter" %> | |
<html> | |
<head> | |
<script language="C#" runat="server"> | |
protected void DataGridAdapter1_DataGridBinding( | |
DataGridAdapter sender, DataGridBindingEventArgs e) { | |
SqlDataAccessCommand command; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Register TagPrefix="fluent" Namespace="Fluent.ControlFocus" Assembly="Fluent.ControlFocus" %> | |
... | |
<asp:TextBox runat="server" ID="FirstTextBox" /><br/> | |
<%-- the control below, SecondTextBox, will be focused on page load --%> | |
<asp:TextBox runat="server" ID="SecondTextBox" /> | |
<fluent:ControlFocus runat="server" Control="SecondTextBox" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Register TagPrefix="fluent" Namespace="Fluent" Assembly="Fluent.ListBoxValidator" %> | |
... | |
<asp:ListBox ID="ListBoxEmployees" SelectionMode="Multiple" Runat="server"/> | |
<fluent:ListBoxValidator | |
ID="ListBoxValidator1" | |
Runat="server" | |
ControlToValidate="ListBoxEmployees" | |
ErrorMessage="Please select an employee" |
NewerOlder