Telerik Forums
UI for WinForms Forum
1 answer
64 views
Does not hold the values ​​entered in RadMarkupEditor

I have problems trying to enter the value to a RadLabel through the RadMarkupEditor. In that window I write and format text, but lost out everything about the format of the text.
Any help please.

Victor Bocanegra
Lima, Peru
Stefan
Telerik team
 answered on 23 Mar 2011
1 answer
145 views
Hey all,

Is there any property or other way to display the tabs in a RadPageView on multiple lines?  The application I'm developing has about 12 tabs on one screen, and need the user to be aware of what's there without having the tabs scroll off the screen.

Thanks!
Ivan Todorov
Telerik team
 answered on 23 Mar 2011
4 answers
398 views

Hi,

I just want my user to to select a node and then use a button (up or down) to move in the treeview.  I have seen example but they related to ASP.Net.  I would like to do the same in WinForm.

I also tried using the radListbox and achived the desired functionality of moving Up and Down. However  with radListbox  I have different problem.  The problem is, I want users to check and uncheck an item in the list.  I can not figure out how I make radListbox items to appear with check box.

Any help in above to problem will be highly appreciated.


Stefan
Telerik team
 answered on 23 Mar 2011
4 answers
212 views
Hi,
I am binding a treeview to a datatable.
The treeview has self-referencing data. And it loads correctly and shows correctly.

The problem I am having is this. Once the data is reloaded, I want to select the node that was selected already. So I need to use the Find method and make the node selected,

However, I read that the Find Method uses the Name Property to match the search term, but it seems like the Name Property is not populated when bound to a datasource.

Do you suggest a way to overcome this problem?

Thanks,
Kris
Stefan
Telerik team
 answered on 23 Mar 2011
8 answers
376 views
I want to build a RadTree with a Context Menu using a windows forms application. Can you please point me to some code samples/sample application?
I found the online demos for the ASP.Net RadTree, but did not see any samples for their windows counterpart.

Thank you.
Stefan
Telerik team
 answered on 23 Mar 2011
1 answer
67 views
Hi,
I am just playing and learning at the moment, so sorry for the most basic of questions.

I have a table that I set as the datasource of the chart, its only one series and the data displays fine, however I want one of my column in the table to show in the legend.

For example my datatable contains the following data in de creasing qty order

'Item'   ,    'qty'
ABC          42
DEF          33
GHI           28
JKL           12

In my chart, it shows the qty field, and puts in the legend box, the label Qty, and matches the color of the series to a small dot to its left.

However what I want to show is the list of items where the legend is. In the example above the items are just 3 char in length, where as in my actual app the items are long medical drug names, so they can't go below the chart for each bar....

Hope that makes sense ...

Evgenia
Telerik team
 answered on 23 Mar 2011
3 answers
82 views
I've noticed a discrepancy when using the PropertyChanged event on the RadTreeNode and listening for the Selected property name.

The property name value that comes through is "IsSelected", not the actual name of the Selected property. Is there a reason for this?

Simple way to see, add one node to a treeview and a handler for the PropertyChanged event on the node.
Select the node and you'll see "IsSelected" as the propertyName in the PropertyChangedEventArgs.

This caused an issue when I'm using reflection to determine property names with changes and will break a lot of data binding scenarios when you're not using specific strings.
Richard Slade
Top achievements
Rank 2
 answered on 23 Mar 2011
3 answers
82 views
Hi , i have a radgrid populated with a dataset:
Dataset.DS.PianificazioneDataTable dt = new Dataset.DS.PianificazioneDataTable();
  
row["Base"] = item.OFATH;
dt.Rows.Add(row);
  
rgvPianificazione.DataSource = dt;

now when i scroll down the grid, it takes 1/2 seconds to load the next row ( i have many columns...)
is it possible, to load the entire dataset, so the scroll should be immediately

thank in advantage
Jack
Telerik team
 answered on 23 Mar 2011
6 answers
204 views
Hello,

We are using the telerik MultiColumn ComboBox for an application that will be run by most users thru a remote connection.  Our network bandwidth is limited and we are finding that the fade animations of the gridview portion are making the UI very sluggish.  We are using the Control Default theme for now and do not want to have to disable theming completely to remove the animations.  Is there a way to remove the animation effects for the control but still keep the rest of the theme styling?

Thanks!
Jack
Telerik team
 answered on 23 Mar 2011
2 answers
525 views
Hi,
I have a simple databound grid (grdPermissions) that has one "tinyint" column with possible values of 0, 1, or 2, which stand for Deny, Grant, or Not Set correspondingly.  This column is being added as a GridViewComboBoxColumn and bound to a List as shown in the code below.  The problem is that when the grid is bound and the data displayed, the combobox does not display its data until clicked with the mouse.  The combobox seems to have the correct value set, but shows nothing until clicked.  Also, once the combobox is closed the cell returns to showing nothing.  You can see the behaviour in the attached images; image1 shows the initial display of the grid, image2 shows how the cell displays the value when clicked, image3 shows the cell in another row displays its value but the previously selected combobox in the row above now displays no data.
What might I be doing wrong?

'**** BEGIN CODE ****
Imports Telerik.WinControls.UI
Imports System.Data
Imports System.Data.SqlClient

Public Class frmGroupPerms
    Private Sub somefunction()
        '** the GetGroupPermissions() function retrieves a table with the
        '** following columns
        '**    GroupID  int,
        '**    Name  nvarchar(255),
        '**    Description  nvarchar(255),
        '**    AppPermissionType  nvarchar(30),
        '**    PermValue  tinyint - can be 0, 1, or 2
       
        Dim _groupPermissions As DataTable = GetGroupPermissions(_groupId)
        _ConfigureGrid()
        grdPermissions.DataSource = _groupPermissions
    End Sub

    Private Sub _ConfigureGrid()
        Dim _perms As List(Of ComboItem) = New List(Of ComboItem)
        _perms.Add(New ComboItem(0, "Deny"))
        _perms.Add(New ComboItem(1, "Grant"))
        _perms.Add(New ComboItem(2, "Not Set"))

        Me.grdPermissions.AutoGenerateColumns = False
        Me.grdPermissions.Columns.Clear()
        Me.grdPermissions.Columns.Add(New GridViewTextBoxColumn("GroupId"))
        Me.grdPermissions.Columns.Add(New GridViewTextBoxColumn("Name"))
        Me.grdPermissions.Columns.Add(New GridViewTextBoxColumn("Description"))
        Me.grdPermissions.Columns.Add(New GridViewTextBoxColumn("AppPermissionType"))
        Dim _cmb As New GridViewComboBoxColumn()
        _cmb.Width = 150
        _cmb.Name = "PermValue"
        _cmb.FieldName = "PermValue"
        _cmb.HeaderText = "Permission"
        _cmb.DataSource = _perms
        _cmb.ValueMember = "ItemValue"
        _cmb.DisplayMember = "ItemText"
        Me.grdPermissions.Columns.Add(_cmb)
    End Sub

    Private Sub grdPermissions_DataBindingComplete(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.GridViewBindingCompleteEventArgs) Handles grdPermissions.DataBindingComplete
        grdPermissions.MasterTemplate.Columns("GroupId").IsVisible = False
        grdPermissions.MasterTemplate.Columns("Name").Width = 150
        grdPermissions.MasterTemplate.Columns("Description").Width = 150
        grdPermissions.MasterTemplate.Columns("AppPermissionType").Width = 200
    End Sub
End Class

Friend Class ComboItem
    Public Property ItemText As String
    Public Property ItemValue() As Short

    ''' <summary>
    ''' Initializes a new instance of the ComboItem class.
    ''' </summary>
    ''' <param name="itemValue"></param>
    ''' <param name="itemText"></param>
    Public Sub New(ByVal itemValue As Short, ByVal itemText As String)
        Me.ItemValue = itemValue
        Me.ItemText = itemText
    End Sub
End Class
'**** END CODE ****
Stefan
Telerik team
 answered on 23 Mar 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)
Chart (obsolete as of Q1 2013)
Form
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
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
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
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
Styling
Barcode
BindingNavigator
PopupEditor
RibbonForm
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
BarcodeView
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
ToolbarForm
NotifyIcon
DateOnlyPicker
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?