Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
63 views
I have a left-aligned horizontal Radtabstrip.  I would like to put buttons and/or hyperlinks in the free space on the right side of the tabs.

It is the same as the 'Instructions' button with the tabs on the following page under the 'Example Source Code & Description' section:
http://demos.telerik.com/aspnet-ajax/tabstrip/examples/applicationscenarios/loadondemand/defaultcs.aspx



Any help would be appreciated.
Cori
Top achievements
Rank 2
 answered on 23 Sep 2010
17 answers
276 views
Hi!

I've spent hours with this problem, and I'm going insane.

I've seen all documentation regarding the use of custom skins with Rad controls. Fine.
I've tried to use a custom skin (based on a default, WebBlue) within the TabStrip control and It WORKS awesomelly!
It is very easy and fast to deploy; thank you guys!

(That's not the insane part.)

However, I try the EXACT SAME THING with the Window control and it doesn't work at all! The window pops up without any CSS, just the functionality! Default and direct skin use works (of course).

The really strange part is that other controls' custom skins work, as I said, so the steps taken are correct!

Can you help me please?

Thanks in advance!
Adam Toth
Top achievements
Rank 1
 answered on 23 Sep 2010
3 answers
307 views
HI team,

I have a requirement in my application that, I have to perform an action based on the users response(serverside). So I have used radwindow for the same. Based on the response(ok/cancel) respective serverside events are fired. After this operation when i click on any comboboxes it loses its css style (Gets changed to transparent). Radgrids in the page also faces the same issue. please find the follwing code snippets I have used to open and close the radwindow from server side.

Open radwindow :

Telerik.Web.UI.

RadWindow window = radWindowManager.Windows[0];

 

window.VisibleOnPageLoad =

true;

 


Close radwindow :

Telerik.Web.UI.

RadWindow window = radWindowManager.Windows[0];

 

window.VisibleOnPageLoad =

false;

 

window.Dispose();


radwindow in aspx page :

 

<telerik:RadWindowManager ID="radWindowManager" runat="server">

 

 

<Windows>

 

 

<telerik:RadWindow ID="radWindowConfirm" runat="server" VisibleOnPageLoad="false"

 

 

Skin="Vista" Title="Error(s)" Behaviors="Close,Move" Modal="true" Height="200px">

 

 

<ContentTemplate>

 

 

<asp:Label ID="lblDuplicate" runat="server" ForeColor="Red" Text="<%$ Resources:ValidationMessages, DuplicateEntry %>" />

 

 

<asp:Button ID="btnConfirmOk" Text="OK" runat="server" OnClick="btnRadConfirm_Click"

 

 

Visible="false" />

 

 

<asp:Button ID="btnConfirmCancel" Text="Cancel" runat="server" OnClick="btnRadNotConfirm_Click"

 

 

Visible="false" />

 

 

</ContentTemplate>

 

 

</telerik:RadWindow>

 

 

</Windows>

 

 

</telerik:RadWindowManager>

 


Please find the attached screen shots of both scenarios. Please let me help in this issue.

Regards,
Chandrababu.
Kalina
Telerik team
 answered on 23 Sep 2010
3 answers
56 views
I have a page with a RadAjaxUpdatePanel that may or may not show a RadListView control depending on what the user selects. The radlistview is on the page, but initially is Visible=false.

This scenario will result in a javascript error Sys.ArgumentUndefinedException in the asp.net ajax framework.

Do you know of a workaround for this control?
Adam Toth
Top achievements
Rank 1
 answered on 23 Sep 2010
8 answers
329 views
Hello,

When I add programatically radchart control and see the chart control on given page. I had found this error:

"The target 'Control 1#RadChart1' for the callback could not be found or did not implement ICallbackEventHandler"

So, please let me know what's the issue.

Giuseppe
Telerik team
 answered on 23 Sep 2010
15 answers
201 views
I have a grid that resizes the column width after the page is rendered so there is a gray area (blank space) to the right of the last column.
It is wrapping the columns data. 
I would like the column width to fill in the grid width. its fine if it still wraps but I would like to get rid of the gray area. I do not see any column width settings?
Pavlina
Telerik team
 answered on 23 Sep 2010
4 answers
122 views
Hi,

We build a web application with only the Telerik controls!
For the moment we manage the skin via the web.config.
So all controls in the pages are without skin attribute.
Now we want to have different skins who are loaded when a customer is logged in the application.

I make a new skin with the Style Builder ( very nice tool ;-)  )
I upload this new skin in my project like an App_Themes.

I put in my webconfig the following code:

<

 

add key="Telerik.EnableEmbeddedSkins" value="false" />

 

<

 

add key="Telerik.EnableEmbeddedBaseStylesheet" value="false" />

 

<

 

add key="Telerik.Skin" value="MySkin" />

I punt also on the page the theme MySkin.

I can see that all css are loaded but the controls are rendered without style.

I don't know if this approche is the best way for what i want to do.
Also set the information in the web.config is not a solution because the skin is different by customer (I would like to put this in the cs of the master page).

I found a lot of informations, documentations, video etc ... but nothing is very clear for my problem.
I try also differents approche but nothing work.

I'm using the telerik control version 2009.3.1103.20
Is it a problem for the style builder? do i need to migrate to the laste version of telerik?

Could you please help me with this.

In advance thanks,

Edwin.

 

Yves
Top achievements
Rank 1
 answered on 23 Sep 2010
1 answer
43 views
Hello Sir,

How to set RadSlidingPane property DockOnOpen=false through client side event OnClientUndocked;

Please Help Me.

Thanks
Chandan Kumar
Tsvetie
Telerik team
 answered on 23 Sep 2010
1 answer
68 views
I have the follow slider
<telerik:RadSlider ID="slidersteps" runat="server" Value="0" ItemType="Item" Width="738px"
     Height="40px" DecreaseText="Previous" IncreaseText="Next" SelectionStart="1"
     ShowDecreaseHandle="False" ShowIncreaseHandle="False" OnClientBeforeValueChange="clientBeforeValueChange"
     AutoPostBack="true">
     <Items>
         <telerik:RadSliderItem Text="Select Product" Value="PRODUCT" />
         <telerik:RadSliderItem Text="Select Subscription" Value="SUBSCRIPTION" Enabled="false" />
         <telerik:RadSliderItem Text="Registration Details" Value="REGISTRATION" Enabled="false" Visible="false"  />
         <telerik:RadSliderItem Text="Payment Method" Value="METHOD" Enabled="false" />
         <telerik:RadSliderItem Text="Confirmation" Value="CONFIRM" Enabled="false" />
     </Items>
 </telerik:RadSlider>

and the ticker doesn't go to the correct position with 1 item that has 
Visible="false"

and with items that not enabled, it is still clickable.

any idea?
Tsvetie
Telerik team
 answered on 23 Sep 2010
4 answers
129 views
We use client-side data binding extensively for our "read only" grids and it works great. However, I now have a scenario where I would like to use the RadGrid to edit data.

Is there a way to bind the data on the client side and then put all rows into "edit" mode? I tried the "editAllItems" method on the master tableview but it doesn't actually put the rows into edit mode, it just does a postback telling the grid to do the work on the server.

I want to be able to add, edit (in place) and delete rows on the client without ever generating a postback. All rows should *always* be in edit mode. Is it possible?
Scott R
Top achievements
Rank 1
 answered on 23 Sep 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Andrey
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?