Telerik Forums
UI for WinForms Forum
1 answer
90 views

When trying to create a custom theme for a Panorama, I can import the xml into the theme manager, but it does not show up.  I've done this with other control (buttons for example) and it works.  I've found that some control require some "Base" controls to also be themed, but I haven't found any documentation as to a hierarchy of requirements for a control to work.

 Is there such a list, and if not, can someone at least tell me what control I need to theme in order to get a RadPanorama to accept my custom theme.  Mostly this is simply to get it to use my custom scrollbar (which *has* been themed).

 Thanks.

Dimitar
Telerik team
 answered on 21 Oct 2015
2 answers
112 views

I have a GridView with MultiSelect enabled. The standard behavior is when the user selects a row this changes the row's color and all selected rows maintain a diferent color. I want to mimic this behavior with a GridViewCheckBoxColumn.

 My GridView has a GridViewCheckBoxColumn and when it's checked, I want to change the row color. If it's unchecked, return it back to normal. Currently I'm using the ValueChanged event to capture the event of the checking and unchecking.

private void radGridViewProducts_ValueChanged(object sender, EventArgs e)
{
    if (this.radGridViewProducts.ActiveEditor is RadCheckBoxEditor)
    {
        this.radGridViewProducts.Rows[this.radGridViewProducts.CurrentCell.RowIndex].IsSelected = true;
    }
}

 The code above does not change the row color. How can I acheive this?

 

Thank you.
Dimitar
Telerik team
 answered on 21 Oct 2015
4 answers
616 views

Hi

 

I have been using a CheckedDropDownList in an application and I want to check some of the values in the dropdownlist before the users sees it. I have tried several things in order to get it work and so far nothing. It should b a simple thing i just don't know..

 

so far i have tried

 

 List<string> dbValues = _asset.MultiLocDrawingNum;

                    foreach (var v in dbValues)
                    {
                        var item = ddData.Items.FirstOrDefault(x => x.Text == v);

                        item.Selected = true;

                        ddData.Items.Add(item);

                        //ddData.SelectedItem = item;

                        //ddData.SelectedIndex = ddData.FindString(item.Text);
                    
                    
                    }

Ralitsa
Telerik team
 answered on 21 Oct 2015
1 answer
172 views
i developed  a new UI  application with Telerik radcontrol . My probelm is,  install  the application in another system it showing error   "unable to install or run the application . The Application requries that  assmebly QuickStart  Version 2011.3.11.1219 bi installed in the Global Assembly cache(GAC ) first.  please contact your System Administrator "
Hristo
Telerik team
 answered on 20 Oct 2015
6 answers
228 views
Hi,
I have a non-trial "RadControls for Winforms" installed in my computer working with Visual Studio 2010, and now I recently installed a new Visual Studio 2012. After the installation I couldnt find the Telerik's tab on VS2012 or the extensions for toolbox, can I configure it without re-installing the entire Telerik's packet? Thanks!
Dyanko
Telerik team
 answered on 19 Oct 2015
1 answer
213 views
Has anybody tried binding win form radgridview with subscription service. Is there any example available.
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 19 Oct 2015
2 answers
113 views

I'm using the RadOffice2007ScreenTipElement to show errors for rows within my RadGridView. When the ScreenTip displays, the html text is shown with weird spacing and odd vertical alignment for certain words.

 I've attached a screenshot of what I'm seeing. Take a look at the ScreenTip and notice the word "job" within the error "Blank job group code." There also seems to be extra spacing after that word, and after the word "EEO".

 Here is the relevant code snippet:

private void RadGridView1_ScreenTipNeeded(object sender, ScreenTipNeededEventArgs e)
{
  var cell = e.Item as GridDataCellElement;
  if (cell != null)
  {
    switch (cell.ColumnInfo.Name)
    {
      case "errorimage":
          int rowIndex = radGridView1.Rows.IndexOf(radGridView1.CurrentRow);
          if (rowIndex > -1)
          {
            if (cell.RowElement.RowInfo.Cells["errortext"].Value.ToString() != "")
            {
              var screenTip = new RadOffice2007ScreenTipElement();
              screenTip.CaptionLabel.Margin = new Padding(3);
              screenTip.CaptionLabel.Text = "Job Error(s)";
              screenTip.MainTextLabel.Text = cell.RowElement.RowInfo.Cells["errortext"].Value.ToString().Trim();
              screenTip.EnableCustomSize = true;
              e.Delay = 50;
              e.Item.ScreenTip = screenTip;
            }
            else
            {
                e.Item.ScreenTip = null;
              }
          }
          break;
        default:
            break;
    }
  }
}

Is there any way to fix this?

Kurt Boyer
Top achievements
Rank 1
 answered on 19 Oct 2015
1 answer
154 views

Is there a setting somewhere that displays the thumbnails automatically? I see where they can be hidden, but I need them to display when I open the viewer.

Thanks,

Martin

 

Stefan
Telerik team
 answered on 19 Oct 2015
1 answer
295 views

Is there something built into the export of the PivotTable to a Excel file to have to check for the name w/out throwing an error or better yet, have it auto Index it? 

 

Thanks

Ralitsa
Telerik team
 answered on 19 Oct 2015
2 answers
163 views

Greetings!

 I`m trying to attach context menu to a GroupFieldElement (those boxes in group panel when groupping applied) to add possibility to expand\collapse whole group.

Everything's ok, but both mouse clicks (left\right) call group sorting event and i cannot get rid of this behavior (tried even with RadGridBehavior and overriding OnMouseUp\Down). So, how can i disable sorting event when i click on group definition in group panel with right mouse click?

 Thank you!

 

Ilya
Top achievements
Rank 1
 answered on 16 Oct 2015
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?