Telerik Forums
UI for WPF Forum
1 answer
122 views
Do you have any plans to introduce charts using the WPF 3D capabilities? I am asking because we have a requirement for this in an upcoming application and I'd like to find an off-the-shelf product with these caps already in it.

Thanks.
Giuseppe
Telerik team
 answered on 23 Mar 2009
1 answer
105 views
Cannot find resource named '{DefaultCheckBoxStyle}'. Resource names are case sensitive.  Error at object 'System.Windows.Controls.CheckBox' in markup file 'ExampleControl;component/example.xaml' Line 141 Position 23.


in chart flexible Api program.


tell me the solution
Dwight
Telerik team
 answered on 23 Mar 2009
4 answers
213 views
Hi,

with my first tries on RadGrid I had to learn that there is a problem with the filter.
Reproducing it is easy.
Buil a SQLServer table (let's call it SimpleTable) with two fields - an ID (identity column as PK) and a ntext column.
Enter one record to this table.
Now add a EntityModel (maybe it crashe with other kind of access also - I only tried with EM) and place that table in it.
Add a RadGrid to a WPF Form and in Window_Loaded do
MyEntities mE=new MyEntities();  
var X=from vX in mE.SimpleTable select vX;  
radGridView1.ItemsSource=X
Now run the app - click on the ntext column's filter symbol -- CRASH.

Regards

Manfred
ManniAT
Top achievements
Rank 2
 answered on 20 Mar 2009
1 answer
115 views
Hi,

Before I begin there are some great things about Telerik, one is there support, second to none. Their web controls, fantastic. However one of my main worry is that Telerik never completes their documentation and some of there controls are very buggy. Not that this is so bad in its self, (as devs, we are all up against time). If you take a look at telerik they offer above and beyond UI controls:-Reporting, ORM, Test Studio. Is Telerik becoming a 'Jack of all Trades'. Is Telerik becoming diluted! To the point:- I wish Telerik would concentrate in finishing what they have started instead of bringing out new products.

I am a supporter of Telerik, please do not take offence, its just an observation


All the best

P
Vassil
Telerik team
 answered on 20 Mar 2009
1 answer
95 views
How can I hide the week header?

Regards,

Henrique
Boyan
Telerik team
 answered on 20 Mar 2009
1 answer
122 views
Hi!

Currently, I'm able to obtain the selected row of a GridView following the instructions of a post in this forum. Now I need to obtain the selected cell ... or at least selected column in a edit-only GridView.
¿It is posible?

Thanks.
Pavel Pavlov
Telerik team
 answered on 20 Mar 2009
1 answer
477 views
Hello,
 I am working on the Scrollviewer styling, the approach i took at first was to put the treeview in the ScrollViewer, and applying the style to the scrollviewer itself, but in that case the treeview contents could not be scrolled, even by setting the  CanContentScroll Property to true, and Vertical and horizontal scrollbar visibility  to Auto. The I tried without the ScrollViewer and using the tree's default scrolling property, I worked fine but  I dont Know how to put the style on the tree's scrollviewer ?

Please look into this and tell me the possible solutions.

Thanks and regards
Tihomir Petkov
Telerik team
 answered on 20 Mar 2009
2 answers
89 views
Hi,

Thomas (Originator of the other post) marked this
http://www.telerik.com/community/forums/wpf/gridview/2009-q1-breaking-change-on-update-events.aspx
Thread as solved.
That's OK since he can live with only cell events.

For me the problem still exists - therefore I opened this thread.
I have no EditEnded events on a row - as written in the documentation.
Nor do I get events from GridViewDataControl.RowEditEndedEvent  as mentioned by Anastasia in the other post.

So any help on how to get an event when ROW editing ends would be very important!

Regards

Manfred
ManniAT
Top achievements
Rank 2
 answered on 19 Mar 2009
1 answer
63 views
I installed the 2009-Q1 release and now have an error on my page initialization.

The grid is populated with:

this

 

.grdChurches.ItemsSource = this.Church.GetChurchesByAlpha("A");

 

 

 

 

The grid is fine and the ItemsSource has 125 records, but I have a business object that I'm trying to bind to the currentrecord of grid which when it runs the following line of code says CurrentRecord is null.

DataRecord record = (DataRecord)grdChurches.CurrentRecord;

This worked just fine under 2008-Q3, so when is CurrentRecord populated now?  I tried Records[0] but it also was null.

Thanks,
-Sid.

 

Stefan Dobrev
Telerik team
 answered on 19 Mar 2009
1 answer
156 views
Hi,

it's really bitter what I had to experience with RadGridView today.
I makes me thing if Rad stands for "Rough And Dirty" :)

I already posted the filter crash.
But there is more - editing.

OK - I start with the documentation.
There I find (under "Data Editing Support") some information.

The first I find is "Listen for EditEnded event"....
Sounds logical - to bad that RadGridView does not have this event.
--By the way - the Microsoft DataGrid has something called RowEditEnding (as well as some competitors Grids do have this event)
--Anyhow - since I could not such an event I was looking to the documentation.

So I read on and find how to add a new row.
I find how to edit a cell.
How to delete a row....
But nothing about editing a ROW (is editing a cell more common?)
I read about the cell editing - and guess there could be something like this for a row also.

So I go on to the online samples - and find the event telerik:GridViewRow.EditEnded must be handled.
OK, not so nice that it is not a native event of the grid (like with other grids) but OK.
I add the handler - and nothing happens.
So, the handler is there - it shows up in XAML intellisense - but nothing happens.
Next I used snoop to check for events.
And found that only the "CellEdited" event gets fired.
First thought - thats why the help shows "cell editing" instead of row editing.
But thinking about service databinding and other common scenarios I could not believe this.
And by the way -- the events are (at least) declared.

So my way brought me here - and I found that I have to bind to GridViewDataControl.RowEditEnded.
So I added this in my XAML -- and got an error message.
OK - than make it from code.
Of course this is AddHandler -- and so I get no "press tab to create...."
This made me think that Rad could not stand for Rapid Application Devel :)
Anyhow - handcoding the event I was curious if it will work now (snoop told me a different thing).

And YES - it did not work :(

Cell Editing is useless - we build distributed apps - I can't go out an call the service for every single field.
This would also make problems with auditing.
I just imagine - normally I get "user XXX changed ZZZ".
Now I would get such an entry 20 Times - per row per user per change...

Conclusion:
Documentation does not fit the current version there you can find (Data Editing Event Sequence) that GridViewRow.EditEnded is the last event in....
The need to add handlers via AddHandler has nothing to do with "normal WPF development" - this should be possible in XAML.

Regards

Manfred
Pavel Pavlov
Telerik team
 answered on 19 Mar 2009
Narrow your results
Selected tags
Tags
GridView
General Discussions
Chart
RichTextBox
Docking
ScheduleView
ChartView
TreeView
Diagram
Map
ComboBox
TreeListView
Window
RibbonView and RibbonWindow
PropertyGrid
DragAndDrop
TabControl
TileView
Carousel
DataForm
PDFViewer
MaskedInput (Numeric, DateTime, Text, Currency)
AutoCompleteBox
DatePicker
Buttons
ListBox
GanttView
PivotGrid
Spreadsheet
Gauges
NumericUpDown
PanelBar
DateTimePicker
DataFilter
Menu
ContextMenu
TimeLine
Calendar
Installer and Visual Studio Extensions
ImageEditor
BusyIndicator
Expander
Slider
TileList
DataPager
PersistenceFramework
Styling
TimeBar
OutlookBar
TransitionControl
FileDialogs
Book
ToolBar
ColorPicker
TimePicker
MultiColumnComboBox
SyntaxEditor
VirtualGrid
NavigationView (Hamburger Menu)
Wizard
ExpressionEditor
WatermarkTextBox
DesktopAlert
BarCode
SpellChecker
DataServiceDataSource
EntityFrameworkDataSource
RadialMenu
ChartView3D
Data Virtualization
BreadCrumb
LayoutControl
ProgressBar
Sparkline
TabbedWindow
ToolTip
CloudUpload
ColorEditor
TreeMap and PivotMap
EntityFrameworkCoreDataSource (.Net Core)
HeatMap
Chat (Conversational UI)
VirtualizingWrapPanel
Calculator
NotifyIcon
TaskBoard
TimeSpanPicker
BulletGraph
Licensing
WebCam
CardView
DataBar
FilePathPicker
Callout
PasswordBox
SplashScreen
Localization
Rating
Accessibility
CollectionNavigator
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
InlineAIAssistant
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?