string[] paths = new string[] {@"\\srvname\Z_Drive\docs" }; RadFileExplorer1.Configuration.ViewPaths = paths;
We have developed the application on Windows 7 and it comes by default with IE 8. We tested the application first time on IE 7 and all the look and feel changed completely.
The grid is not being displayed properly, it's all distorted
Please advise asap
<InsertItemTemplate> <asp:DropDownList ID="ddlGender" runat="server"> <asp:ListItem Text="Male" Value="Male"></asp:ListItem> <asp:ListItem Text="Female" Value="Female"></asp:ListItem> </asp:DropDownList> </InsertItemTemplate>
Dim selectColmn As New TreeListSelectColumn()
selectColmn =
New TreeListSelectColumn()
selectColmn.HeaderText =
"select"
selectColmn.UniqueName =
"select"
RadTreeList1.Columns.Add(selectColmn)
templateColumn =
New TreeListTemplateColumn()
templateColumn.HeaderText =
"Invoice #"
templateColumn.UniqueName = "inv_id"
templateColumn.ItemTemplate =
New InvTemplColumn(templateColumn.DataField)
RadTreeList1.Columns.Add(templateColumn)
After selecting few invoices I want to perform some actions like- export,print, for which I need inv_id of selected rows(inv_id is not visible in treelist), but I am not able to get inv_id of selected rows.Is there any option using which I can bind value to selectcolumn. Please let me know if you have any solution. It's very urgent.
Thanks in advance.
RadPane2 is hidden initially on my page. However, I have RadGrid1 in RadPane1, which is visible.
So when I select a row from RadGrid1, this causes the indexchanged event method to fire. RadPane2.Visible is set to True in that method and I populate the detail fields. Using the debugger, I see values going into those detail fields. Unfortunately, on my page RadPane2 does not refresh and show me those updated fields.
What am I missing? Any suggestions?
code:
----------------------------
public void RadDataGrid1_IndexChanged(object sender, EventArgs e) { RadGrid grid = (sender as RadGrid); if (grid != null && RadDataGrid1.SelectedIndexes.Count > 0) { int index = grid.SelectedIndexes[0].GetIntOrZeroIfError(); item = grid.Items[index];
// Detail fields lblDetail_Name.Text = item["Name"].Text;
lblDetail_Address.Text = item["Address"].Text;
RadPane2.Visible = true; } }
----------------------------
Thanks,
Tammie