Telerik Forums
UI for WinForms Forum
10 answers
847 views
Hi guys.
 I use win forms . and telerik gridview.
How can I filter a radgridview with a textbox_keypress. not by radgrid's filter?(while I am typing in textbox, rad grid view data is filter)
 is it possible?
thnx.
DoomerDGR8
Top achievements
Rank 2
Iron
Iron
Iron
 answered on 26 Jan 2011
2 answers
132 views
Hi

How can i clear ITEMS from Telerik.Charting.ChartSeriesItem ???

for example :

dim list as new list of single
 and easily i can clear items like list.clear

but i am confused about  ChartSeriesItem  :)
Sina
Top achievements
Rank 1
 answered on 26 Jan 2011
2 answers
92 views
I have the need to deploy multiple applications that use the rad controls.  In general, I need to deploy the 2 DLL's telerikcommon and telerikwincontrols.  Rather than have them deploy with each application, I want to have a seperate deployment of these 2 dlls to the gnc and then have them marked are pr-requesites for the other application deployments.  I am not sure how this can be accomplished.  Any help you can provide in this matter will be greatly appreciated. 
Richard Slade
Top achievements
Rank 2
 answered on 26 Jan 2011
2 answers
120 views
Hi,
After attaching a datasource to a radgridview , I apply best fit on the entire grid. But sometimes my grid behaves wierd and gives me something like the attached image. Please help.

Thanks a lot
Shweta
Edward Chen
Top achievements
Rank 1
 answered on 26 Jan 2011
4 answers
167 views
Ok i am using Entity Framework to access my data, I have no problem adding a record or deleting a record. But when I want to update a record I cant figure out what events to capture.

I have tried adding a  RadGridView1_RowsChanged to the code and it works great for the update, but my problem occurs now that when I add a record to the grid RadGridView1_RowsChanged gets called before RadGridView1_UserAddedRow.

In fact the NotifyCollectionChangedAction.ItemChanged gets called before NotifyCollectionChangedAction.Add gets called
So as soon as I leave a cell in the row my itemchanged fires before the add and i get problems.

How can i idenitfy if row is being added instead of updated. I sue wish there was a UserUpdatedRow event

Any help is appreciated

Public Class ManageMemberType
    Public context As New MIMSModel.MIMSEntities
    Dim newMemType As MemType
    Dim updMemType As MemType
    Dim dmemtype As MemType
    Dim rtype As String
  
  
    Private Sub ManageCompanyType_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        Dim query = (From m In context.MemTypes Select m).ToList
        RadGridView1.DataSource = query
  
    End Sub
  
      
  
  
  
  
    Private Sub RadGridView1_RowsChanged(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.GridViewCollectionChangedEventArgs) Handles RadGridView1.RowsChanged
  
        If e.Action = Telerik.WinControls.Data.NotifyCollectionChangedAction.ItemChanged Then
            Dim updrow As GridViewDataRowInfo = CType(e.NewItems(0), GridViewDataRowInfo)
  
            updMemType = MemType.CreateMemType(updrow.Cells("Type").Value.ToString)
  
            updMemType.Desc = updrow.Cells("Desc").Value.ToString
  
  
            DataAccess.UpdateEntity(updMemType, "MemTypes")
  
        End If
  
  
            End Sub
  
  
  
  
  
  
    Private Sub RadGridView1_UserAddedRow(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.GridViewRowEventArgs) Handles RadGridView1.UserAddedRow
        newMemType = MemType.CreateMemType(e.Row.Cells.Item("Type").Value.ToString)
        newMemType.Desc = e.Row.Cells.Item("Desc").Value.ToString
        Try
            context.MemTypes.AddObject(newMemType)
            context.SaveChanges()
            MsgBox("record Added")
        Catch ex As UpdateException
            e.Row.Delete()
            MsgBox(String.Format("The object could not be added. Make sure that a Member type of '{0}' does not aleady exist.", newMemType.Type))
        End Try
  
  
    End Sub
  
  
    Private Sub RadGridView1_UserDeletingRow(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.GridViewRowCancelEventArgs) Handles RadGridView1.UserDeletingRow
        rtype = e.Rows(0).Cells(0).Value.ToString()
        Dim rcount = (From r In context.GetCompanyInfoes Where r.CompanyType = rtype Select r).Count
        If rcount > 0 Then
            MsgBox("There are  " + rcount.ToString + " companies assigned to this member type, You cannot delete this type")
        Else
            Try
                dmemtype = MemType.CreateMemType(rtype)
                DataAccess.DeleteEntity(dmemtype, "MemTypes")
            Catch ex As Exception
                MsgBox("There was a problem deleting the Member type of " + rtype + " Please notify IT")
            End Try
  
        End If
    End Sub
  
  
End Class
DoomerDGR8
Top achievements
Rank 2
Iron
Iron
Iron
 answered on 25 Jan 2011
1 answer
90 views
I got the new version Q3 2010 after I was using 2009 Q2
I uninstalled all 2009 files and installed the new Q3
Now, all my old applications that I developed using Telerik Controls are giving errors and I spend hours repairing references
is there any solutions?
Richard Slade
Top achievements
Rank 2
 answered on 25 Jan 2011
6 answers
119 views
Hello. I have been using Telerik for a while and i must say i am very impressed. There isn't almost anything that we can't do.
But this time i run into a problem, as i wanted to apply drag and drop in my radmenu and it does not have such implementation. Maybe i am missing something, but is there anyway to implement this?
Thanks in advance,
Bes regards, Rui Silva
Jack
Telerik team
 answered on 25 Jan 2011
2 answers
264 views
hi,
Can i create fade IN/Out effects on all controls available in a rad form.
Like i want a button to appear not at once but to fade in.
Controls don't have an opacity property so i cant loop through that.
Any other way using Telerik. 

Thank you!!!
Svett
Telerik team
 answered on 25 Jan 2011
3 answers
131 views
Hi,

Is it possible when exporting to excel to use the column's field name instead of the heading text?

In other words, we would like to use a more user friendly heading text for the columns in the grid but when exporting it should use the field name instead. The default behavior is to export using the column's heading text.

Thanks
Richard Slade
Top achievements
Rank 2
 answered on 25 Jan 2011
4 answers
729 views
Hi,
I am using PageView Control of view mode strip like Tab i want to hide some tabs which is PageviewPage in PageView ,
on check box click event,and also want to hide some tabs first time when page is load.Is there any way to do this.
Richard Slade
Top achievements
Rank 2
 answered on 25 Jan 2011
Narrow your results
Selected tags
Tags
GridView
General Discussions
Scheduler and Reminder
Treeview
Dock
RibbonBar
Themes and Visual Style Builder
ChartView
Calendar, DateTimePicker, TimePicker and Clock
DropDownList
Buttons, RadioButton, CheckBox, etc
ListView
ComboBox and ListBox (obsolete as of Q2 2010)
Form
Chart (obsolete as of Q1 2013)
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
PropertyGrid
Menu
RichTextBox (obsolete as of Q3 2014 SP1)
Panelbar (obsolete as of Q2 2010)
PivotGrid and PivotFieldList
Tabstrip (obsolete as of Q2 2010)
MaskedEditBox
CommandBar
PdfViewer and PdfViewerNavigator
ListControl
Carousel
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
Panorama
New Product Suggestions
VirtualGrid
Toolstrip (obsolete as of Q3 2010)
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
CheckedDropDownList
ProgressBar
TrackBar
MessageBox
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
CollapsiblePanel
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
Styling
Barcode
PopupEditor
RibbonForm
TaskBoard
Callout
NavigationView
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Security
LocalizationProvider
Dictionary
SplashScreen
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?