Hi,
I created a user control containing only a RadCardView (for easy re-usability) and databound it to an ObservableCollection. Generally it works pretty well but some things need to be adjusted.
I noticed the ItemRemoved event with the "Delete key" thing, but i can't find the way to activate this feature to be able to remove items (with buttons or right click)
Also, I want to change the displayed names, so I changed the text property for each cardViewItem and set DrawText to false for some, but when I launch my application, only FieldName properties appear and DrawText is ignored.
Any help on how to achieve this two things would be appreciated,
Best regards.
Hi,
i want to disable filtering as you type in GridView and change it to apply filter only when you leave filter cell.
Had no success with this so far. Can someone help me ?
Thanks,
Goran.
I"m not using datasets but I'm manually doing the updates to the tables. I have the code from the custom edit form and the email working. When the Appointments_CollectionChanging(object sender, NotifyCollectionChangingEventArgs e) is triggered, I assign:
var app = (Appointment) e.NewItems[0];
at this point, using a breakpoint and Watch, I have access to app.Email and the email is displayed. However, during coding, if I type app.Email, I get the
'Appointment' does not contain a definition for 'Email' and no extension method 'Email' accepting a first argument of type 'Appointment' could be found. Since I'm storing the data myself, how do I create the code to read this value?
Seems that scrollbar sizes is not updated when switching from MetroTouch to any other theme.
How to reproduce:
Create a Form, change it to RadForm.
Add RadVScrollBar, dock it to the right.
Create two buttons, add onclick handlers
System::Void radButton1_Click(System::Object^ sender, System::EventArgs^ e) {
Telerik::WinControls::ThemeResolutionService::ApplicationThemeName =
"TelerikMetroTouch"
;
}
System::Void radButton2_Click(System::Object^ sender, System::EventArgs^ e) {
Telerik::WinControls::ThemeResolutionService::ApplicationThemeName =
"Desert"
;
}
Press button1, then button2. The scrollbar size is bigger than expected (see screenshot)
Telerik_UI_For_WinForms_2016_1_216_Dev.msi / VisualStudio2010 / C++CLI
Hi Telerik Team,
Does the evaluation of an expression in a column generates an Event? Or is there a way to intercept the evaluation process and
substitute/enhance with my own code?
The expressions that I need to use require data points that are not found in the dataset used in the GridView, so I need a way to
intercept the evaluation to swap string variables that are not in the dataset with the actual value found within the application or a different dataset.
Regards.