or
| <tr> |
| <td> |
| <asp:Label ID="Label2" AssociatedControlID="CB_Groupe" runat="server" CssClass="inline-label">Groupe :</asp:Label> |
| </td> |
| <td> |
| <telerik:RadComboBox runat="server" ID="CB_Groupe" DataTextField="Text" DataValueField="Key" |
| Width="230px" Skin="Black" SelectedValue='<%# Bind("GroupeID") %>' |
| DataSource="<%# GetAvailableUsers(Container) %>"> |
| </telerik:RadComboBox> |
| </td> |
| </tr> |
| <tr> |
| <td> |
| <asp:Label ID="Label5" AssociatedControlID="CB_Forfait" runat="server" CssClass="inline-label">Formule :</asp:Label> |
| </td> |
| <td> |
| <telerik:RadComboBox runat="server" ID="CB_Forfait" DataSourceID="ForfaitsDataSource" DataTextField="FormuleComplete" DataValueField="comptes_groupes_id" Width="230px" Skin="Black" SelectedValue='<%# Bind("ForfaitID") %>'> |
| </telerik:RadComboBox> |
| </td> |
| </tr> |
| <asp:AccessDataSource runat="server" ID="GroupesDataSource" DataFile="~/App_Data/bdd.mdb" |
| SelectCommand="SELECT * FROM [groupes]"> |
| </asp:AccessDataSource> |
| <asp:AccessDataSource runat="server" ID="StudiosDataSource" DataFile="~/App_Data/bdd.mdb" |
| SelectCommand="SELECT * FROM [studios] ORDER BY [Ordre]"></asp:AccessDataSource> |
| <asp:AccessDataSource runat="server" ID="ForfaitsDataSource" DataFile="~/App_Data/bdd.mdb" |
| SelectCommand="SELECT [comptes_groupes_id], [id_groupe], [id_tarif], [nb_heures_restantes], [Studio]&', '& [duree]&'h, Backline : '&[comptes_groupes].[backline]&' , '& [nb_heures_restantes]&'h restante(s)' as [FormuleComplete] from [comptes_groupes], [tarifs_studios], [studios] where [id_tarif] = [tarifs_studios_id] and [studios].[id] = [id_studio]"> |
| <SelectParameters> |
| (ControlParameter here ?) |
| </SelectParameters> |
| </asp:AccessDataSource> |
| <telerik:RadAjaxManager ID="ramManager" runat="server" DefaultLoadingPanelID="alpPan1" UpdatePanelsRenderMode="Inline" RequestQueueSize="6"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="ramManager"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="lblOne" /> |
| <telerik:AjaxUpdatedControl ControlID="lblTwo" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |