Telerik Forums
UI for WinForms Forum
37 answers
362 views
We put the latest build (Q3) on a few weeks ago. Now all of our comboboxes in the grids stopped working. I did not put on the Q2 version back on to confirm, but I (and my other team members) thought they worked in Q2.

Here is what happens:

1) User drops down a combobox in the grid.
2) User selects an entry from the combobox.
3) THE COMBO BOX DOES NOT CLOSE

Can anyone confirm this? Will there be a fix to this soon? Or do I have to write code in every one of our forms to manually close the combobox? If I have to write code, anyone know what that code would look like?

Thanks for any tips!
Stefan
Telerik team
 answered on 18 May 2011
7 answers
147 views

Hi

 

I have column GridViewTextBoxColumn.
For some rows I use
RadDropDownListEditor in this column. I have random issue that sometimes drop down list cannot be collapsed by mouse click I have to press enter to collapse drop down list. It works fine in Q2 SP2.

Very bad surprise...

Is there any workaround for this issue in Q3?

 

Regards

Stefan
Telerik team
 answered on 18 May 2011
1 answer
128 views
Hello,

Suppose we have a gridview where I grouped data by a column "Date".
Suppose I add an aggregation expression like "Sum" for one or more column.

When the gridview is totally expanded I see first the Group Header Row that show the value of the group.
Under this row I have the result of the sum for each column of the grid.

The problem is when I collapse the Group Header Row, the row that contains the sum result for each column is hide (with the data).

Is there a way to mantain visible the aggregates results row when I collapse the Group Header Row?

I send you as attachments tow picture:
the first image show in the red circle the row I'd like to be visible after the collapse (second image).

thanks for any answer,
Alcide
Jack
Telerik team
 answered on 18 May 2011
4 answers
160 views
I have AllowColumnReorder off on my grid. However, it still allows the user to drag columns. They can't be dropped anywhere, but the client is finding this distracting. They don't want the user to be able to drag a column accidentally and see the circle with the line through it.

Is there a way to disable dragging of the columns?
Stefan
Telerik team
 answered on 18 May 2011
4 answers
132 views
In our system, you are able to associate multiple staff members to a single Appointment object. 

How would we accomplish showing this on the scheduler? From the looks of it, the scheduler requires a 1 to 1 relation between the staff and the appointment.

Here is a rough example of our structure... Link
Stefan
Telerik team
 answered on 18 May 2011
2 answers
138 views
Hi,

i feel like an idiot because i'm not able to find a solution for my quite easy problem:

I got a radDataGrid with 5 Columns, added through dataGrid.DataSource.

Then i added a ComboBoxColumn with name "Status", and NullValue = "False", so all in all i got 6 Columns (1 of them Comboboxcolumn)

If i change the value of the comboboxcolumn from "False" to "True", the whole row should become green.

I really have no idea how to fix this easy problem. And i really searched quite a while.

So what i wanna know: How can i read the current value in the combobox of the comboboxcolumn?
this.radGridView1.Rows[0].Cells["Status"].Value.ToString();
Above code doesn't work. I have really no idea!

Greetings
Christian
Stefan
Telerik team
 answered on 17 May 2011
1 answer
120 views

Hi,

I have a RadPanel and I've added an ImagePrimitive to it. I trying set the image in the center of the panel, but image is not centered after resize. After debugging I found out the image get the correct location values (the ones that should be after resize), but the screen displays the values of the previous resize. I've tried refreshing the form but it still doesn’t work.

I'm using Q1 2010 SP2

 

Thanks for your help.

Sharon.
Stefan
Telerik team
 answered on 17 May 2011
2 answers
211 views
Hello,

I have a problem with CellFormatting handle of GridView.
I have a column that contains 8-char strings that rappresents a date in the format yyyyMMdd.
In order to make more confortable the visualization of the date to the user, I change the format in dd/MM/yyyy using CellFormatting.

void radGridView1_CellFormatting(object sender, CellFormattingEventArgs e)
{
   base.OnCellFormatting(sender, e);
   GridCellElement ce = e.CellElement;
   ce.Value = ChangeDateFormat(ce.Value);
}

The problem I got in runtime is it seems the GridView apply this cell formatting only for the cells that are currently displayed to the user.
The other cells that are not visible but could be reach using the vertical scrollbar  mantains the old format yyyyMMdd.

As a terrible consequence of this behavior is when I group by the date column, I have some rows with the original format yyyyMMdd, and other rows with the new format dd/MM/yyyy. Although they rappresents the same date (such as 20111012 and 12/10/2011) the grouping engine recognize them as different values and it groups the rows in two different groups.

So I need a suggestion to avoid this problem, what should be the correct method to handle to makes this cell formatting in order to be sure it is done to all the rows.

Another conseguence of the problem is when I export to excel or cvs, the behaviour is pretty like the same: I got some rows with the new format dd/MM/yyyy (exacly the rows that are currently displayed) and the other are saved with the old format (yyyyMMdd).

I suppose this is a sort of mechanism where the cell formatting is applied in runtime only to the displayed cells, probably for speed optimization purpose. In this case for me the cell formatting method is totally unuseless, so I need to know the right way to do the job.

Thanks for any aid
Alcide
Alcide Burato
Top achievements
Rank 1
 answered on 17 May 2011
1 answer
68 views
Hi,

RadschedulerNavigator is having Day View, Week View, Month View and Timeline View.

Is possible showing the schedule in quarterly view and yearly view?

Thanks in advance

Stefan
Telerik team
 answered on 17 May 2011
4 answers
226 views
Hi all,

I might be a little newbie to Telerik Winform controls, so please pardon me in advance.

I want to keep track of the edited rows, which means I want to insert new rows or update existing ones on a user button click. My data grid is not bound to a data set or something. the table in database in completely dynamic and will be created based on some meta data.
I did not find any flag in GridViewRowInfo class which can be used. (there is a IsModified flag which is always false)

So I created a List of edited rows and worked with that.
first I tried to save row indices. but I found out that the newly inserted row will have RowIndex = -1, but in save time will not be reachable.
so I decided to save the row reference in that List.
it did not work out, too. because the newly added row will change after it is really inserted into the grid. (a copy of the row will be added to grid not the row itself.) and I will insert a copy of an invalid row with no useful data.

I'd be thankful if someone helps me in this issue.


thanks.
Maziar



 
Richard Slade
Top achievements
Rank 2
 answered on 17 May 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
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
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
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?