or
<telerik:RadPageView ID="rpvAssignProcess" runat="server"> <table cellpadding="0" cellspacing="0"> <tr> <td>Available Process</td> <td>Assign Process</td> </tr> <tr> <td> <telerik:RadListBox ID="rlboxAvailableProcess" runat="server" AllowTransfer="True" DataSourceID="SqlDataSource_Process" DataTextField="ProcessName" Skin="WebBlue" TransferToID="rlboxAssignProcess" Height="200px" Width="300px" DataValueField="ProcessName" > <ButtonSettings TransferButtons="All" /> <ItemTemplate> <div> <span style="float:left;padding:10px"> <%# DataBinder.Eval(Container.DataItem, "CustomerID")%> <br /> <%# DataBinder.Eval(Container.DataItem, "ProcessName")%> </span> </div> </ItemTemplate> <WebServiceSettings> <ODataSettings InitialContainerName=""> </ODataSettings> </WebServiceSettings> </telerik:RadListBox> </td> <td> <telerik:RadListBox ID="rlboxAssignProcess" runat="server" AllowDelete="false" AllowReorder="true" Skin="WebBlue" Height="200px" Width="300px" DataSourceID="SqlDataSource_Process1" DataTextField="ProcessName" DataValueField="ProcessName"> <ButtonSettings Position="Right" VerticalAlign="Top" /> </telerik:RadListBox> </td> </tr> </table> </telerik:RadPageView>Protected Sub RadTabStrip1_TabClick(sender As Object, e As Telerik.Web.UI.RadTabStripEventArgs) Handles RadTabStrip1.TabClick If RadTabStrip1.SelectedIndex = 4 Then Try Dim CustomerID As String = "" For Each item As GridDataItem In rgView1.MasterTableView.Items If item.Selected = True Then If CustomerID = "" Then CustomerID = item.Item("CustomerID").Text Else CustomerID += "','" + item.Item("CustomerID").Text End If End If Next SqlDataSource_Process.SelectCommand = "SELECT CustomerID,ProcessName FROM tbl_Process where CustomerID IN ('" & CustomerID & "')" rlboxAvailableProcess.DataBind() Catch ex As Exception End Try End If End Sub<telerik:RadAutoCompleteBox runat="server" ID="people" AllowCustomToken="true" InputType="Token" DataSourceID="dsPeople" DataTextField="Name" DataValueField="ID"></telerik:RadAutoCompleteBox>
<telerik:RadGrid ID="NotifyGrid" runat="server" AutoGenerateColumns="False" CellSpacing="0" GridLines="Horizontal" ShowStatusBar="false" ShowFooter="false" AllowPaging="True" AllowFilteringByColumn="True" AllowSorting="True" EnableEmbeddedSkins="False" Skin="AlSkin" EnableTheming="False"> <GroupingSettings CaseSensitive="False" /> <ClientSettings AllowColumnsReorder="True" ReorderColumnsOnClient="True"> <Resizing AllowColumnResize="True" /> </ClientSettings> <MasterTableView UseAllDataFields="true"> <CommandItemSettings ExportToPdfText="Export to PDF" /> <RowIndicatorColumn FilterControlAltText="Filter RowIndicator column"> </RowIndicatorColumn> <ExpandCollapseColumn FilterControlAltText="Filter ExpandColumn column"> </ExpandCollapseColumn> <Columns> <telerik:GridButtonColumn ButtonType="ImageButton" CommandName="Delete" ConfirmText="" ConfirmTitle="" ConfirmDialogType="RadWindow" UniqueName="delete_notification" ImageUrl="Images/DeleteRedResized.png" ShowSortIcon="false" SortExpression=""> <HeaderStyle HorizontalAlign="Center" VerticalAlign="Top" Width="4%" /> <ItemStyle HorizontalAlign="Center" VerticalAlign="Top" Width="4%" /> </telerik:GridButtonColumn>