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
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
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()); }}
