Telerik Forums
UI for WinForms Forum
0 answers
142 views

Hello All,

                I am using Sitefinity 5.1.

                I have a project with there is main site and also prepare separate Mobile site for different Smartphone and tablets.

                I have created rules and also I have set up that root of that Mobile site in this.

                Main site: www.mysite.com

                Mobile site: www.mysite.com/mobile                  

So when I have testing with smart phones and a tablet it takes to me with Mobile site
but the problem is when I have test with desktop or Notebook it redirect to me on mobile site. It should take to on Main site.

SO how can I do with this open default site like www.mysite.com  on desktop or Notebook and www.mysite.com/mobile on smart phones and tablets?

Its urgent please replays me ASAP.

Thanks In Advance!!!
Jignesh Gohil

Jignesh
Top achievements
Rank 1
 asked on 09 Oct 2012
1 answer
161 views
I have a grid containing a GridViewMaskBoxColumn.  I want the mask on the cell to change when I hit the F4 key with the cell editor active.  Unfortunately when I change the column's Mask in the RadMaskedEditBoxEditorElement's KeyUp event handler while the editor is open it doesn't have an immediate effect; I have to switch to a different cell before the new mask takes effect.  How do I get the mask change to take immediate effect in the editor?
Peter
Telerik team
 answered on 09 Oct 2012
3 answers
256 views

Hi,

I'm writing a demo app that has a split container with a left panel that contains a tree, which is used for navigation, and a centre panel.
When a user selects a node on the tree the corresponding User Control is then displayed on the centre panel.

What I would like to do is add some animation to the User Control so that it slides in / out of the centre panel.
Is this possible?

I got this idea from your DemoHub App, but instead of using the RadPanorama control I would like to use the SplitContaining.

I suppose the overall goal is to produce a smooth loading of the UserControl, just now it's a bit jumpy, so if it was animated the overall experience might be improved.

Cheers

Shaun


Ivan Todorov
Telerik team
 answered on 09 Oct 2012
2 answers
595 views
Hello,

I am experimenting with your controls before we buy them and have a question. I have a class (for sake of demo I have simplified it) that I am binding to a RadListView via a binding list. Can I prevent the Badge column from appearing in the list view? The listview is actually used to display many different types of data so I would prefer a method that did not involve me manually hiding the column.

 Public Class Visitor
        Friend Sub New(name As String, arrival As Date, department As String, badge As Integer)
            _Name = name
            _ArrivalTime = arrival
            _Department = department
            _Badge = badge
        End Sub

        Private _Name As String
        Public ReadOnly Property Name As String
            Get
                Return _Name
            End Get
        End Property

        Private _ArrivalTime As Date
        Public ReadOnly Property ArrivalTime As Date
            Get
                Return _ArrivalTime
            End Get
        End Property

        Private _Department As String

        Public ReadOnly Property Department As String
            Get
                Return _Department
            End Get
        End Property

        Private _Badge As Integer
        Public ReadOnly Property Badge As Integer
            Get
                Return _Badge
            End Get
        End Property
    End Class

Thank You.
Ivan Todorov
Telerik team
 answered on 09 Oct 2012
5 answers
240 views
Have set HelpButton = True for the RadRibbonForm but unable to get the HelpButton to appear - what other settings need to be changed?(using 2012 Q2)
Anton
Telerik team
 answered on 09 Oct 2012
1 answer
88 views
how can i create hirarchical grid using Generic list. Can anybody provide example for it.
Nikolay
Telerik team
 answered on 09 Oct 2012
1 answer
97 views
sorry problem was with old references.
Nikolay
Telerik team
 answered on 09 Oct 2012
1 answer
91 views
I've created a simple RadGridView with 2 columns and turned off displaying grid lines and I get the following error:

Object reference not set to an instance of an object.
   at Telerik.WinControls.UI.GridRowElement.UpdateSelectedState()

 
Seems that setting display.HideSelection=true causes BestFit to raise the error.

Here's the code that reproduces the problem:

private void GenerateConfigurationSummary(RadGridView display)
{
    const string colValue = "value";
    const string colHeader = "header";
    
    display.HideSelection = true;
    display.Rows.Clear();
    display.Columns.Clear();
    display.Columns.Add(colHeader);
    display.Columns.Add(colValue);
    display.ReadOnly = true;
    display.ShowColumnHeaders = false;
    display.ShowRowHeaderColumn = false;
    display.TableElement.DrawBorder = false;
 
    display.CellFormatting += (s, e) =>
    {
        if (e.Column.Name == colHeader)
            e.CellElement.Font = new System.Drawing.Font(e.CellElement.Font, System.Drawing.FontStyle.Bold); 
 
        e.CellElement.DrawBorder = false
    };
 
    try
    {
        display.Rows.Add("Test Row 1", "Test Value 1");
        display.Rows.Add("Test Row 2", "Test Value  larger line goes here");
        display.Rows.Add("Test Row 3", "Test Value 1");
 
        foreach (var col in display.Columns)
            col.BestFit();
    }
    catch (Exception ex)
    {
        System.Diagnostics.Debug.WriteLine("Error Formatting Display: " + ex.ToString());
    }
}

 

 

 

 

Stefan
Telerik team
 answered on 09 Oct 2012
7 answers
459 views
Hi,

I need to place a checkbox in a header of a gridviewcheckboxcolumn of radgridview. for obvious reason. how can i do it in rad gridview?

Thanks
Trinh
Top achievements
Rank 1
 answered on 09 Oct 2012
3 answers
746 views
I installed the ASP.NET AJAX, Windows Forms, Reporting and OpenAccess ORM on my laptop that already had Visual Studio 2010 installed.  I recently installed Visual Studio 2012.  When I launch VS2010, I see Telerik project types as an option for getting started, but I don't see those in VS2012.  I assume that I need to add the VS extensions, but how?  When I look in C:\Program Files (x86)\Telerik\RadControls for ASP.NET AJAX Q2 2012 SP1\VSExtensions, I have a directory for VS2008 and for VS2012. 

How do I update VS2012 to also have these project types and to update the toolbox accordingly?

Thank you!
Chavdar Dimitrov
Telerik team
 answered on 09 Oct 2012
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
Documentation
SplitContainer
Map
DesktopAlert
CheckedDropDownList
ProgressBar
TrackBar
MessageBox
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
CollapsiblePanel
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
Styling
Barcode
PopupEditor
RibbonForm
TaskBoard
Callout
NavigationView
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Security
LocalizationProvider
Dictionary
SplashScreen
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?