Telerik Forums
UI for WinForms Forum
1 answer
88 views
Hi,

I tried to add the "RoundRectShape1" to each of my form by change their shape to "RoundRectShape". But, the problem I am facing now is...sometimes, the RoundRectShape1 will just auto disappear (for random page, like entire project having 10 pages, 5 RoundRectShape might be disappear). When I go back to the shape and change it back to "RoundRectShape", if I am lucky, it will add "RoundRectShape1" again. If I am not, then it will add "RoundRectShape2", "RoundRectShape3" and so on.......

Please advice.
Jack
Telerik team
 answered on 23 Apr 2008
1 answer
177 views
Hi I am trying to apply a conditional formatting to a column (Status) set as not visible in the gridview properties.

If the columns is visible everthing works fine, but if it is not visible the conditional formatting doesn't work.

there is a way to let it work?

Thank you in advance
Jack
Telerik team
 answered on 23 Apr 2008
1 answer
154 views
I am using RadTextbox in one of my project to get consistent UI throughout application and I am really happy to achieve that using Telerik controls.

But one thing I found in while testing my app that RadTextbox don't support Shift+Tab functionality. This is used to navigate backward using keyboard.

Is there any property need to be enabled to achieve this?

Also while using keyboard - when button get focus, it don't change it look.
I believe it should look same as Mouse over state.

My application has kind of data entry form and require keyboard navigation for fast input. I will really applicate if both textbox and button can behave as good as they work with mouse.
Angel
Telerik team
 answered on 22 Apr 2008
3 answers
121 views
Folks,

In my app I needed to display a large variety of chart selections for the user to choose. In doing so, I didn't want the user to have to click or hold the Next or Previous buttons to execute the repeater functionality. What I really wanted was to have a method to start and stop the animation, and once started, will continue exactly as if the user continually clicked on the Next or Previous button, stopping once a carousel item was selected. Don't have it perfected yet where it's as smooth flowing as I like, but I think this would be great functionality for you to add.

Kind Regards,
Matt
Dwight
Telerik team
 answered on 22 Apr 2008
1 answer
91 views
Hello,

I have got this issue and don't know how to solve it.

On my development machine (win xp home sp2) I can build a solution using radRibbonBar (free control as a benefit of registration of MSVS2008 Express) and run it with no problem.
Than I move the executable to other machine (win xp prof sp2) and it crashes on start. It is not a development machine so there is no VS installed.

The crash memory dump says only System.IO.FileNotFound.
Rest is a stack dump etc, so it doesn't say to much.

I have tried to run it on other development machine but with no radRibbonBar installed and it crashed on startup as well.

Is it some common issue?

Greets
Mariusz

I will provide more detailed info if needed.
Martin Vasilev
Telerik team
 answered on 22 Apr 2008
3 answers
118 views
I'm looking for a way to determine when the SelectedNodes property changes.

When an item is added to SelectedNodes, this is easy because the Selected and Selecting events are fired.  I know there's no corresponding event for unselecting a node.  However, is there any other event that is fired when the selection status of a node changes?

Thanks for your help.
Jordan
Telerik team
 answered on 22 Apr 2008
1 answer
112 views

Hello,
I Use winform Q3 2007.
I want to disable filtering feature of an ImageColumns. So i set ;

gridViewImageColumn1.Filter.Function = GridKnownFunction.NoFilter;

But, firstly  it doesnt prevent user inputing filter text box of the column,
secondly and most important one, when you input something in the filter textbox of the image coloumn and select some menu item in the filtering context menu ( i mean "equal", "greater", ...menu )  it still wants to filter the expression and so program fails with
System.Data.SyntaxErrorException: The expression contains invalid name
message.

 for now,  I overcome this case by coding this, 

private

void BLSecimDataGrid_MasterGridViewTemplate_FilterChanging(object sender, FilterChangingEventArgs e)
{
if (sender is Telerik.WinControls.UI.GridViewImageColumn)
{
GridViewImageColumn gridViewImageColumn = ((Telerik.WinControls.UI.GridViewImageColumn)sender;
if (!string.IsNullOrEmpty(e.NewStringValue)) e.Cancel = true;
}
}

i think it's a bug and i want to know, if there is another solution without coding and just setting some property :) 

Thank you

Serkan APUL.

Dwight
Telerik team
 answered on 22 Apr 2008
1 answer
241 views
I want to remove the RadTabStripElement from the ribbon bar from the RadRootElement, I trys in many ways but in vain.
I simply want the RadQuickAccessToolBar in my ribbon bar.


In the RadTitleBarElement I Set the visibility property of RadImageButtonElement for minimize and maximize button. In design mode it shows Ok, but in run time again I found all three button on the title bar. I set Visibility property of ImagePrimitive of StripLayoutPanel, but in running mode again it in view.

How I set these property, Please help.
Peter
Telerik team
 answered on 21 Apr 2008
5 answers
413 views

Question regarding CellFormatting

I have just bought a couple of licenses of radcontrols. And I must say; I am very impressed! It helps me save loads of time.

I have a radgrid filled with data (like this):

Name     Bit (should be hidden)      Phone

John        1                                    22445566
Mike       0                                    44556677
Joan        1                                    44556677

And I want to change the background-color on Name-cell if Bit is set to 1. The background color for the cell with John and Joan should be yellow. And Mike should stay as it is.

This is normally functionality that I would solve using the OnItemDataBound-event. But now I guess I have to use the CellFormatting-event instead.

I figured out that I could not grab the value of Bit, because the column is hidden (radgridDialog.Columns["myBitField"].IsVisible = false;)

So then I tried to prefix my name-column from my stored procedure. So John and Joan became <pre>John and <pre>Joan. Not the nicest solution I have seen. But I was starting to get desperate. Do anyone have an better idea?

The logic almost work. The only thing I'm having problems with now is to change the value of the cell. My function looks like this:

void radGridView1_CellFormatting(object sender, CellFormattingEventArgs e)  
{  
        // exclude header element in the data column                         
        if (e.CellElement.ColumnInfo is GridViewDataColumn && !(e.CellElement.RowElement is GridHeaderRowElement))  
        {  
             GridViewDataColumn column = (GridViewDataColumn)e.CellElement.ColumnInfo;  
 
              if (column.DataField == "Name")  
              {  
                  if (e.CellElement.Value.ToString().StartsWith("<pre>"))  
                  {  
                         Font font = e.CellElement.Font;  
 
    //What should the line below be? I see that e.CellElement.Value is readonly  
                         //e.CellElement.SetValue(Telerik.WinControls.RadProperty rd, (object)e.CellElement.Value.ToString().Replace("<pre>", ""));  
                         e.CellElement.Font = font;  
                         e.CellElement.BackColor = Color.Yellow;  
                         e.CellElement.ForeColor = Color.Tomato;  
                  }  
             }  
      }  
}  
 
 

Thanks
Jack
Telerik team
 answered on 21 Apr 2008
4 answers
247 views
I've got two trees in my form. One has a list of items and one has a list of categories those items can go into. The items don't have to be in a category and they can be in more than one category.

I'd like the user to be able to drag a node from the list tree and capture that it is dropped on a category and have it show up as a child node under that category. By default this works but the node is actually removed from the list tree and put in the other tree. I'd like it to not get removed from the list but have it act more like a copy operation than a move.

I'm sure I can make this work by capturing the right events and adding in some logic, but before going through the trouble of tracking down exactly what I needed to do, I wanted to make sure I wasn't missing some kind of flag or setting on the tree that would do exactly what I'm talking about automatically.
Nikolay
Telerik team
 answered on 21 Apr 2008
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
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?