Telerik Forums
UI for WinForms Forum
3 answers
73 views
Hi , 

Is it possible to implement scroll in RadChart for Win Forms. We are currently using version Q3 2010.

Thanks,
Marut
Evgenia
Telerik team
 answered on 16 Oct 2012
1 answer
138 views
Hey,

I'm working with mvc and asp.net. I have a telerik grid with 10 columns. But I need the first 5 columns grouped under 1 header and the last 5

f.e.

Before christ   |  After christ
1  |2  |3  |4  |5  | 1 |2  |3  |4  |5


I already found this link:
http://demos.telerik.com/aspnet-ajax/grid/examples/programming/multicolumnheaders/defaultcs.aspx

But that is for an ajax grid and that is not what I need. I'm using a razor view. Anyone has any ideas?
Ben
Top achievements
Rank 1
 answered on 16 Oct 2012
1 answer
86 views
Hi all,

I've just downloaded the latest release of RadControls for WinForms and the most basic of tiles are formatting incorrectly.  See the design-time view versus the runtime view.  It seems the tiles are always positioned an extra column from the left which is buggy.

What's wrong?
Ivan Todorov
Telerik team
 answered on 15 Oct 2012
3 answers
759 views
Hi,

I'm the same user from ticket
610565

.

I decided to use RadGridView instead of RadListView because it's performance is much better....
I use the grid with only one column - which includes simple text but also links, but without the HyperlinkColumn (I must have only one column so the control will look like a list of messages).

I also registered for the cellClick event:
private void radGridView1_CellClick(object sender, Telerik.WinControls.UI.GridViewCellEventArgs e)
    {
      GridViewCellInfo cell = (GridViewCellInfo)radGridView.Rows[e.RowIndex].Cells[e.ColumnIndex];
  
      if (cell.Tag != null)
      {
        Process.Start(cell.Tag.ToString());
      }
    }

The question is how can I start the link open process ONLY when the user click on the TEXT, and not anywhere in the specific cell.

Thanks,
Hila.
Ivan Todorov
Telerik team
 answered on 15 Oct 2012
7 answers
498 views

Hello,

I have a gridview bound to an entity framework collection. To update to database I refresh my collection followed by gridview.Refresh. This works as expected when I change fields of existing entities. 

However, when I add a new entity into the collection, the gridview does not reflect the insertion unless I set its DataSource to null and back to my collection. How can I force a rebind without completely resetting the gridview state like that?

Thanks.

Svett
Telerik team
 answered on 15 Oct 2012
1 answer
76 views
Is there a way to not select a Tab in the PageView 

So that when the tab open for the first time no tab is selected?
Stefan
Telerik team
 answered on 15 Oct 2012
1 answer
222 views
Hi, i have 3 questions about the autohide tool windows.  

1 i have a tool window docked right.  the pin is on the right.  how can i put the pin on the left when open?
2 how can i stop the tool window from opening on mouse hover.  users only want it to open when clicked
3. how can i fill the available space.  it's stopping next to the end of the container and you can see what's under it.  i want it to slide all the way out to the edge of the control it's on.

see attachments that will make 1 and 3 clearer. 

Thanks!
Nikolay
Telerik team
 answered on 15 Oct 2012
1 answer
87 views
I have a scenario where when a user selects a row of a grid, I want to display a context menu giving them 2 options. Is there any way to do this?

Thanks a bunch

Helen
Helen
Top achievements
Rank 2
 answered on 12 Oct 2012
2 answers
423 views
Is there any way to use a radContextMenu with the WinForms NotifyIcon? I'd like to use the radMenus for my WinForms app, but I need the NotifyIcon functionality, and I can't see how to use rad Menus with it.

Thanks,

Helen
Helen
Top achievements
Rank 2
 answered on 12 Oct 2012
2 answers
159 views
Below is blocks of code I use to update a radprogressbar while exporting the data out of a radgridview to excel.  The issue I am having is I get the correct row counts and the progress updates fine if the list is filtered or unfiltered.  The issue I have is once you group the progress bar keeps resetting and starting over.  Any ideas how to get a consistant update to the progress bar with a grouped gridview.  (I appollogize if this is the wrong forum, but seems to me the issue is with getting the correct grouped row counts of the radgridview.

        private void exporter_ExcelCellFormatting(object sender, ExcelCellFormattingEventArgs e)
        {
            if (e.GridRowInfoType == typeof(GridViewDataRowInfo))
            {
                //update progress bar
                int position = (int)(100 * (double)e.GridRowIndex / (double)(GetVisibleRows(this.radGridView.ChildRows)));
                this.UpdateProgressBar(position);
                this.radProgressBar.IndicatorElement1.UpdateLayout();
            }
        }

        public long GetVisibleRows(GridViewChildRowCollection rows)
        {
            long i = 0;
            foreach (GridViewRowInfo row in rows)
            {
                if (row is GridViewGroupRowInfo)
                {
                    i += GetVisibleRows(row.ChildRows);
                    continue;
                }
                i += 1;
            }
            return i;
        }

        private void UpdateProgressBar(int value)
        {
            if (this.InvokeRequired)
            {
                this.Invoke(new EventHandler(delegate
                {
                    if (value < 100)
                    {
                        this.radProgressBar.Value1 = value;
                    }
                    else
                    {
                        this.radProgressBar.Value1 = 100;
                    }
                }));
            }
            else
            {
                if (value < 100)
                {
                    this.radProgressBar.Value1 = value;
                }
                else
                {
                    this.radProgressBar.Value1 = 100;
                }
            }
        }
Thanks

Scott
Top achievements
Rank 1
 answered on 12 Oct 2012
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
Diagram, DiagramRibbonBar, DiagramToolBox
GanttView
Panorama
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
ProgressBar
CheckedDropDownList
TrackBar
MessageBox
Rotator
SpinEditor
StatusStrip
CheckedListBox
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
DataEntry
ScrollablePanel
ScrollBar
WaitingBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Barcode
Callout
ColorBox
PictureBox
FilterView
Accessibility
NavigationView
VirtualKeyboard
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
Licensing
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
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?