Text='<%# Bind( "Notes") %>
<telerik:RadDropDownList ID="rddlLocations" runat="server" DataSourceID="GetLocationsSqlDataSource" DataTextField="Location" DataValueField="ID"></telerik:RadDropDownList>
Hey Everyone,
I was wondering if there was anyone that could assist me in making a rad asp.net dropdown button. I am fairly new to the telerik controls and have been trying to create this for a couple of days now. any help would be appreciated.

I need to check if hidden field value is 'Y' than it should change tab smoothly but if there is value 'N' in my hidden field than if shoudl open radconfirm before change tab. For example
I have tabs in following format
1 2 3 4 5
Now when I select from 1 to 2 if should check if hidden filed value is 'N' than it should ask me to move on tab 2 in radconfirm if I select no than I should keep me on tab 1 and if I click on OK than it should redirect me on tab 2.
Please help me.
Thanks
Manish
I'm using Telerik UI for ASP.NET AJAX version 2018.3.910.45. When I run my site from Visual Studio on my laptop, various parts of the UI look different than on the QA server. Using my login dialog as an example, I can see that the markup is different. I'm testing using Chrome.
I need to make the controls display the same in both places. Anybody have any thoughts on how to make that happen?
Here is the example of the markup difference:
Laptop markup (IIS Express):
<button type="submit" name="btnLogin" value="Login" id="btnLogin" class="RadButton RadButton_Bootstrap rbButton rbRounded rbIconButton" style="height:30px;width:100%;" tabindex="0"><span class="rbText">Login</span><input id="btnLogin_ClientState" name="btnLogin_ClientState" type="hidden" autocomplete="off" value="{"text":"Login","value":"","checked":false,"target":"","navigateUrl":"","commandName":"","commandArgument":"","autoPostBack":true,"selectedToggleStateIndex":0,"validationGroup":"vgLogin","readOnly":false,"primary":false,"enabled":true}"></button>
Server (IIS 7):
<span id="btnLogin" class="RadButton RadButton_Bootstrap rbVerticalButton" style="display:inline-block;height:30px;width:100%;height:30px;" tabindex="0"><input class="rbDecorated" type="submit" name="btnLogin" id="btnLogin_input" value="Login" style="width:100%;padding-left:0;padding-right:4px;height:30px;" tabindex="-1"><input id="btnLogin_ClientState" name="btnLogin_ClientState" type="hidden" autocomplete="off" value="{"text":"Login","value":"","checked":false,"target":"","navigateUrl":"","commandName":"","commandArgument":"","autoPostBack":true,"selectedToggleStateIndex":0,"validationGroup":"vgLogin","readOnly":false,"primary":false,"enabled":true}"></span>

| <telerik:RadWindowManager ID="RadWindowManager1" runat="server" Skin="Vista" > |
| <windows> |
| <telerik:RadWindow |
| ID="RadWindow1" |
| runat="server" |
| ShowContentDuringLoad="False" |
| Width="400px" |
| Height="350px" |
| Title="Action..." |
| VisibleStatusbar="False" |
| style="display:none;" |
| Behavior="Close" |
| InitialBehavior="None" |
| Modal="True" |
| NavigateUrl="" |
| Behaviors="Close" |
| Left="0" Top="0" |
| OpenerElementID="fsMyActivities" |
| > |
| </telerik:RadWindow> |
| </windows> |
| </telerik:RadWindowManager> |
Similar to the dozens of other threads posted with retrieving a combobox value in client-side code, I cannot get this to work. After spending the past 8 hours trying to get this to work, hopefully someone can point out what I am doing wrong.
I started with this basic code:
<%@ Page Title="" Language="C#" MasterPageFile="~/My.Master" AutoEventWireup="true" CodeBehind="MyPage.aspx.cs" Inherits="MyPage" %><asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server"> <title>My Page</title> <link rel="stylesheet" type="text/css" href="/CSS/MyPage.css" /> <script type="text/javascript" src="/Scripts/MyPage.js"></script></asp:Content><asp:Content ID="Content2" ContentPlaceHolderID="body" runat="server"> <telerik:RadComboBox ID="RadComboBoxADT" runat="server" /> <telerik:RadButton ID="btnSubmit" runat="server" Text="Submit" OnClientClicked="onSubmitClick" SingleClick="true" SingleClickText="Processing..." AutoPostBack="false" /></asp:Content>MyPage.js:
function onSubmitClick(a,b) { var combo = $find("<%= RadComboBoxADT.ClientID %>"); alert(combo); return;}running this code, combo yields "null", so any attempt to get the selected item fails as well.
I tried moving the code from a <script> file, into the content header, e.g.
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server"> <title>My Page</title> <link rel="stylesheet" type="text/css" href="/CSS/MyPage.css" /> <script type="text/javascript">
function onSubmitClick(a,b) {
var combo = $find("<%= RadComboBoxADT.ClientID %>");
alert(combo);
return;
}
</script></asp:Content>however, all this managed to do was yield a javascript error, onSubmitClick not found, on page load (why? if I view code, I can see it there.)
another set of eyes here would be appreciated.
Hi. I have a parent grid and a child grid below. If I click a row in the parent, the child grid will refresh with data associated to the row. I do this by getting the parent to call a "refresh" method in the child from the parent's "selectedIndexChanged" event. The "refresh" method gets data from the database. Then it calls a "rebind" on the grid, which calls the needDatasource method, then the ItemDataBound method. In the ItemDataBound, based on rules, I decide to show or hide an edit icon. When I select rows in the parent, this code fires, and tracing thru, it's setting the correct "true" value to the visible property of my edit icon, however when the page is shown, the icon is not there. Any reason why this is getting lost?
My ugly workaround is to add another method after the "rebind" that basically is the same as the ItemDataBound code which finds the grid, finds my rows, and shows/hides the icons.
public void RefreshChild)
{
LoadChildGridDataFromDataBase();
ChildGrid.Rebind();
//ugly
DoTheItemDataBoundStuffAgain()
}

Commented line works for sorting rest column did not work. and in my application translation is also integrated. so i have to change the header text as per language. please suggest what should i do.
Thanks In Advance.
GridHeaderItem header = (GridHeaderItem)e.Item;
//header["colFilename"].Text = dtfileSharingCofig.Rows[0]["fsNameSearch"].ToString();
header["colUploadedBy"].Text = dtfileSharingCofig.Rows[0]["fsUploadedBySearch"].ToString();
header["colFileType"].Text = dtfileSharingCofig.Rows[0]["fsFileTypeSearch"].ToString();
header["colRating"].Text = dtfileSharingCofig.Rows[0]["fsRatingSearch"].ToString();
header["colUploadedDate"].Text = "Uploaded Date";
header["colRaters"].Text = "Raters";
header["colViews"].Text = "Views";
header["colFileSize"].Text = "File Size";
