Telerik Forums
UI for WinForms Forum
1 answer
24 views

Hello Telerik,

     I have a table which crosses page (in the first and second page at the same time),I adjust the row height by dragging the border line,it will work well in the first page,but in the second page when I dragging the border, it will cause the second page in mess ,it will append a new page and the row which i dragging will fill  in the entire room of the new page. Any solution?  Thanks in advance. 

 

Best regards!

George

 

 

Dimitar
Telerik team
 answered on 24 Jun 2020
9 answers
548 views
I have a AutoCompleteBox
My requirement is that I have to disable entering duplicate entries to the rad autocomplete box.
In my case I have a Languages autocomplete box but I am able to enter the item 'English' multiple times.
I want to ensure it is only entered once.
Question: Is there any-way so that if an entry is already there I can remove selected value?
Ciupaz
Top achievements
Rank 2
Veteran
 answered on 24 Jun 2020
1 answer
142 views
Is there a way to show a tooltip on a cell in edit mode?
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 23 Jun 2020
14 answers
571 views
Hi,

When I loop though the Items collection in the RadAutoCompleteBox control, I've noticed the items are ordered alphabetically. Is it possible to receive this collection in the order they are entered in control because this order is important to me. It would be messy if I have to manually delimit the text property to get the item order and then manually match it with each entry in the items collection so that I can retrieve the value of each item as specified in the AutoCompleteValueMember property.

Kind regards.
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 23 Jun 2020
1 answer
262 views

I'm new to Telerik and still working on the 30 day trial so please bear with me, and pardon the ignorance if this is mind numbingly simple,

 

I need a simple way to show a simple hardcoded dropdown (Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday) which validates input when a user edits the cell of a RadGridView

      private void dg_DeliverySched_beginEdit(object sender, Telerik.WinControls.UI.GridViewCellCancelEventArgs e)
        {
            //I have these columns that need day of week validation comboboxes on edit click
            if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Sun")
            {
                e.Cancel = true;
            }
            if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Mon")
            {
                e.Cancel = true;
            }
            if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Tue")
            {
                e.Cancel = true;
            }
            if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Wed")
            {
                e.Cancel = true;
            }
            if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Thu")
            {
                e.Cancel = true;
            }
            if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Fri")
            {
                e.Cancel = true;
            }
            if (e.Row is GridViewFilteringRowInfo && e.Column.Name == "Sat")
            {
                e.Cancel = true;
            }
        }

Todor
Telerik team
 answered on 22 Jun 2020
3 answers
353 views

Not sure if this is the right place to post, as I am not seeing any specific category for Charts(except the defunct one)

The issue:  I'm building my forst RadChartView based on a simple  query for "Vendor", and "Amount"

Amount, is a decimal in the database, and I'd like to have the Y axis display the values in currency format.

 

I'm not finding how to do this..?

 

Many thanks,

Rich

 

Nadya | Tech Support Engineer
Telerik team
 answered on 22 Jun 2020
2 answers
511 views

hello!

I create radButton on the parent control.

and modify button round use Edit UI Elements - shape.

and setting transparent backColor in code.

btnStart.Parent = parentControl;
btnStart.BackColor = Color.Transparent;

 

but still a gray shade left.

How can I remove this?

 

jin
Top achievements
Rank 1
Veteran
 answered on 20 Jun 2020
1 answer
114 views

Hi,

I have a question about IsSelected & IsCurrent.

I have a gridview that when upon loading, the first row is selected and highlighted, so I have a pop-up contatiner that will get the current row data.  But when reload that gridview again, no rows are highlighted any longer.

I've tried IsSelected and IsCurrent, but it only highlights the row with the IsSelected, but when I click on the pop-container that gets the current row data, it gives a error due to null value.

What can I do?

Thanks!

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 19 Jun 2020
2 answers
118 views

A checkboxdropdownlist is used to filter data for a chart.  After the initial load of list items the first item in the list is selected - even though it is not checked.  Turning it off in code doesn't work either.

 

for (i = 0; i < theRoot.ChildNodes.Count; i++)
{
    ServerName = theRoot.ChildNodes[i].Attributes["Name"].Value;
    foreach (XmlNode aNode in theRoot.ChildNodes[i])
    {
        if (aNode.InnerText == Environment)
        {
            sb = new StringBuilder();
            sb.Append(ServerName.Replace("XX", aNode.InnerText));
            lItem = new Item(j, sb.ToString());
            lvServers.Add(lItem);
            j++;
        }
    }
}
 
rcddlServers.DataSource = lvServers;
rcddlServers.ValueMember = "id";
rcddlServers.DisplayMember = "description";
rcddlServers.DropDownListElement.SelectionMode = SelectionMode.MultiSimple;
if (rcddlServers.SelectedItems.Count > 0) --> why is this possible?
{
    rcddlServers.Items[0].Checked = false;
}
Marianne
Top achievements
Rank 1
Veteran
 answered on 18 Jun 2020
5 answers
528 views
How can I make sure that the control correctly displays percentages greater than 100 (150%, 200% ...)?
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 18 Jun 2020
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
ComboBox and ListBox (obsolete as of Q2 2010)
ListView
Chart (obsolete as of Q1 2013)
Form
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
Menu
PropertyGrid
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
Diagram, DiagramRibbonBar, DiagramToolBox
GanttView
Panorama
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
ProgressBar
CheckedDropDownList
Rotator
TrackBar
MessageBox
SpinEditor
StatusStrip
CheckedListBox
Wizard
ShapedForm
SyntaxEditor
TextBoxControl
LayoutControl
CollapsiblePanel
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
DataEntry
GroupBox
ScrollablePanel
WaitingBar
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Barcode
ColorBox
Callout
FilterView
PictureBox
VirtualKeyboard
NavigationView
Accessibility
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
ButtonTextBox
FontDropDownList
Licensing
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
Flyout
ToolbarForm
NotifyIcon
Rating
TimeSpanPicker
BarcodeView
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
DateOnlyPicker
TimeOnlyPicker
+? more
Top users last month
Henri
Top achievements
Rank 2
Iron
Iron
Iron
SUNIL
Top achievements
Rank 2
Iron
Iron
Iron
David
Top achievements
Rank 1
Jackson
Top achievements
Rank 1
Iron
Iron
Tim
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Henri
Top achievements
Rank 2
Iron
Iron
Iron
SUNIL
Top achievements
Rank 2
Iron
Iron
Iron
David
Top achievements
Rank 1
Jackson
Top achievements
Rank 1
Iron
Iron
Tim
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?