Hi,
i use a RadGridView bound to a ObservableCollection<Calls> with some Columns like Name, Number, Date, Time,...
The Column "Date" ist declared as DateTime in my ViewModel and the Column "Time" is a string. I have to sort my
Collection by Date and Time:
Comin from log:
Prusik#4862416#8:30#20.10.2016#incoming.png#(284,1,0)
Prusik#4862416#8:40#20.10.2016#incoming.png#(284,1,0)
Prusik#4862416#8:50#20.10.2016#incoming.png#(284,1,0)
Golf & Thermenresort Stegersbach GmbH#06803280292#14:00#19.10.2016#incoming.png#(16364,0,0)
Golf & Thermenresort Stegersbach GmbH#06803280292#13:00#19.10.2016#incoming.png#(16364,0,0)
Should be sorted to
Prusik#4862416#8:50#20.10.2016#incoming.png#(284,1,0)
Prusik#4862416#8:40#20.10.2016#incoming.png#(284,1,0)
Prusik#4862416#8:30#20.10.2016#incoming.png#(284,1,0)
Golf & Thermenresort Stegersbach GmbH#06803280292#14:00#19.10.2016#incoming.png#(16364,0,0)
Golf & Thermenresort Stegersbach GmbH#06803280292#13:00#19.10.2016#incoming.png#(16364,0,0)
What is to do to geht thisrunning?
And i also want to insert a new incoming call on top of the RadGridView?
Thanks a lot
Best Regards
Rene
Hi, it's possible to create GridView Row toolTip with Image whose ImageSource is generated from Row data?
In my application I've collection of objects in GridView. Objects contains a few properties for generate image. I want to show tooltip with image generated from row when mouse is over it.
Hi,
I want to modify the height of the period zone and change the font size. (see screenshot).
How can I increase or decrease the size of this part only?
Jean
Hello,
How can i get listlevel value from a numbered or bulleted list. I want to iterate through every list members and get the max listlevel from it. thanks in advance.
Deri.
Hi,
After the installation of Windows 10 Anniversary Update (1607) we observed that the rendering of the SchedulerView control in our application is broken. Especially the display of Resources is affected (e.g. Resource headers are multiplied randomly on the whole control). We installed the .NET 4.6.2 on some older system and got the same problem. I found information about the changes in .NET 4.6.2 https://msdn.microsoft.com/en-US/library/ms171868(v=vs.110).aspx#WPF462. It seems the guys at Microsoft did some changes to the group sorting area. My question is - did anyone experience similar issues after the recent updates? Any hints are appreciated.
Hi, I have some RadPanes in a RadPaneGroup, and I want to change one of the RadPane's order, just like to the first tab position or somewhere. How to do it?
Thanks
Hi, I use databinding for the radtreeview itemsource, and it's easy to get the xmlelement of the radtreeview's item. I want to expand the readtreeview's item , how to do it when I only know the xmlelement?
Thanks
[RefreshProperties(RefreshProperties.All)]
public
MyType MyProperty
{
get
{
return
_myProperty;
}
set
{
_myProperty=value;
RaisePropertyChanged("MyProperty ");
}
}
public
bool OtherProperty2
{
get
{
return
_otherProperty2;
}
set
{
_otherProperty2=value;
if(value)
{
MyProperty = new MyType();
}
else
{
MyProperty = null;
}
RaisePropertyChanged("OtherProperty2");
}
}
Hello, I have questions.
1. How can I type Arabic numbers in RadRichTextBox? The numbers are always English although the key board is in Arabic mode.
2. How can I write a code to add a bullet with the character which is appended in the first attachment?
3. Actually I have to have a kind of bullet which has a vertical line for entire bullet-paragraph and has the first-appended character for each bullet (as it can be figured in second attachment? How can I do this and set the color of the vertical line and bullet?
Thanks