Telerik Forums
UI for WinForms Forum
1 answer
48 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
745 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
205 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
692 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
385 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
465 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
709 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
246 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
193 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
748 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
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?