Telerik Forums
UI for WinForms Forum
4 answers
652 views

Hi all,

I wish to do a hide a panel and this panel and its children is not painted and would not calculated in the layout.
But when i try to set it as below:-
pnlPlanPwd.RootElement.Visibility = Telerik.WinControls.

ElementVisibility.Collapsed;
the panel is still displayed on the form.

Does anyone knows on any solution?

Regards,
Jack

 

Jack
Top achievements
Rank 1
 answered on 22 Dec 2009
2 answers
123 views
Hi there
I couldnt find a suitable forum for this request so I just put it here...

Anyway.
I'm a MSDN user and downloaded the Telerik through that channel.  I tryed to install this package yesterday but the installer is not through yet.  It has now run for about 10 hours and still running

The installer says that its updating Visual Studio 2005 templates and it has been using 50% CPU all the time.

My system setup:
Acer Aspire 7720G
Windows 7 Ultimate

Allso, VS is installed in versions 2005, 2008 and 2010 Beta 2
VS 2010 was running at the time of the start and was terminated while the setup was copying the files. (in case you nead to test)

I'm now going to halt the setup and wil not try again until I get your suggestion on what to do.

Regards
Ole Morten Heien
Advisor AS
Norway
Vassil Petev
Telerik team
 answered on 21 Dec 2009
4 answers
205 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
255 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
241 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
326 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
152 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
211 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
104 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
85 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
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
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?