Hi,
I am using RadGrid with NestedViewTemplate inside
RadSplitter.
When the grid is in normal mode, the dock button from
Radsplitter is working properly.
Please refer to correct.jpg
When I expend the nested template, the dock becomes collapse mode and
can’t click the dock button. When I hover menu icon, the RadPane is
shown but I cannot able to click the dock button because it is auto
collapse. And also can see the blank pane.
Please refer to error.jpg
Please help me to solve this
Thanks in advance.
The TabStrip is tied to a MultiPageView control, but I have the
TabStrip
set to postback on tab click so I can do some other work. When I hover
over the tab, I see the URL of the page with "#" on the end down in the
browser's status bar. When I click, nothing happens. It never posts
back.
The really strange bit about this is that it had been working.
example;- http://localhost:4770/AceSiteManager/ManageProjectGroup.aspx#
it's very urgent plz....<
script type="text/javascript">
function OnClientFileSelectedHandler(sender, eventArgs)
{
debugger;
var input = eventArgs.get_fileInputField();
//check the extension
if (sender.isExtensionValid(input.value))
{
var img = document.getElementById('<%= imgAttach.ClientID %>');
if (img)
{
img.style.visibility =
"";
img.src = eventArgs.get_fileInputField().value;
}
}
}
</script>
Please hepl me and if can send me a example about this.Thanks
| function openRadWindow() { |
| var oWnd = radopen("update_leave.aspx", "rwUpdateLeave"); |
| oWnd.Center(); |
| } |
| <a style="cursor: hand;" onclick="openRadWindow()"><img src="/images/rotator_edit.gif" width="11" height="11" alt="Update your leave status" /></a> |
| <telerik:RadWindowManager ID="RadWindowManager1" runat="server" Skin="Windows7" VisibleStatusbar="false" DestroyOnClose="true" Animation="Fade" Behaviors="Close, Reload" Style="z-index: 7001;"> |
| <Windows> |
| <telerik:RadWindow ID="rwImage" runat="server" Skin="Windows7" NavigateUrl="image.aspx" AutoSize="false" VisibleStatusbar="false" DestroyOnClose="true" Animation="Fade" Behaviors="Close, Reload" Modal="true" Width="625px" Height="387px"> |
| </telerik:RadWindow> |
| <telerik:RadWindow ID="rwUpdateLeave" runat="server" Skin="Windows7" NavigateUrl="update_leave.aspx" AutoSize="false" VisibleStatusbar="false" DestroyOnClose="true" Animation="Fade" Behaviors="Close, Reload" Modal="true" Width="400px" Height="400px"> |
| </telerik:RadWindow> |
| </Windows> |
| </telerik:RadWindowManager> |
| <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" OnAjaxRequest="RadAjaxManager1_AjaxRequest" |
| DefaultLoadingPanelID="RadAjaxLoadingPanel1"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="RadAjaxManager1"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="GrdPoints" LoadingPanelID="RadAjaxLoadingPanel1" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| <telerik:AjaxSetting AjaxControlID="GrdPoints"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="GrdPoints" LoadingPanelID="RadAjaxLoadingPanel1" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| <telerik:AjaxSetting AjaxControlID="GrdGroups"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="GrdGroups" LoadingPanelID="RadAjaxLoadingPanel1" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| <telerik:AjaxSetting AjaxControlID="GrdThirdParty"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="GrdThirdParty" LoadingPanelID="RadAjaxLoadingPanel1" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| Protected Sub RadAjaxManager1_AjaxRequest(ByVal sender As Object, ByVal e As AjaxRequestEventArgs) |
| Dim values As String = e.Argument |
| Dim array() As String |
| array = values.Split(",") |
| pointsLowerLimit = CInt(array(0)) |
| pointsUpperLimit = CInt(array(1)) |
| UpdatePointsLimits(pointsLowerLimit, pointsUpperLimit) |
| UpdatePointsHiddenFields(pointsLowerLimit, pointsUpperLimit) |
| For Each item As GridDataItem In GrdPoints.Items |
| Dim pReceipt As Single = CSng(item("percentOfOperationalNominatedForReceiptRole").Text) |
| Dim pDelivery As Single = CSng(item("percentOfOperationalNominatedForDeliveryRole").Text) |
| Dim imgR As Image = TryCast(item.FindControl("receiptPercent"), Image) |
| Dim imgD As Image = TryCast(item.FindControl("deliveryPercent"), Image) |
| imgR.ImageUrl = setIndicatorURL(pointsLowerLimit, pointsUpperLimit, pReceipt) |
| imgD.ImageUrl = setIndicatorURL(pointsLowerLimit, pointsUpperLimit, pDelivery) |
| Next |
| End Sub |
| function OnClientClose(oWnd, args) { |
| //get the transferred arguments |
| var arg = args.get_argument(); |
| if (arg) { |
| var pointLimits = new Array(); |
| pointLimits[0] = arg.lowerLimit; |
| pointLimits[1] = arg.upperLimit; |
| var ajaxManager = $find("<%= RadAjaxManager1.ClientID %>"); |
| ajaxManager.ajaxRequest(pointLimits); // invoke ajaxRequest explicitly |
| } |
| } |
| <telerik:GridDropDownColumn DataField="txtOfficeID" DataSourceID="dsOffices" |
| HeaderText="Office" ListTextField="Office_Name" ListValueField="Office_ID" |
| SortExpression="txtOfficeID" UniqueName="txtOfficeID"> |
| </telerik:GridDropDownColumn> |
| Protected Sub RadGrid1_ItemCreated(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs) Handles RadGrid1.ItemCreated |
| If TypeOf e.Item Is GridEditFormItem And e.Item.IsInEditMode Then |
| Dim EditFormItem As GridEditFormItem = CType(e.Item, GridEditFormItem) |
| Dim DropDown As RadComboBox = EditFormItem("txtOfficeID").Controls(0) |
| DropDown.AllowCustomText = True |
| DropDown.AutoCompleteSeparator = "," |
| End If |
| End Sub |
| $telerik.$(".ruCancel", area.get_element()).click |
| ( |
| function(e) |
| { |
| return CancelUpload(); |
| } |
| ); |
| //---------------------- |
| function CancelUpload() |
| { |
| area.cancelRequest(); |
| alert('canceled'); |
| return false; |
| } |