i am using latest version of radcontrol(2008.3.1105.35). in radcombo i try to get selected value from javascript so i tried this code
var
radLable = document.getElementById("<%= radShowLabelSingleSeries.ClientID %>");
var radLablevalue = radLable.GetValue();
but i didn't get value it throw exception.
if i want to get the value what procedure i want to do. (current i am working mutible theme). any rad javascript want to add. or give suggestion to me.
function openConfirmBox()
{
radconfirm(
'Are you sure?', confirmCallBackFn, 330, 100, null,'Confirm');
return false;
}
the call back function is:
function confirmCallBackFn(arg)
{
radalert(
"" + arg + " is returned.",330,100, "Result");
}
But I want the result (arg) to be caught in the code-behind... How do I go about doing this?
<system.web> <httpRuntime encoderType="Microsoft.Security.Application.AntiXssEncoder, AntiXssLibrary"/></system.web>function pageLoad() { var $ = $telerik.$; var height = $(window).height(); if (height == 0) { alert('0 height'); } else { var totalHeight = height - 118; document.getElementById('rGrid_GridData').style.height = totalHeight + "px"; } }function doRefreshOpener(openerTabIndex) { var openerPageView = window.top.getTabPageView(openerTabIndex); $telerik.getChildrenByTagName(openerPageView.get_element(), "iframe")[0].contentWindow.refreshPage();}function refreshPage() { __doPostBack('btnHiddenRefresh', '');}<Columns> <telerik:GridTemplateColumn DataField="A" AllowFiltering="false"> <ItemTemplate> <asp:Image id="image1" runat="server" ImageUrl='<%# Bind("abc")%>' ToolTip='<%# Bind("def")%>' Height="15px" /> </ItemTemplate> </telerik:GridTemplateColumn> <telerik:GridHyperLinkColumn FilterControlToolTip="Filter Text" DataTextField="Name" DataNavigateUrlFields="Name" UniqueName="HyperLinkColumn" DataNavigateUrlFormatString="some text" AllowFiltering="true" HeaderStyle-HorizontalAlign="Left" FilterControlWidth="90px" Target="frame2" /> </Columns>