Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
143 views
I found this post on the forum earlier: http://www.telerik.com/community/forums/thread/b311D-htcet.aspx#384948

My problem is that im using MS UpdatePanels and not RadAjaxManager.

Is it possible to communicate through RadAjaxManager with UpdatePanels to reload the panel or is there some other way to do this?

/Daniel
Kevin Babcock
Top achievements
Rank 1
 answered on 15 Sep 2008
1 answer
43 views
If I click the help button in the editor it flashes what appears to be the help file and then redirects to a page that just says OK.

I'm using version 2008.2.826.20

It seem to work ok in IE but it's not pretty. the scroll bar is halfway off the window and the formatting doesn't look that great.

Is this a known issue?
George
Telerik team
 answered on 15 Sep 2008
3 answers
154 views
Hi Telerik,

I am using the Trial RadDock for ASP.NET 2.0. I coded the same as Dynamic RadDock in Examples of Telerik and also integrated to inside the RadDock  the Dynamic Loading of the Web User Control that may contain as simple as a button with a lable.

My issue is, though the server evnt of the Button inside the User Control hosted in a Dynamic RadDock, is fired, but the RadDock itself do not get refershed with the message in the Lable.

Though in reality I would be placing the RadGrid inside the User Control that is added in the runtime to the dynamic RadDock.

Please help. My client will buy the product, if am I am able to show the demo of this successfully.

Thanks,
Sandeep Kumar Mittal
Sophy
Telerik team
 answered on 15 Sep 2008
2 answers
109 views
I've got data that looks something like this...

Section

SubSection

Version

ABC

Apples

1

DEF

Pears

1

DEF

Oranges

1

DEF

Pears

2

DEF

Pears

3


and would like it to sort it by Section (asc), Subsection (asc) and then Version (desc).  In my RadGrid/MasterTableView/SortExpressions section, I add the following...
<rad:GridSortExpression FieldName="Version" SortOrder="" /> 
<rad:GridSortExpression FieldName="SubSection" SortOrder="Ascending" /> 
<rad:GridSortExpression FieldName="Section" SortOrder="Ascending" /> 
 

According to my understanding of this article, the result should be:

Section

SubSection

Version

ABC

Apples

1

DEF

Oranges

1

DEF

Pears

3

DEF

Pears

2

DEF

Pears

1


But it's not.  "Version" is always sorted in ascending order.  The only way I can get anything to sort in descending order is if I remove all but that sort expression.

What am I missing?

Thanks for the help.
James
Top achievements
Rank 1
 answered on 15 Sep 2008
1 answer
118 views
I know I can change the color of a TimeSlot in the TimeSlotCreated Event, but Can I change the color of the 'Slot' header in a timeline view at runtime based on it's value?
Simon
Telerik team
 answered on 15 Sep 2008
4 answers
127 views
hi all
i need a help as early as possible.sure you people can help me for this problem.

i got a menu control in my page ,when size of the page increased dynamically (loading user controls as per request from controls), my menu get scrolled .i dont want my menu to go here and there.i need solution for this

Reply Expecting Soon

Regards and thanks
Mathews Baby
Mathews
Top achievements
Rank 1
 answered on 15 Sep 2008
2 answers
175 views
I'm using a RadEditor to display a very large content - somthing that can go up to 10 000 words, which represent 20 or so pages. I used to work with the Telelerik for ASP.NET components, and I converted the app to the ASP.NET for ajax components. The page is using a RadEditor with sliding zone, panel bars and ajax manager. The problem is that everytime a postback is made, it seems that the editor is reloading itself and for a few seconds, the application is completely freezed. And that postback time is slowing depending on the text length, when the editor is empty, there's no latency. I didn't have that with the old suite and wondered how I could bypass that; I tried to define the viewstate property to false, different ajax configurations, but nothing changed. What can I do to prevent the editor to reload on the postback ?
George
Telerik team
 answered on 15 Sep 2008
2 answers
585 views

I'm having an issue changing the color of the right-most part of the first menu item in a vertical RadMenu.

Screen Shot of Issue

This is the first time I've modified a Telerik control's CSS.

I'ver modified a copy of the Default.RadMenu_Default.cs file.

I have a vertical menu and I want the menu items to have a white background with black text.

I was successful to the point where the only background that is not white is the background of the space? to the right of the text on the first menu item.  See screen shot.

Thanks in advance for any help you can give.

Mike

CSS follows:

/

* RadMenu Default skin */

 

.RadMenu_Default

{

border: 1px solid White;

border-bottom-width: 0;

border-top-color: White ;

background-color: White;

text-align: left;

}

 

.RadMenu_Default_rtl

 

{

text-align: right;

}

 

.RadMenu_Default_Context

 

{

background: none;

border: 0;

}

 

.RadMenu_Default a

 

{

text-decoration: none;

}

 

.RadMenu_Default .rmLink

 

{

line-height: 24px;

text-decoration: none;

color: Black ;

}

 

.RadMenu_Default .rmLink:focus,

 

.RadMenu_Default .rmFocused

 

{

outline: 0;

}

 

.RadMenu_Default .rmExpanded

 

{

position: relative;

z-index: 10000;

}

 

.RadMenu_Default .rmLink:hover,

 

.RadMenu_Default .rmFocused,

 

.RadMenu_Default .rmExpanded

 

{

background-color: White;

color: Black;

}

 

.RadMenu_Default .rmLink .rmText

 

{

font: normal 12px Arial, sans-serif;

}

 

.RadMenu_Default .rmGroup

 

{

background: White;

}

 

.RadMenu_Default .rmGroup .rmLink

 

{

text-decoration: none;

color: White;

}

 

.RadMenu_Default_rtl .rmGroup .rmLink

 

{

text-align: right;

}

 

.RadMenu_Default .rmGroup .rmLink:hover,

 

.RadMenu_Default .rmGroup .rmFocused,

 

.RadMenu_Default .rmGroup .rmExpanded

 

{

color: White;

background: White;

}

 

.RadMenu_Default .rmText

 

{

padding: 3px 20px 5px;

}

 

.RadMenu_Default .rmGroup .rmLink .rmText

 

{

font-size: 11px;

padding: 4px 37px 5px 20px;

}

 

.RadMenu_Default_rtl .rmGroup .rmLink .rmText

 

{

padding: 4px 20px 5px 37px;

}

 

/* <expand arrows styling> */

 

.RadMenu_Default .rmGroup .rmLink .rmExpandRight

 

{

background: transparent url(Menu/ArrowExpand.gif) no-repeat right -1px;

}

 

.RadMenu_Default .rmGroup .rmLink .rmExpandLeft

 

{

background: transparent url(Menu/ArrowExpandRTL.gif) no-repeat left -1px;

}

 

 

.RadMenu_Default .rmGroup .rmLink:hover .rmExpandRight,

 

.RadMenu_Default .rmGroup .rmFocused .rmExpandRight,

 

.RadMenu_Default .rmGroup .rmExpanded .rmExpandRight

 

{

background-image: url(Menu/ArrowExpandHovered.gif);

}

 

.RadMenu_Default .rmGroup .rmLink:hover .rmExpandLeft,

 

.RadMenu_Default .rmGroup .rmFocused .rmExpandLeft,

 

.RadMenu_Default .rmGroup .rmExpanded .rmExpandLeft

 

{

background-image: url(Menu/ArrowExpandHoveredRTL.gif);

}

 

/* </expand arrows styling> */

 

.RadMenu_Default .rmHorizontal .rmItem { border-right: 1px solid White; padding-bottom:1px; }

 

.RadMenu_Default .rmHorizontal .rmLast { border-right: 0; }

 

.RadMenu_Default .rmVertical .rmItem { border-bottom: 1px solid White; }

 

.RadMenu_Default .rmVertical .rmLast { border-bottom: 0; padding-bottom: 1px; }

 

.RadMenu_Default_rtl .rmHorizontal .rmItem { border-left: 0; }

 

.RadMenu_Default .rmRootGroup .rmGroup .rmItem,

 

.RadMenu_Default_Context .rmGroup .rmItem

 

{ border-right: 0; border-bottom: 0; padding-bottom: 0; }

 

.RadMenu_Default .rmGroup

 

{

border: 0px solid White;

background-color: White;

}

 

.RadMenu_Default .rmGroup .rmExpanded

 

{

z-index: 1;

}

 

.RadMenu_Default .rmTopArrow,

 

.RadMenu_Default .rmBottomArrow

 

{

height: 10px;

width: 100%;

background-color:White;

}

 

.RadMenu_Default .rmBottomArrow

 

{

background-position: center -18px;

}

 

.RadMenu_Default .rmLeftArrow,

 

.RadMenu_Default .rmRightArrow

 

{

width: 10px;

height: 100%;

background-color:White;

}

 

.RadMenu_Default .rmRightArrow

 

{

background-position: -18px center;

}

 

.RadMenu_Default .rmItem .rmDisabled .rmText

 

{

color: White;

}

 

.RadMenu_Default .rmRootGroup .rmItem .rmDisabled

 

{

background: none;

}

 

.RadMenu_Default .rmGroup .rmItem .rmDisabled

 

{

background-color: White;

}

 

.RadMenu_Default .rmRootGroup .rmSeparator,

 

.RadMenu_Default .rmGroup .rmSeparator

 

{

background: White;

border-top: 1px solid White;

border-bottom: 0;

}

 

.RadMenu_Default .rmSeparator .rmText

 

{

display: none;

}

 

.RadMenu_Default .rmHorizontal .rmSeparator

 

{

height: 20px;

width: 1px;

line-height: 20px;

border: 0;

}

 

.RadMenu_Default .rmVertical .rmSeparator

 

{

height: 1px;

margin: 3px 0;

border: 0;

line-height: 1px;

}

 

.RadMenu_Default .rmLeftImage

 

{

margin: 2px;

}

 

.RadMenu_Default .rmSlide

 

{

margin: -1px 0 0 -1px !important;

}

 

.RadMenu_Default .rmHorizontal .rmSlide

 

{

margin-top: -2px !important;

}

 

.RadMenu_Default_rtl .rmSlide

 

{

margin-left: 0 !important;

margin-right: -1px !important;

}

 

.RadMenu_Default .rmGroup .rmSlide

 

{

margin: 0 !important;

}

 

.RadMenu_Default .rmItem .rmDisabled:hover

 

{

background: none;

}

 

.RadMenu_Default .rmItem

{

background-color:White;

}

 

Mike
Top achievements
Rank 1
 answered on 15 Sep 2008
1 answer
102 views
Hi,

It is common practise to have protected virtual OnEventName methods for all events raised on a non sealed class.

Unfortunately RadControls do not follow this convention, which means that should you want to derive from some RadControl and handle one or more events, you need to subscribe to the events as would a normal consumer of the event.

This is bad practise as it leaves you with no control over when your handling is performed in relation to other event subscribers.

I would hope that RadControls in future versions of the Suite will follow the proper convention.

Thanks,
Thomas Scheelhardt
Atanas Korchev
Telerik team
 answered on 15 Sep 2008
2 answers
126 views
I am building a seminar schedule with several tracks and session times.
The day is broken down into sessions, ex. 10-12, 1-3 and 3-5. Is there a way to show the hours column in this fashion instead of each hour seperately? I have looked through all the samples I could find and have snooped around the properties and events but can't seem to find anything that leads me in the right direction. Also this needs to be dynamic as each seminar may have different Sessions and time frames.
Is this possible?

Thanks
 Mike
Simon
Telerik team
 answered on 15 Sep 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?