SfWeb Dropdownlist populating


Author
Message
Olivier
Olivier
StrataFrame User (430 reputation)StrataFrame User (430 reputation)StrataFrame User (430 reputation)StrataFrame User (430 reputation)StrataFrame User (430 reputation)StrataFrame User (430 reputation)StrataFrame User (430 reputation)StrataFrame User (430 reputation)StrataFrame User (430 reputation)
Group: StrataFrame Users
Posts: 96, Visits: 806
Hi all,

I don't find any example or tutorial to populating a dropdownlist with a business object.

I try two way :

<SFWebBigGrinropDownList ID="DropDownList1" runat="server" BusinessObjectName="oTMessageBo" DataTextField="TMES_LIBELLE" DataValueField="TMES_ID" >
</SFWebBigGrinropDownList>

or

 <SFWebBigGrinropDownList ID="DDL_TMESSAGE" runat="server">
      <PopulationDataSourceSettings BusinessObjectType="oTMessageBo" DisplayFieldNamesAlternate="TMES_LIBELLE|" DropDownFormatString="" FormatString="{0}" MethodToExecute="GetYesNo;" ValueMember="TMES_ID" />
 </SFWebBigGrinropDownList>

Have you an idea ?

I work in c# asp.net with strata.

thanks
Olivier,



==============================================
Asp.net C# - Strataframe - telerik
==============================================
Reply
Michel Levy
Michel Levy
Advanced StrataFrame User (607 reputation)Advanced StrataFrame User (607 reputation)Advanced StrataFrame User (607 reputation)Advanced StrataFrame User (607 reputation)Advanced StrataFrame User (607 reputation)Advanced StrataFrame User (607 reputation)Advanced StrataFrame User (607 reputation)Advanced StrataFrame User (607 reputation)Advanced StrataFrame User (607 reputation)
Group: StrataFrame Users
Posts: 193, Visits: 9K
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?
GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...





Similar Topics

Reading This Topic

Login

Explore
Messages
Mentions
Search