Telerik Forums
UI for WinForms Forum
6 answers
142 views
2008Q2

The grid displays boolean column as check box, the filter on the column in on
(default), the filter checkbox is not checked - the grid displays all rows.

If the user checks the checkbox, the grid filters all rows that are also checked.
Now if the user clears the checkbox, the grid filters all rows that are
not checked. So far, so good.

The problem is, it's not intuitive for the user, since he has no visual clue,
that filtering is still active. (The UI looks the same as before the initial checking,
but the result is not the same.) Would be nice if the filter symbol would indicate
active filters, or how about a 3 state checkbox?

Erwin
erwin
Top achievements
Rank 1
Veteran
Iron
 answered on 29 Mar 2010
2 answers
113 views
I'm trying to add some a custom menu item when the user clicks on a GridColumnGroupCellElement to hide all columns below this group. However, the Group property of the GridColumnGroupCellElement is always null and the ColumnIndex is -1. Is there any way to determine the GridViewColumn or GroupViewColumnGroup that this element belongs to?

This is the code i'm currently using

private void Grid_ContextMenuOpening(object sender, Telerik.WinControls.UI.ContextMenuOpeningEventArgs e)  
{  
    if (e.ContextMenuProvider.GetType() == typeof(GridColumnGroupCellElement))  
    {  
        GridColumnGroupCellElement element = (GridColumnGroupCellElement)e.ContextMenuProvider;  
        GridViewColumnGroup group = element.Group; // this is always null  
 
        RadMenuItem customItem = new RadMenuItem("Hide Group""HideGroup");  
        customItem.Tag = group;  
        customItem.Click += new EventHandler(Grid_ContextMenu_HideGroup_Click);  
        e.ContextMenu.Items.Add(customItem);  
    }  

Thank you,
Tim


Tim Weckx
Top achievements
Rank 1
 answered on 29 Mar 2010
2 answers
167 views
Hi!

I use rdaRibbonBar in my application and I would like to incorporate the Help Button at the right end of bar. I set the ShowHelpButton property to true. How I can catch when the user click on the button? For now it's only an ? image.

Thanks
Nadia Sangiovanni
Top achievements
Rank 1
 answered on 29 Mar 2010
9 answers
232 views
Currently I have two overlapped Panel Bars, each with their own lists.  By clicking on one it hides the original and makes the other one visible.  On the bottom of the other panel bar is a ToggleButtonElement that hides the panel bar and returns to the other view.  My question is how can i focus on the original element clicked so the user doesn't need to scroll all the way down to where he or she was before it made the switch? Because of the amount of elements in these panel bars and the targeted platform I had to do it this way. 

Here is a visual description of what I am doing:

Panel Bar 1
---------------
Group 1
Group 2
Group 3

By clicking on Group 2, Panel bar 1 becomes hidden and Panel Bar 2 is visible.

Panel Bar 2
---------------
Element 1
Element 2
Back to Groups Element

By clicking on "Back to Groups", Panel Bar 1 is now visible again.

Thanks.
MP
Top achievements
Rank 1
 answered on 29 Mar 2010
2 answers
423 views
Good Afternoon,

When I try to build a windows forms application and try to drag a RadGridView control onto the form it doesn't appear on the form itself but on the grey bar at the bottom of the designer view. I have attached a screenshot to illustrate what I mean.

When I to do anything with the grid in unbound mode or by data binding it (I've tried with lists and data tables) and then run the application, the form simply does not show the grid.

I'm using the dlls only and have imported them as references to the project, imported them to the toolbar and added the following assemblies using the gacutil tool:
TelerikCommon, Telerik.WinControls, Telerik.WinControls.GridView, Telerik.WinControls.UI

The version of the assemblies is 2010.1.10.308.

I have, so far, been able to successfully add other Telerik winforms controls to forms and use them.

Any ideas?

Thanks in advance.
DG
Top achievements
Rank 1
 answered on 29 Mar 2010
5 answers
192 views
Hello!

I know this topic has been discussed here quite often, but I can't get it to work and because they were written a long time ago maybe there are new informations for this.

My target is to add Objects in a RadComboBox or RadListBox (maybe it's supported now).
The first step is to bind a List<Object> to the Controls DataSource, then I fill the List but nothing is drawn/added to the control. If have checked both counts (ComboBox and List), ComboBox is 0 und List not. What is the reason?

Next thing I don't know exactly, is how to get the selected Objects. Im using a workaround by getting the Index of the Item and then getting the real Object from the list using the index. Is this correct or should I use another way?

Maybe someone can give me a solution for this, how to work with ComboBoxes and ListBoxes with my own Objects.

Thanks for your help,
regards
Juergen
Victor
Telerik team
 answered on 29 Mar 2010
2 answers
162 views
Hi Expert,

My question will look maybe really simple but I can't find the way to do it.

1. I want my user to be able to double-click on any part of a row and when this is done I want to be able to know the value of the cell(row user click, column 3)

2. I want to be able to change the back color of some specific rows in blue and some other in white depend of value in the column 3

Thank you for your help.
Jack
Telerik team
 answered on 29 Mar 2010
3 answers
254 views

I have changed this post from the original to focus on the main problem I am having. I am using the newest version of VSB and Winforms in a C# application. The app uses a RadShapedForm with ThemeManager and the repository.xml and theme.xml loaded into it. My RadTitleBar uses three images for the min, max and close buttons as well as three more mouse over buttons. While the gradient fills work on the title bar none of the images show up in the VS2008 designer or at run time. Also I noticed that after loading the saved repository back in the VSB the images are missing there as well. Why aren’t the images showing up in Visual Studio and why does the VSB loose the location of the images after it is saved. I am guessing the VSB is not saving the correct location of the images for some reason but I have no way to check it because the string is not readable. Can anyone help?

I have attaches two images, one is the missing images on the visual studio designer and the other ris the missing images in th VSB after loading the saved repository.

 

Victor
Telerik team
 answered on 29 Mar 2010
1 answer
108 views
Hello !

I create a hiercachical grid bound to 2 tables.If the both tables are empty, when I start to add data, I can add data only to master template .If I press + sign on master template rows, nothing it happens. If i go direct in the child table and insert a value ( direct in sql server)  , after I reload the data in form I can press on plus sign beside of the record in master and everything is working just fine.

What do I do wrong ?

Best regards,
Mihai Velicu



Julian Benkov
Telerik team
 answered on 29 Mar 2010
2 answers
136 views
Hi,

I am in the process of upgrading an exisiting winforms  application that manages room reservations.

Currently we are just showing the reservations in a grid. I am planning to use the RadScheduler to show the reservations.

I already have a Reservation Class as follows.
public class Reservation 
   public int ReservationId { getset; } 
   public DateTime RequestDate { getset; } 
   public string RequestedByName { getset; } 
   public DateTime StartDate { getset; } 
   public DateTime EndDate { getset; } 
   public string Comments { getset; } 
   public int RoomId { getset; } 

How do I go about using the above class to populate the scheduler. The only thing I can think of is to map the above class to the Appointment class for populating the scheduler.  Is there an easier way?

My other question is how do I go about using the Reservation Form that I have already created instead of the Appointment Dialog that the scheduler displays by default when the user wants to edit / create reservations.


thanks



Dobry Zranchev
Telerik team
 answered on 26 Mar 2010
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
SplitContainer
Documentation
Map
DesktopAlert
CheckedDropDownList
ProgressBar
MessageBox
TrackBar
Rotator
SpinEditor
CheckedListBox
StatusStrip
CollapsiblePanel
LayoutControl
ShapedForm
SyntaxEditor
Wizard
TextBoxControl
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
WaitingBar
GroupBox
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
NavigationView
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
TreeMap
StepProgressBar
SplashScreen
Flyout
Separator
SparkLine
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?