Telerik Forums
UI for WinForms Forum
4 answers
185 views
I cannot modify Radform in Visual Style Builder. It always shows blue theme. I tried to load predefined theme(Desert) and it did not change either. I want to modify title bar and system buttons(min, max, close).
BK
Top achievements
Rank 1
 answered on 21 Dec 2009
13 answers
246 views
I'm testing 2009.3, in my opinion it was on right track, but some of this strange behavior bugged me.

1.
Filtering:
    a. Sometimes filter icon appear even I set AllowFilter for Column = False
    b. End user behavior for filtering on some column type (eg. DateTimeColumn, or CheckBoxColum) sometime feels ackward,
       after user set value for DateTimeColumn there's no way user can set filter value to NULL to clear filtering.
2.    Grouping:
    a. Sometimes Group Expand/Colapse didn't show when grouping (I'm using default theme).
        (Image: Non Visible Expand-Colapse Button)
    b. Question: How can I sort column using original value (not displayed value), because I have altered Text value on CellFormating event?
3. Design Mode:
    - Many times Visual Studio (I'm using VS2008 Pro), display "Null Reference Exception" MessageBox, just close, or hang when trying to open Open Property Builder.
      (I'm binding RadGridView using BindingSource component)
   
Nick
Telerik team
 answered on 21 Dec 2009
1 answer
233 views
Hi All, I am running TFS 2008 and have a build server in place.

With my projects I create a common folder to put in my reference libraries so that later down the track i will be able to get compiling code from source control.

in this common folder i have my telerik assemblies with my UI project (winforms) references out of there. This works great on my local PC and on other devs but my build server fails with "Unable to find manifest signing certificate in the certificate store."

I dont want to install the rad controls on my build server - because that would create a dependency on them being install (think 12 month later when that server has been rebuilt)

any Ideas?

Alastair

UPDATE:  It seems as though a self signed certificate had crept into to project. All sorted now
Nick
Telerik team
 answered on 21 Dec 2009
3 answers
304 views
Hi,
     I have a rad gridview windows control with a GridViewTextBoxColumn and a GridViewCheckBoxColumn. AllowAddNewRow is set to "True" for the Gridview. I have written code in DefaultValuesNeeded event to set the check box selected. I need to validate data in the current editing row before the focus moves to a new row or some other row. I have written code in CurrentRowChanging event to validate the data but the cell value is always null.
 private void radGridView1_CurrentRowChanging(object sender, CurrentRowChangingEventArgs e)  
        {  
            if (e.CurrentRow == null) return;  
 
            radGridView1.Invalidate();  
 
            var val = Convert.ToString(e.CurrentRow.Cells["column1"].Value);  
            if (val == "test")  
            {  
                MessageBox.Show("Invalid data");  
                e.Cancel = true;  
            }  
        } 
In which event should i write the code.

Regards
Shamjith
Nick
Telerik team
 answered on 21 Dec 2009
3 answers
149 views
Hi there!

I´d need to do some action when I click on a DropDownButton (not the arrow) and I do not want that de DropDownButton shows its menu.
How can I get this result?

Regards
Darío K
Victor
Telerik team
 answered on 21 Dec 2009
1 answer
202 views
Hi All,

I have created a class which inherits from RADTextBox and override the OnKeyPress() method.

public class RegExpRadTextBox : RadTextBox
{
string _keyRegExp;
public string KeyRegExp
{
get { return this._keyRegExp; }
set { this._keyRegExp = value; }
}

protected override void OnKeyPress(KeyPressEventArgs e)
{
if (!string.IsNullOrEmpty(this._keyRegExp))
{
if (!Regex.IsMatch(e.KeyChar.ToString(), this._keyRegExp))
{
e.Handled = true;
}
}

base.OnKeyPress(e);
}
}

But when i type some text, nothing happens (Keypress Event Firing/Raised).

(Keydown is also doesnt work.) 

What should i do? 

Thanks.

Victor
Telerik team
 answered on 21 Dec 2009
0 answers
101 views
Hi,
I am getting 'Index was outside the bounds of the array.' exception when i try to use the vertical scroll bar of last tab in my child grid and then click on some other tab. why is this happening ??
Akshatha naik
Top achievements
Rank 1
 asked on 21 Dec 2009
1 answer
84 views
I am hoping someone replies to this post during the weekend.

The documentation for Q3 2009 says that 'AfterCollapse' is a public event of RadTreeView, and also it says to use 'NodeCollapsed' event instead of 'AfterCollapse'.

I found that neither 'AfterCollapse' nor 'NodeCollapsed' appear as public events in Visual Studio, even though both these events are documented as 'Public' events in the documentation of RadTreeView in Q3 2009.

Anyone noticed this strange inconsistency with latest 'RadTreeView'? Is there any simple or complex alternative solution for these missing events or a simple upgrade path for this scenario?


Victor
Telerik team
 answered on 19 Dec 2009
1 answer
134 views
I have a gridview (v2.0.50727) with filter row enabled. Some of the gridview columns have integer datatype. When a string is entered instead of integer an exception is being thrown for understandable reason. My question is where do I handle the input validation? (What event do I subscribe, etc).

Also is it possible to have a dropdown list in the filter row for some of the columns? One of the columns in my grid is a foreign key column and is being populated with string representation of the value. Please refer to an example if possible. I have searched the forums and found posts that said in future versions of gridview this should be possible, is it possible now?
Svett
Telerik team
 answered on 19 Dec 2009
1 answer
103 views
I am binding a list to the RadListBox but I want to use a custom RadListBoxItem for the items in the list. How is this accomplished during binding?
Nikolay
Telerik team
 answered on 18 Dec 2009
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
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
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
NavigationView
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
SplashScreen
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?