Hi!
I would like to know whether .netTiers is compatible with Infragistics and with Telerik web controls.
I tried the demo version of the Telerik web controls without much success:
In a RadGrid, I replaced this binding <%# DataBinder.Eval(Container,
"DataItem.ModuleID") %> with the wollowing one: <%#
DataBinder.Eval(Container, "DataItem.ModuleIDSource.ModuleNomFR") %>, but it
did not work. With the new binding, I should see Module Names instead of Module
IDs in the column, but the column is now empty. On the same page, I also have an ASP
GridView with this binding: <%# Eval("ModuleIDSource.ModuleNomFR") %>, and
it is working, so I know for sure that ModuleIDSource.ModuleNomFR does contain
values.
On another page, I replaced an asp:DropDownList with a radC:RadComboBox,
using the same properties. But I am getting an error. Here is the
control:
<radC:RadComboBox ID="TypeModuleDropDownList"
runat="server" DataSourceID="ModuleDataSource"
SkinsPath="~/RadControls/ComboBox/Skins"
AppendDataBoundItems="true"
SelectedValue='<%# Bind("ModuleID") %>'
DataValueField="ModuleID" DataTextField="ModuleNomFR"
OnSelectedIndexChanged="OnSelectedTypeModuleChanged"
AutoPostBack="true">
<Items>
<radC:RadComboBoxItem
Value="" Text="Tous les types de module" Selected="True"
/>
</Items>
</radC:RadComboBox>
Here is the error:
Specified argument was out of the range of valid values.
Parameter
name: 1
1 is supposed to be a valid value. It is working with a DropDownList
Cheers!
JF