Hello,
I have a RadFileExplorer which is set to Thumbnailsmode.
I can't seem to figure out where the localization texts for the pager originates from when the RadFileExplorer is in Thumbnailsmode. The other parts of the RadFileExplorer is translated through the RadEditor.Dialogs.resx file which works fine.
I've searched all the other .resx files included in the release I'm using (2015.1.401) without any luck.
Can you pinpoint me to where this is translated?
I have also tried to translate it manually through the grid but that doesn't work at all. Something tells me that the pager is part of the filelist.listview.
radFileExplorer.Grid.MasterTableView.PagerStyle.PagerTextFormat = "{4} " & pageText & " {0} " & ofText & " {1}, " & itemsText & " {2}-{3} " & ofText & " {5}"

I have this issue, the items of the radcombo box always display somewhere else, not down the combo box
i have attached some examples.
Thanks in advance.
Hi,
I have an ASP.NET page with a RadScheduler with server-side binding.
My users created a new record in the database table that scheduler resources are taken from. This new resource still is not visible to them in the related dropdown list in the advanced form.
I was able to reproduce this issue in my local environment and saw that the new resource became visible only after restarting Visual Studio. So I think the problem is related to resource caching.
My question is as follows: is there a way to force the refresh of the cached resources? Maybe application pool recycle would do the job, but I am searching for something softer, as I don't want to create problems to those working on the application.
Thanks
Regards
Mike

hi, i am having issues with radgrid, while editing particular column i want the format as ####.### , but it is not working i set Dataformatsting also but still not working. Expected thing is it will not accept more than 7 digits and also it need to be format as 4.3 digits .
TIA.

The code below works ok in Chrome but not IE 11
<telerik:RadOrgChart ID="orgOGC" runat="server" GroupColumnCount="4" Skin="Silk" DataSourceID="sdsCommandOrgChart" DataFieldID="User_Id" DataFieldParentID="Supervisor_Id" DataTextField="Full_Name" Orientation="Horizontal" RenderMode="Lightweight" >
<ItemTemplate>
<div >
<div style="text-align: center">
<des:LinkButton runat="server" ID="btnUserDetails" Text='<%#DataBinder.Eval(Container.DataItem, "FullName") %>' OnCommand="btnUserDetails_Command" CommandArgument='<%#DataBinder.Eval(Container.DataItem, "UserId")%>'></des:LinkButton><br />
<%#DataBinder.Eval(Container.DataItem, "JobTitle")%><br />
<%#DataBinder.Eval(Container.DataItem, "Department")%><br />
</div>
</div>
</ItemTemplate>
</telerik:RadOrgChart>
My RadWindows are sizing properly on load. But if I resize my RadWindow manually the content doesn't stretch / grow. Is there a way to do this so if I make my RadWindow full screen that it's content stretches to full screen too?
Thanks,
Sean
Is there a way to completely disable chunk upload or increase the chunk size for the RadCloudUpload control?
I'm using a custom AmazonS3Provider overriding the UploadFile method to modify the file stream before sending it to Amazon. When file is larger than 5mb, it doesn't fire the UploadFile but the UploadChunk and I can't make changes to the file content for each chunk, need to have the whole file stream.

Hi
We're using the SQL DB adaptor approach to store images for use in your RadEditor / ImageManager. Our CMS platform enables us to load thumbnail size versions of those images, however I can only see a way to supply ONE image url through when loading the image list, and no way to modify that URL when a user clicks to load the full size image up in the right hand preview panel. There doesn't seem to be any onLoad type event I can hook to which would allow me to alter that preview image url.
To be clear, the intention here would be to use a thumbnail url for the thumbnail listings of all images, but then to use the full size image version in the right hand side preview panel when they click on an individual image.
Is this possible?
Thanks

I tried to get the ID value from selected row in a RadGrid. But what I try, I keep the value " ".
The data is collected by a WCF webservice by the way.
Below the ASP code I use:
<telerik:RadScriptManager ID="RadScriptManager" runat="server" EnableHandlerDetection="false"> <Scripts> </Scripts> </telerik:RadScriptManager> <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="gridSimCards"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="gridSimCards" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager> <div class="pagetitle"><asp:Literal ID="ltrPageTitle" runat="server" /></div> <telerik:RadGrid ID="gridSimCards" runat="server" EnableViewState="true" AutoGenerateColumns="false" Skin="Silk" AllowFilteringByColumn="true" AllowPaging="true" PageSize="10" AllowSorting="true" OnSelectedIndexChanged="gridSimCards_SelectedIndexChanged"> <ClientSettings EnablePostBackOnRowClick="true" EnableRowHoverStyle="true" AllowColumnsReorder="true"> <Selecting AllowRowSelect="true" /> <Resizing AllowColumnResize="true" ShowRowIndicatorColumn="true" /> <DataBinding SelectMethod="GetSimCards" Location="../WebServices/GridDataProvider.svc" SelectCountMethod="GetSimCardsCount" MaximumRowsParameterName="rowCount" StartRowIndexParameterName="rowStart" SortParameterName="sorter" SortParameterType="List" FilterParameterName="filter" FilterParameterType="List" /> </ClientSettings> <PagerStyle Mode="NextPrevAndNumeric" AlwaysVisible="true" /> <MasterTableView Width="100%" DataKeyNames="ID"> <Columns> <telerik:GridBoundColumn UniqueName="ID" DataField="ID" HeaderText="#" DataType="System.String"></telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Provider" HeaderText="Provider" DataType="System.String"></telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Country" HeaderText="Land" DataType="System.String"></telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="SIMNumber" HeaderText="SIM-nummer" DataType="System.String"></telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="TelephoneNumber" HeaderText="Telefoonnummer" DataType="System.String"></telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="ContactPeriodFrom" HeaderText="Contract van" DataType="System.DateTime"></telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="ContractPeriodTill" HeaderText="Contract tot" DataType="System.DateTime"></telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="InUse" HeaderText="In gebruik" DataType="System.Boolean"></telerik:GridBoundColumn> </Columns> </MasterTableView> </telerik:RadGrid>
The code below is use to get the value of the selected ID column:
protected void gridSimCards_SelectedIndexChanged(object sender, EventArgs e){ int selectedRowIdx = gridSimCards.SelectedItems[0].ItemIndex; GridDataItem selectedItem = (GridDataItem)gridSimCards.MasterTableView.Items[selectedRowIdx]; string str = selectedItem["ID"].Text;}
What am I doing wrong, or what am I missing?