Hello,
I am testing the RadControll for wfp with PRISM. I am using the RadPaneGroupRegionAdapter which I came across in this forum and all is working fine in default configuration.
I would like to know how to make any new RadPanes added to the region ( implemented as a RadPaneGroup) to dock to the left by default.
I am using Telerik 2010 Q3, VS 2010, MSDOTNET 4.0
Any assistance on this matter is much appreciated
Cheers
Hello
Can I add items to combo box column like in the combo box?
Like this
<telerik:RadComboBox >
<telerik:RadComboBoxItem Content="Item1" />
<telerik:RadComboBoxItem Content="Item2" />
<telerik:RadComboBoxItem Content="Item3" />
</telerik:RadComboBox>
Best regards
Ehud
GridViewDataColumn
column;
for (int icnt = 1; icnt < ts.Days; icnt++)
{
column =
new GridViewDataColumn();
column.UniqueName =
"key" + icnt.ToString();
column.IsReadOnly =
false;
RadTreeListView1.Columns.Add(column);
}
I am populating the cell data in RadTreeListView1_RowLoaded event.
var
row = e.Row as TreeListViewRow;
foreach (GridViewCell cell in row.Cells)
{
if (cell.IsLoaded)
{
DateTime dates;
if (DateTime.TryParse(cell.Column.Header.ToString(), out dates))
{
string filter = "dates = '#" + dates.ToShortDateString().ToString() + "#'";
DataRow[] dr = lobjdt.Select(filter);
if (dr != null && dr.Length > 0)
{
cell.Content = dr[0][
"hours"].ToString();
}
}
}
}
I am facing one problem here.
Data in dynamic columns will populate only when columns are visible , data wont get populate if columns are not
visible.
I guess there is a problem with virtulisation while horizontal scrolling..
Please suggest.
237 | Customer 4579 | 70 | 16-Sep-21 |
3259 | Customer 1614 | 42 | 12-Mar-17 |
9588 | Customer 4777 | 81 | 08-Oct-37 |
4099 | This is a <Formatted> Text. |
45 | 08-May-16 |