Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
66 views
Hi there,
we are developing a new CMS using various Telerik Controls.
now we need to provide different looks for some of them, by example for some RadGrids.
At the Moment we tried to handle this problem by using RadGrid with its Default Css and tried to overwrite some of the css information.
To do so we built a new Css, including the Css-Information we want to overwrite according to a classname:

.RadGridFavorites .rgRow td, .RadGridFavorites .rgAltRow td
{
    padding-top: 1px !important;
    padding-bottom: 1px !important;
}

Cause using Skin-Property of the Class didnt work for us this classname we assigned to the grid as CssClass:
   CssClass="RadGridFavorites"

But doing so we have the problem, that our Css-entries are overwritten by the default css, because our entries are loaded earlier.

What would be the best way to use default Grid look, but adding additional Layout-Information ???
Mira
Telerik team
 answered on 16 Apr 2010
2 answers
161 views
Hi,

I'm making an intranet application using radcontrol. But when the internet connection is not available on the site, radcontrol will not working. At the end, i found out telerik will auto download some javascript file from telerik web site. In my case, the site dont have internet connection, how should i do to change the path of the javascript file to my home directory of my application is hosted? Thanks.
Kevin
Top achievements
Rank 1
 answered on 16 Apr 2010
1 answer
120 views
Hi,

I know the treeview is a UI control but I have implemented it for building salesforce working structures and my users are constantly requesting I make it so they can email the tree,  Does anyone know of an easy way to do this?

The person who need to consume the image is not inside our network or I would give them access to the page to view it live

any suggestions appreciated

Paul

Peter
Telerik team
 answered on 16 Apr 2010
5 answers
173 views
Hi, I have a chart with Tooltips that work fine when I hover over the points in the Splice Chart, but when I add the Zooming functionality by adding 

<ClientSettings ScrollMode="Both" />
<Legend Visible="false"></Legend>

as you stated in the demo code I lose my Tooltips and also I get the Ajax animation symbol on all my charts which I don't want. Is there any way of losing this symbol and having Tooltips as well as Zooming ? I would really appreciate your help,

Thanks a lot,

Pete.
Giuseppe
Telerik team
 answered on 16 Apr 2010
2 answers
247 views
Hi,

do you have any suggestions on how to make a RadGrid collapsible? I would like to click the header and have grid collapse/expand. JQuery does quite a nice job with toggle(), but I'm looking for a solution that would persist through AJAX calls. Since I never know how many RadGrids there will be on a page I can't use a hidden field to store the toggle state and frankly, storing it in cookies seems like an overkill.

Any ideas?

Kind regards,
Andrea
Andreja Zitnik
Top achievements
Rank 1
 answered on 16 Apr 2010
4 answers
226 views

I'm looking at using the RadMenu in a SharePoint (MOSS) publishing site.  I've followed the white paper and have got the menu integrated with some success using SharePoint Designer to modify my master page.  However the menu does not display/behave the same as the standard ASP.NET menu control does due to the datasource's structure.

For example, my site collection is called 'Intranet' (and this is the top level site) and I have the following sub-sites created beneath it:

  • Subsite 1 (with its own subsites or pages)
  • Subsite 2 (with its own subsites or pages)
  • Subsite 3 (with its own subsites or pages)

Following the white paper, I get a horizontal menu showing only the three subsites on the menu bar, and then their subsites pop-up as drop down menus.  This part is fine, but the Top level site 'Intranet' is missing from the navigation.  This appears to be the same behaviour as seen in the BlueBand.master which the white paper is based on, however I'm wanting to get the same behaviour as can be seen in the default.master where the horizontal menu would show:  Intranet, Subsite 1, Subsite 2, Subsite 3.

Question 1: How can this be achieved?  Note that in SharePoint the 'Intranet' node shown first can be replaced by other sub-sites as you travel deeper into the site hierarchy if you have configured the Navigation for a sub-site to "Display only the navigation items below the current site".

I was able to hack around a bit in SharePoint designer and got the behaviour I was after using two controls.  While this works it does not seem the best solution and I suffer from another problem.  Here is the hack:

<PublishingNavigation:PortalSiteMapDataSource ID="siteMapDataSource1" Runat="server" 
    SiteMapProvider="CombinedNavSiteMapProvider" EnableViewState="true" 
    StartFromCurrentNode="true" StartingNodeOffset="0" ShowStartingNode="false" 
    TreatStartingNodeAsCurrent="true" TrimNonCurrentTypes="Heading"/>  
<PublishingNavigation:PortalSiteMapDataSource ID="siteMapDataSource2" Runat="server" 
    SiteMapProvider="CombinedNavSiteMapProvider" EnableViewState="true" 
    StartFromCurrentNode="true" StartingNodeOffset="0" ShowStartingNode="true" 
    TreatStartingNodeAsCurrent="true" TrimNonCurrentTypes="Heading"/>  
      
    <telerik:RadMenu ID="RadMenuHome" runat="server" DataSourceID="siteMapDataSource2"   
        Skin="Interserve" EnableEmbeddedSkins="false" MaxDataBindDepth="1"   
        Flow="Horizontal" DefaultGroupSettings-Flow="Vertical"/>   
    <telerik:RadMenu ID="RadMenu1" runat="server" DataSourceID="siteMapDataSource1"   
        Skin="Interserve" EnableEmbeddedSkins="false" MaxDataBindDepth="4"   
        Flow="Horizontal" DefaultGroupSettings-Flow="Vertical"/>   
 

I duplicated the PortalSiteMapDataSouce and set the ShowStartingNode = true and then placed two RadMenu's side by side, the first showing just one level (this exposes the 'Intranet' node I was missing) and the second showing the Subsite 1 to 3 menu nodes next to it.  With a bit of CSS tweaking, to the user it looks like one menu bar but importantly all four menu items are present.

The problem I get with this however is that when the number of menu items shown on the menu bar is wider than the browser window, the excess menu items wrap around below on to the next line.  If I set a width on the RadMenu's I can limit the effect so it cuts them off instead of wrapping around to the next line - my preferred behaviour.  However I do not know what width to set as the website uses a liquid layout.  Putting in width="100%" forces the second RadMenu to be pushed to the next line and anything less will cause a gap or a push to the next line depending upon the size of the first RadMenu to it's left.

Also, I can use a CSS style to set overflow to hidden, but then the drop down menus are also hidden.  So far I can not see how to resolve this problem.

Question 2: Is there any other way, using the hack above, to stop the second RadMenu's items from wrapping around on to the second line when the browser window is not wide enough to display them all on a single line?

You may probably ask why I don't just do the following:

<PublishingNavigation:PortalSiteMapDataSource ID="siteMapDataSource1" Runat="server" 
    SiteMapProvider="CombinedNavSiteMapProvider" EnableViewState="true" 
    StartFromCurrentNode="true" StartingNodeOffset="0" ShowStartingNode="true" 
    TreatStartingNodeAsCurrent="true" TrimNonCurrentTypes="Heading"/>  
 
<telerik:RadMenu ID="RadMenu1" runat="server" DataSourceID="siteMapDataSource1"   
    Skin="Interserve" EnableEmbeddedSkins="false" MaxDataBindDepth="4"   
    Flow="Horizontal" DefaultGroupSettings-Flow="Vertical"/>  

Where I set the ShowStartingNode to true, then use just one RadMenu to display it?  If you try this, the RadMenu will display just one menu item on the horizontal bar, 'Intranet', and this will have the three subsites as drop down menus.

I've been looking at this all day and I fear I am missing the obvious, case of wood and trees. :)  Can you help?

Peter
Telerik team
 answered on 16 Apr 2010
1 answer
65 views
Hi,

I have a RadSlidingPane which can be docked by the user. I would like this sliding pane to be open and docked when the page is loaded first time. After that the user can choose to undock and collapse it.

How would I do that? Atm, the pane is always collapsed first time the page is loaded...

Kind Regards
IT Support
Top achievements
Rank 1
 answered on 16 Apr 2010
5 answers
178 views
hi,

i followed the nice example from
http://www.telerik.com/demos/aspnet/prometheus/ToolTip/Examples/RadToolTipManagerClientAPI/DefaultCS.aspx
and all works like a charm.

One little problem i have is the following: ShowDelay on the server for the radtooltipmanager is set to 3000, but it does not seem to work for the tooltip, it shows immediatly.

Is this due the reason i have the tooltip.show() at the client in the mouseover?
Or am i doing something wrong?

Thanks in advance!
Svetlina Anati
Telerik team
 answered on 16 Apr 2010
3 answers
152 views
Hello Sir,
I Want to display Time As 7:00, 7:30, 7:45, 8:00 On Scheduler Control Left Side.

want to Display Schedule time Frame Like as below :-

7:00am

7:15am

7:45am

8:00am

8:15am

And So on.

Currently Scheduler Display Time Frame As Below:-

7:00

8:00

9:00

10:00

But i want to display Upper Format. So Please Help Me.

Thanks
Chandan Kuamr


Veronica
Telerik team
 answered on 16 Apr 2010
5 answers
373 views
Hello,

I am using the Q3 2009 of a RadMaskedTextBox and could not find the OnKeyUp clientside event. It looks like earlier versions of the radinput controls do support this event because it is discussed in this forum.
The OnValueChanging and OnValueChanged events are triggered when the control loses focus so that is to late for my purpose. So is there any way to handle an event right after a user changes the input by a key press in the latest version?

Kind regards,

Jeroen Houba
Maria Ilieva
Telerik team
 answered on 16 Apr 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?