I've looked at a number of threads on this but none have fixed my problem. The DateFormatString="{0:dd MMM yyyy}" is not being applied. This is a date field in the database and it is currently being displayed as mm/dd/
Here's the column definition:
<
telerik:GridDateTimeColumn
UniqueName
=
"RECORDSTARTDATE"
HeaderText
=
"Record Start Date"
DataField
=
"RECORDSTARTDATE"
ShowFilterIcon
=
"false"
DataFormatString
=
"{0:dd MMM yyyy}"
DataType
=
"System.DateTime"
HtmlEncode
=
"false"
ItemStyle-CssClass
=
"center"
CurrentFilterFunction
=
"GreaterThanOrEqualTo"
HeaderStyle-Width
=
"120px"
/>
I've tried to search, but not much information on how to fix. The issue is that:
1. I have 2 radgrid, radgrid A and radgrid B.
2. When radgrid A gets clicked it will refresh radgrid B with new data
3. during the refresh it uses the loading panel.
4. If just the "single click" there are no issue.
5. But when you "double click" on grid A, it will cause panel to show up on grid B and NEVER goes away.
So when I do this in the development enviroment, this is the error I get "unable to get property 'removeChild' of undefined or null reference"
I've tried to use "inline" as suggested in one of the thread, no use, still same issue. Also tried set MinDisplayTime=750 as some suggest, no use either.
Below is the code, thank you very much!
<asp:ScriptManager ID="ScriptManager1" runat="server"/>
<telerik:RadAjaxManager ID="RadAjaxManager" runat="server">
<clientevents onrequeststart="onRequestStart" />
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="grdA">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="grdB" UpdatePanelRenderMode="Inline"
LoadingPanelID="RadAjaxLoadingPanel1" UpdatePanelHeight="99%" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server"
AnimationDuration="500" Skin="Vista" MinDisplayTime="750">
</telerik:RadAjaxLoadingPanel>
Hi,
Using Radgrid with grouping features (ShowFooter="True" + ShowGroupFooter="true") I'm unable to export to excel the footer (GroupFooters export fine).
I'm using GridExcelExportFormat.Html. The Footer data is a column aggregate sum. Using Telerik 2016, 1, 225, 45.
Protected Sub RadGrid1_ItemCommand(ByVal source As Object, ByVal e As GridCommandEventArgs) Handles RadGrid1.ItemCommand
If e.CommandName = Telerik.Web.UI.RadGrid.ExportToExcelCommandName Then
RadGrid1.ExportSettings.Excel.Format = GridExcelExportFormat.Html
RadGrid1.ExportSettings.SuppressColumnDataFormatStrings = True
RadGrid1.ExportSettings.HideStructureColumns = True
RadGrid1.MasterTableView.GroupsDefaultExpanded = True
RadGrid1.ExportSettings.IgnorePaging = True
RadGrid1.ExportSettings.ExportOnlyData = True
RadGrid1.ExportSettings.OpenInNewWindow = True
RadGrid1.MasterTableView.ExportToExcel()
End If
Thanks
Arnaud
I am using a Scatter Line Chart to graph XY values from a data set. These XY points taken from the data set also have a date associated with them. My code pulls 2 points from the dataset and graphs them to show net XY movement over time. When a user hovers a data point on the graph to display the XY values, I would also like the tooltip to say what date (or essentially any 'Z' value) is associated with that point. This Z value is in the data set which I am graphing, but I do not know any way to clearly display the date information so the user knows the point's associated date. I tried adding a {2} to DataFormatString below, but obviously without a 3rd (DataFieldZ?) Specified, it has nothing to link to.
<telerik:RadHtmlChart runat=
"server"
ID=
"SLCPositionalMultiDevice"
Width=
"1100px"
Height=
"650px"
Visible=
"false"
>
<PlotArea>
<Series>
<telerik:ScatterLineSeries Name=
"0"
DataFieldX=
"x"
DataFieldY=
"y"
>
<TooltipsAppearance Color=
"White"
DataFormatString=
"{0}, {1}, {2}"
></TooltipsAppearance>
<LabelsAppearance Visible=
"false"
>
</LabelsAppearance>
</telerik:ScatterLineSeries>
</Series>
<XAxis>
<LabelsAppearance DataFormatString=
"{0}"
></LabelsAppearance>
<MajorGridLines Width=
"1"
></MajorGridLines>
<MinorGridLines Visible=
"false"
></MinorGridLines>
</XAxis>
<YAxis >
<LabelsAppearance DataFormatString=
"{0}mm"
></LabelsAppearance>
<MajorGridLines Width=
"1"
></MajorGridLines>
<MinorGridLines Visible=
"false"
></MinorGridLines>
</YAxis>
</PlotArea>
</telerik:RadHtmlChart>
I want to make the Spreadsheet control the same size as the browser window. So I am trying to use the RadSplitter/RadPane method to do this. However, it's not really working and there are several weird things happening.
<telerik:RadSplitter ID="splitter" runat="server" OnClientLoaded="SplitterLoaded"
BorderSize="1" PanesBorderSize="1" Width="99%">
<telerik:RadPane ID="pane" runat="server" Width="100%">
<telerik:RadSpreadsheet runat="server" ID="radSheet" Height="99%" Width="99%" />
</telerik:RadPane>
</telerik:RadSplitter>
1. As seen in the "sheet_before_event" image, the control doesn't initially fill the RadPane.
2. However, after an event is fired (click in my case) the spreadsheet will then fill the RadPane, as seen in "sheet_after_event" image.
3. Through all of this the sheet view inside the control remains small with scroll bars.
Am I trying to do something that isn't currently supported?
I am badly stuck with using DropDown for Edit/Insert in RadGrid. So far I have been successful in displaying data in dropDown inside RadGrid, but not being able to Update to database. While trying to update, I keep getting error:
Telerik.web.UI.GridException "Cannot find a cell bound to a columns name 'XXXX'
Also we cannot use sqldatasource for security purposes. I searched a lot but can't find solution. If someone could provide me with a working code it will be very helpful.
I need to set dynamic width for my tool tip. If the tool tip is too long it has to go next line.
Also i noticed in this http://demos.telerik.com/aspnet-ajax/tooltip/examples/bindtotarget/defaultcs.aspx
for single line tooltip the skin looks weird(see the attachment) , for multiple line tool tip the skin looks ok. Most of my tooltip has single line it looks not too good .Do you have any workaround?
Thanks.
Eva
Hi,
I am reffering to this demo of Wizard: http://demos.telerik.com/aspnet-ajax/wizard/overview/defaultcs.aspx
Initial disabling of all tabs but first, and then enabling next tab on "Next" button works well until your Wizard do any postback. For example try to add OnNextButtonClick handler to wizard and tabs enabling/disabling works no more.
Could you please provide an example how to achieve correct funcionality of enabling tabs on server side?
Thanks,
P.
Is there a way to set the order the times show up when you click the time icon? For example, when I set the start time to 8:00 am it shows 8am as the first option like I want but then 12:00 am to 7:00 am are not in the selection list anymore. I still need all the options I just want 8am to be the first in the list.
Thanks
Hi,
I am trying to get the Level of the Selected item this way:
Dim node As RadTreeNode
node = rdd_productgroepen.EmbeddedTree.FindNodeByValue(rdd_productgroepen.SelectedValue)
Niveau = node.Level
But the Level value seems not to be there.
How can I achieve this?
Marc