Telerik Forums
UI for WinForms Forum
0 answers
39 views
I'm using Telerik WinForms VSExtensions 2012.01.215.0. After setting 'Visible' of a node in a treeview, the line is still there. I mean the line ending to the node. What's wrong and what else should I do?
Hamid
Top achievements
Rank 1
 asked on 24 Feb 2018
8 answers
113 views

Hi,

I am trying to use the Expression without the initial use of a RadGridView.

Looked over Expression editor without gridview for the base inheritance.

The event ExpressionEditorFormCreated is never called.

I'm registering the hidden radGridView.ExpressionEditorFormCreated in the constructor of the form.

 

Thanks

 

Code:

public partial class FormulaEditor : RadExpressionEditorForm
{
    private static RadGridView hiddenGrid;
    private static GridViewDataColumn dataColumn;
 
    public FormulaEditor()
        : base(dataColumn)
    {
        InitializeComponent();
 
        hiddenGrid = new RadGridView();
        dataColumn = new GridViewTextBoxColumn();
        hiddenGrid.Columns.Add(dataColumn);
        hiddenGrid.Rows.AddNew();
 
        hiddenGrid.ExpressionEditorFormCreated += HiddenGrid_ExpressionEditorFormCreated;
    }
 
    private void HiddenGrid_ExpressionEditorFormCreated(object sender, ExpressionEditorFormCreatedEventArgs e)
    {
        e.ExpressionEditorForm.FormElement.TitleBar.FillPrimitive.BackColor = Color.Red;
        e.ExpressionEditorForm.ShowIcon = false;
 
        ExpressionItemsList.Clear();
 
        //base.LoadFieldList(null);
 
        if (FieldList != null && !FieldList.Any())
        {
            FieldList.Clear();
        }
 
        if (radTreeViewFunctions.Nodes.Any())
            radTreeViewFunctions.Nodes.Clear();
    }
}
Dimitar
Telerik team
 answered on 23 Feb 2018
4 answers
94 views

I installed the demo of Telerik's UI WinForms components and then removed it on one Win10 pc with VS 2017 Community Edition. After removal, my instance of VS started to show about 10 message boxes telling me that various Telerik assemblies like Telerik.WinControls.VSPackage.2018.1.115.1 cannot be loaded at startup. How to clear all remnants of Telerik extensions left by the uninstaller?

Attached is the corresponding part of the VS startup log (the ActivityLog.xml file from the VS folder).

wisekat
Top achievements
Rank 1
 answered on 22 Feb 2018
3 answers
253 views

Hi,

I know about export to PDF, but is it possible to print PivotGrid directly to PDF file, with headers/footers/watermarks, etc?

Thanks,

Alex

 

Hristo
Telerik team
 answered on 22 Feb 2018
1 answer
164 views
My development team has to fully install Telerik to be able to develop our application.  Is there a nuget package available for download?  Also, I can create my own if I know which files to include in the package.  Creating the package is big deal, I just need to know what to put in it, and whether any license issues are going to happen when I create it and deploy to my team.
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 22 Feb 2018
2 answers
183 views

Hello,

I'm binding objects to a GridView, but i need to create properties for my objects at runtime, because I won't know what properties the object has or how many.  (This is a plugin for Autodesk Revit.)  I was able to implement the PropertyBag method here which is working https://www.codeproject.com/Articles/12282/Implementing-a-PropertyBag-in-C  But the GridView just sees "PropertyBag" as one of the properties.  I'm trying to figure out how to get (or if) the GridView to read these 'subproperties'.  I can create columns for each property in runtime but the cells are blank.  Or if it makes sense to set the cell value of the row based on the column's name.  Thanks.

Michael
Top achievements
Rank 1
 answered on 21 Feb 2018
14 answers
3.7K+ views
Hi there
I want to know how could we refresh a ListView after editing it's items programmatically
I tried these but no change in the ListView until I grab the data and fill it again after an event.

I edited just a piece of data

ListViewDataItem item = lv.Items[pos];               
item["Variety"] = this[id] ;
 
lv.Update();
lv.Refresh();

Shouldn't it work ?

I didn't bound it to anything, and it's filled from a collection
if the strategy isn't the preferable approach please give advices on this
thanks in advance
Hristo
Telerik team
 answered on 21 Feb 2018
3 answers
169 views

I have implemented the drag and drop row feature of telerik grid. Now i have to comfirm/prompt user for drag and drop row action with some message like 'Are you sure to drag the selected row?'

I have implemented below two events for the same 

1) Client Side: 

function onRowDropping(sender, args) {

// some code to do something

}

2) Code behind:

protected void grd_RowDrop(object sender, GridDragDropEventArgs e)
{

// some code to do something

}

So, Please suggest how can we achieve this functionality.

1) Once user attempt to drag and drop the row, a confirmation popup should come.

2) If user confirm the action row should be dropped and re-ordered.

3) Else action should be reverted from client side itself.

 

Any help would be highely appriciated.

 

Thnaks,

Manish

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 21 Feb 2018
5 answers
286 views
Our client wants to input dates as MM-dd-yyyy with leading zeros.

I have the RadMaskedEditBox set as:
Mask = MM-dd-yyyy
MaskType = DateTime

What setting is missing to force and keep the leading zeros?    (specifically for the month and day)

With the current settings the following behavior occurs as follows:
    1. radMaskedEditBox.Value = someDateTimeObject; results in the leading zero of the month does not show
    2. Typing 0 causes the month mask to collapse to one character. The client expects to see 00 all the time as the 
        double 'M' explicity specifies requiring two digits.
    3. After typing the second digit the zero is not shown.  For example, typing '04' only shows '4'.
    4. The mask sticks on the month, never advancing to the day.  For example, typing '04022009' only results in '9-00-0000'
        as the last digit typed was a nine.
Hristo
Telerik team
 answered on 21 Feb 2018
1 answer
661 views
Hi I’m developing an application and I need to bind the combobox column to difference datasources depending on the value of another cell. For example; when the user enters value “fruits” in a cell of a row 1, the next cell, which is a combobox presents to the user items of fruits only; when he enters “cars” in the next row only cars are listed in the combobox cell of the row. How do I achieve that?
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 20 Feb 2018
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?