<
telerik:RadComboBox ID="RadComboBox1" Runat="server">
<ItemTemplate>
<input type="checkbox" id="checkBox" />
<%
# DataBinder.Eval(Container, "Text") %>
</ItemTemplate>
<Items>
<telerik:RadComboBoxItem runat="server" Text="Item1" Value="Item1" />
<telerik:RadComboBoxItem runat="server" Text="Item2" Value="Item2" />
<telerik:RadComboBoxItem runat="server" Text="Item3" Value="Item3" />
</Items>
</telerik:RadComboBox>
it can't display the text in the right of CheckBox, but it can works well when I use RadComboBox.Net2.dll which get from the sample code .
if I buy the latest version of RadControls , how to reslove the above problem?
protected
void radGridProducts_ColumnCreating(object sender, GridColumnCreatingEventArgs e)
{
if (e.ColumnType == typeof(GoogleFilterColumn).Name)
{
e.Column =
new GoogleFilterColumn();
int dbId = (int)HttpContext.Current.Session["INSTR_ID"];
(e.Column
as GoogleFilterColumn).ListDataSource = GetDataTable(query);
}}
As you all know the mastertable would have a dataset ..and the detial table would have its own dataset.
The ColumnCreating event doesn't have any event to identify if its a Mastertable or Detailtable.So even for the Detailtable google filter Iam getting the same list of avlues that was created for the Mastertable as the query is same.
when i clcik the google filter in the detailtable i should have a way to pass a differnt query to fetch the results based on that level
| <rad:RadGrid ID="lstDiary" runat="server" OnItemDataBound="OnItemDataBound" PageSize="10" AllowPaging="true" > |
| <ClientSettings> |
| <Resizing AllowColumnResize="true" ResizeGridOnColumnResize="true" ClipCellContentOnResize="true" /> |
| </ClientSettings> |
| <HeaderStyle Width="100px" /> |
| <MasterTableView Width="100%" TableLayout="Fixed" /> |
| </rad:RadGrid> |
