We are using telerik old version which was using dll of rad controls.Now we are upgrading these controls to latest version of telerik and getting code issue which was not working .
My following code is not working , So please let us know How we can fixed this issue.
<telerik:AjaxLoadingPanel ID="AjaxLoadingPanel1" runat="server" Height="75px" Width="75px">
<img alt="loading..." src="../RadControls/Ajax/Skins/Default/loading6.gif" />
</telerik:AjaxLoadingPanel>
Gives error:Error16 Unknown server tag 'telerik:AjaxLoadingPanel'.
Hi
I have an ajxified radgrid, so I load the images per item (row) in the ItemDataBoundEvent as per
Image img = (Image)item.FindControl("PartImage");
img.ImageUrl = "~/PartImages/" + Imgurl; //ImgUrl is retrieved elsewhere from the datasourcerow.
Using the demo, There is the issue of RadCodeBlock required
in / around
ImageUrl='<%# String.Format("Images/Sushi/{0}.jpg", Eval("ItemID")) %>'
AlternateText="Sushi image" Width="100px" Height="75px" Style="border: 1px solid #000000;">
Is there a way programmatically to include the image in the exported PDF file?
or
How would I wrap the Markup as per Sushi above to allow for the ajaxification?
thx
Neal
Hey
We have a problem with the drag-and-drop feature of the RadComboBox:
The bug occurs when we have two ComboBoxes and in the OnChange event we sort the items of the first ComboBox. When we move now one item (for example the third) to the other ComboBox with drag-and-drop and then back to its initial position, the order of the items in the left ComboBox is wrong.
We currently us the version 2015.2.826.35 of Telerik.
Please see the attached files. Thank you very much!
Best regards,
Mathias
I'm trying to export data to Excel from a grid but I get the following error:
The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>).
There are two columns in the grid that require the code blocks as part of an itemtemplate. If I remove those columns the export works fine but of course I'm then missing 2 key columns.
I tried wrapping the code blocks with "radcodeblock" but that also just removed the columns from showing up within the grid. The export did work in that case but I do need the columns to show up.
Is there a way to dynamically substitute other data for those columns during export or, worst case, to ignore them in the export?
thanks for your help
When we try and filter on a field in our PivotGrid it does not show any labels in the items list (just the "Select All" option). Additionally if we try and apply a specific label filter (eg. "Contains") it does not return any data even though such data does exists.
Also, is there a way to apply a filter before you perform a layout update? Our cube is quite large so updating the layout without first applying a filter often causes timeouts.
Thanks!
We are using telerik old version which was using dll of rad controls.Now we are upgrading these controls to latest version of telerik and getting more code issue which was not working .
My following code is not working , So please let us know How we can fixed this issue.
Radtreeview1.ImagesBaseDir = "~/RadControls/TreeView/Skins/Arrows/3DBlueAppt";
gives error that radtreeview does not contain definition for ImagesBaseDir.
protected void RadGrid1_RowDrop(object sender, GridDragDropEventArgs e)
{
if (e.DestDataItem != null)
.....drag n drop code here...
<
telerik:RadAjaxPanel
ID
=
"RadAjaxPanel1"
runat
=
"server"
LoadingPanelID
=
"LoadingPanel1"
>
<
uc1:StructGrid
ID
=
"StructGrid"
runat
=
"server"
/>
</
telerik:RadAjaxPanel
>
<
telerik:RadAjaxLoadingPanel
ID
=
"LoadingPanel1"
runat
=
"server"
>
</
telerik:RadAjaxLoadingPanel
>
Hello,
In our web application, we have RadEditor with Image manager and in our case we do not want to show the preview and properties in the image manager window.
We tried with the CSS but it does not work. So, can you please suggest the proper way to hide only the preview and properties in the image manager window of RadEditor.
PFA.
Thanks,
Vivek.
Hi Team,
I want to implement add,edit,delete operations using radgrid bind to client datasource locally and commit changes to the remote server with the sync() command, meaning all crud operations will be done on the client-side and save changes to the remote server.
Any help will be much appreciated.
Thank you.