Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
80 views
In the newer versions the add custom color functions was reintroduced for cell and table background colors. Is it possible to store the added colors per usergroup for later usage?
Dobromir
Telerik team
 answered on 05 Aug 2010
3 answers
75 views
If I set either the HeaderStyle CssClass or the ItemStyle CssClass value the "rgSorted" class isn't being added to the column on the grid.
Daniel
Telerik team
 answered on 05 Aug 2010
1 answer
105 views
Hello, I am in the processof upgrading from vs2008 to 2010, and from Telerik Rad q3 2009 to q2 2010.
I am having this problem:
I get a message running certain parts of the app:
Could not load file or assembly 'Telerik.Web.UI, Version=2009.3.1103.25, Culture=neutral, PublicKeyToken=....4' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference

However, I do not know where to look for such reference. The only place in which I can find the strings "2009.3.1103.25" is in .resx files.
How do I update them? Do I have to check them out, manually change and check in again? And do this every time I upgrade Telerik controls? Hw do I avoid this?
Thanks in advance
Sebastian
Telerik team
 answered on 05 Aug 2010
1 answer
154 views
I have a tabstrip control with three tabs and a validation summary control .
Second tab in the tabstrip has a user control with required field validators.
When I load the page it loads with the first tab . if the user make changes and if they save changes without even going to the second tab, the page blows up with the error message "Can't move focus to the control because it is invisble,not enables, or of a type that doesn't accept focus"
If I click okay the page reloads with the validation summary.

I want the page to show the validation when I hit the save and open the tab which has error .

I tried turning off the causesvalidation in the tabstrip, didn't work.

thanks
T. Tsonev
Telerik team
 answered on 05 Aug 2010
1 answer
95 views
Hi..
I have a few controls like checkboxes in a Panel Bar, which are hosted in User Control...
But the events like, OnCheckedChanged, never fire in these controls... any idea what I'm doing wrong?  thanks

<

 

 

telerik:RadPanelBar ID="RadPanelName" runat="server"

 

 

 

Width="290px" onitemclick="RadPanelName_ItemClick">

 

 

 

<Items>

 

 

 

<telerik:RadPanelItem runat="server" Text="Record Name Filter"

 

 

 

Owner="RadPanelName">

 

 

 

<Items>

 

 

 

<telerik:RadPanelItem runat="server" Width="240px" BackColor="#CCCCCC">

 

 

 

 

<ItemTemplate>

 

 

 

 

<table class="style2">

 

 

 

<tr>

 

 

 

<td>

 

 

 

</td>

 

 

 

<td class="style4">

 

 

 

<asp:CheckBox ID="chkALLNAME" runat="server" Text="All" OnCheckedChanged="CHK_ALLNAME_CheckedChanged"

 

 

 

Font-Names="Verdana" Font-Size="12px" />

 

 

 

</td>

 

 

 

<td >

 

 

 

</td>

 

 

 

</tr>

 

 

 

<tr>

 

 

 

<td >

 

 

 

</td>

 

 

 

<td class="style4">

 

 

 

<asp:CheckBox ID="chkLASTNAME" runat="server" Text="Last Name"

 

 

 

Font-Names="Verdana" Font-Size="12px" /></td>

 

 

 

<td >

 

 

 

<telerik:RadTextBox ID="txtLASTNAME" Runat="server" MaxLength="100"

 

 

 

TabIndex="1" Width="165px">

 

 

 

</telerik:RadTextBox>

 

 

 

</td>

 

 

 

</tr>

 

 

 

<tr>

 

 

 

<td >

 

 

 

</td>

 

 

 

<td class="style4">

 

 

 

<asp:CheckBox ID="chkFIRSTNAME" runat="server" Text="First Name"

 

 

 

Font-Names="Verdana" Font-Size="12px" /></td>

 

 

 

<td>

 

 

 

<telerik:RadTextBox ID="txtFIRSTNAME" Runat="server" MaxLength="100"

 

 

 

TabIndex="2" Width="165px">

 

 

 

</telerik:RadTextBox>

 

 

 

</td>

 

 

 

</tr>

 

 

 

<tr>

 

 

 

<td>

 

 

 

</td>

 

 

 

<td class="style4">

 

 

 

<asp:CheckBox ID="chkTITLE" runat="server" Text="Title" Font-Names="Verdana"

 

 

 

Font-Size="12px" /></td>

 

 

 

<td >

 

 

 

<telerik:RadTextBox ID="txtTITLE" Runat="server" MaxLength="100"

 

 

 

TabIndex="2" Width="165px">

 

 

 

</telerik:RadTextBox>

 

 

 

</td>

 

 

 

</tr>

 

 

 

<tr>

 

 

 

<td >

 

 

 

</td>

 

 

 

<td class="style4">

 

 

 

<asp:CheckBox ID="chkORG" runat="server" Text="Org. Name" Font-Names="Verdana"

 

 

 

Font-Size="12px" /></td>

 

 

 

<td >

 

 

 

<telerik:RadTextBox ID="txtORG" Runat="server" MaxLength="100"

 

 

 

TabIndex="2" Width="165px">

 

 

 

</telerik:RadTextBox>

 

 

 

</td>

 

 

 

</tr>

 

 

 

<tr>

 

 

 

<td >

 

 

 

</td>

 

 

 

<td class="style4">

 

 

 

<asp:CheckBox ID="chkEmail" runat="server" Text="Email" Font-Names="Verdana"

 

 

 

Font-Size="12px" /></td>

 

 

 

<td >

 

 

 

<telerik:RadTextBox ID="txtEMAIL" Runat="server" MaxLength="100"

 

 

 

TabIndex="2" Width="165px">

 

 

 

</telerik:RadTextBox>

 

 

 

</td>

 

 

 

</tr>

 

 

 

</table>

 

 

 

 

 

</ItemTemplate>

 

 

 

 

</telerik:RadPanelItem>

 

 

 

</Items>

 

 

 

</telerik:RadPanelItem>

 

 

 

</Items>

 

 

 

</telerik:RadPanelBar>

 

Helen
Telerik team
 answered on 05 Aug 2010
3 answers
144 views
All of the Public Methods of "StyleSheetReferenceCollection Class Members" result in the "MissingURL" page.
-- 
Stuart
Tsvetina
Telerik team
 answered on 05 Aug 2010
3 answers
198 views
I'm having a problem with the Radhtmlfield (in Sharepoint 2007).  In edit mode, when toggled to full-screen, it ducks behind other controls, so that the other controls are covering part of the Radhtmlfield.  I've tried setting z-index values for both the Radhtmlfield, and the other overlapping controls, but with no noticeable results.  Any suggestions, please?
thanks!!
-JeffV
Rumen
Telerik team
 answered on 05 Aug 2010
1 answer
116 views
Hai,

I have a dataset in the following way which is bound to a radgrid.

Id       Name
--------------------
1        USA
2        UK
3        FRANCE

I have one tab strip with 3 tabs USA,UK,FRANCE.  On clicking the UK tab, only the row which contains UK should be visible.

Is there any way?
Shinu
Top achievements
Rank 2
 answered on 05 Aug 2010
3 answers
126 views
Hi Telerik Team,

                       I have used radconfirm in my application. Right now when that confirm box appears the system doesn't produce any alert tones similar to a simple javascript alert or confirm. The end user is very insisting on getting notified when this boxes appear. Can you help in this regards, is there any way?.

i have opened the radconfirm by this script,

radconfirm(confirmString, confirmCallBackFn, 400, 150, "", "Window Title");

Regards,
Saravanan K
Georgi Tunev
Telerik team
 answered on 05 Aug 2010
1 answer
83 views
pop window open new separete file,now i am insert new record that is not added in grtid but added in datatbase,same as update and delete..give me good  solution..i follow u r sample..

With regards
S.Kannadasan
Mira
Telerik team
 answered on 05 Aug 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?