CultureInfo cultureInfo = new CultureInfo("es-ES");DateTimeFormatInfo dateInfo = new DateTimeFormatInfo();dateInfo.ShortDatePattern = "dd/MM/yyyy hh:mm:ss";cultureInfo.DateTimeFormat = dateInfo;RadDateTimePicker newTime = new RadDateTimePicker();newTime.Culture = cultureInfo;<Trigger Property="Validation.HasError"Value="True"><Setter Property="FrameworkElement.ToolTip" Value="{Binding RelativeSource={RelativeSource Self}, Path=(Validation.Errors).CurrentItem, Converter={StaticResource edenValidationErrorToolTipConverter}}" TargetName="PART_DateTimeInput" /> </Trigger>| Hours | |||
| Director | 100 | ||
| SubDirector A | 40 | ||
| Manager A1 | 10 | ||
| Manager A2 | 30 | ||
| SubDirector B | 60 | ||
| Manager B1 | 25 | ||
| Manager B2 | 35 |

Hi,
I would like to data bind folder content to Carousel and show related icons in the Carousel and open the document / picure when it is double clicked. Folder contents may be picture file,video files, excel documents, word documents and other documents
Is this possible?
Please let me know
Thank you
Nick
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();
}
}
}
}
But I am facing one more diffrent problem.
I want to edit cells of cloumns which I have added dynamically.
I am able to click and edit the data ... but data gets disappeares when user leave the cell and click somewhere else in the window.
Editing is working correctly in static clumns.
Am I missing anything while adding columns ?