Salut Olivier,
Hi Olivier,quand tu utilises un controle SF aspx pour la première fois, je te conseille de commencer par utiliser le mode de design. Comme ça, tu peux repérer dans la feuille de propriétés ce qui est nécessaire pour cette classe SF.
When you begin with a new SF aspx control, my advice would be to begin with using design mode. I find it more simple, in order to see in the property sheet what is mandatory for this SF class.par exemple, ici,
as an example, see below
on voit bien qu'il faut renseigner le PopulationType et le PopulationDataSource. Tu commences par le PopulationType, en choisissant "BusinessObject"
One can see that PopulationType and PopulationDataSource are 2 required properties. Set the PopulationType first, by choosing "BusinessObject"Ensuite, tu peux configurer le PopulationDataSourceSettings, ça te propose un assistant:
Now, you can configure the PopulationDataSourceSettings, you'll see the wizard:
Tu choisis le BO parmi ceux de ton projet, la méthode à éxécuter pour peupler la liste, et les colonnes à afficher.
Choose the BO from the list coming from your project, the method to execute for populate the list, and the columns to show. Au final, tu obtiens du code comme celui-ci, par exemple:
Finally, your code should be as this example:
<SFWeb:DropDownList ID="DropDownList1" runat="server"
PopulationType="BusinessObject">
<PopulationDataSourceSettings BusinessObjectType="TestBO.BOaffaires"
DisplayFieldNamesAlternate="ville|anconstruc|" DropDownFormatString=""
FormatString="{0}{1}" MethodToExecute="FillDataAllFields;"
ValueMember="bi_id" />
</SFWeb:DropDownList>
Est-ce plus clair?