Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
181 views

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}"

Vessy
Telerik team
 answered on 02 Dec 2015
6 answers
159 views

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.

Veselin Tsvetanov
Telerik team
 answered on 02 Dec 2015
1 answer
180 views

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

 

Plamen
Telerik team
 answered on 02 Dec 2015
1 answer
73 views

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.

Eyup
Telerik team
 answered on 02 Dec 2015
8 answers
165 views

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>

Veselin Tsvetanov
Telerik team
 answered on 02 Dec 2015
3 answers
565 views

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

Marin Bratanov
Telerik team
 answered on 02 Dec 2015
1 answer
247 views

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.

Hristo Valyavicharski
Telerik team
 answered on 02 Dec 2015
3 answers
245 views
Hi all , 

Telerik RadEditor Ctrl + v Not Work when using Trackchanges ? any Advice 

Markup like 

  <telerik:RadEditor runat="server" ID="reBody"   Height="200px" EnableTrackChanges="true" >
                                                  <Tools>
                                                            <telerik:EditorToolGroup>
                                                                <telerik:EditorTool Name="FontName" />
                                                                <telerik:EditorTool Name="FontSize" />
                                                                <telerik:EditorTool Name="Bold" />
                                                                <telerik:EditorTool Name="Italic" />
                                                                <telerik:EditorTool Name="Underline" />
                                                                <telerik:EditorTool Name="StrikeThrough" />
                                                                <telerik:EditorTool Name="Superscript" />
                                                                <telerik:EditorTool Name="Subscript" />
                                                                <telerik:EditorTool Name="JustifyLeft" />
                                                                <telerik:EditorTool Name="JustifyCenter" />
                                                                <telerik:EditorTool Name="JustifyRight" />
                                                                <telerik:EditorTool Name="JustifyFull" />
                                                                <telerik:EditorTool Name="JustifyNone" />
                                                                <telerik:EditorTool Name="Copy" />
                                                                <telerik:EditorTool Name="Cut" />
                                                                <telerik:EditorTool Name="Paste" />
                                                                <telerik:EditorTool Name="DocumentManager" />
                                                                <telerik:EditorTool Name="Indent" />
                                                                <telerik:EditorTool Name="Outdent" />
                                                                <telerik:EditorTool Name="InsertTable" />
                                                                <telerik:EditorTool Name="LinkManager" />
                                                                <telerik:EditorTool Name="InsertOrderedList" />
                                                                <telerik:EditorTool Name="InsertUnorderedList" />
                                                                <telerik:EditorTool Name="InsertImage" />
                                                                <telerik:EditorTool Name="InsertDate" />
                                                                <telerik:EditorTool Name="Undo" ShortCut="CTRL+Z" />
                                                                <telerik:EditorTool Name="Redo" ShortCut="CTRL+Y" />
                                                                <telerik:EditorTool Name="AcceptTrackChange" />
                                                                <telerik:EditorTool Name="RejectTrackChange" />
                                                                <telerik:EditorTool Name="AcceptAllTrackChanges" />
                                                                <telerik:EditorTool Name="RejectAllTrackChanges" />
                                                            </telerik:EditorToolGroup>
                                                        </Tools>
                                                    </telerik:RadEditor>

aspx.cs 

           TrackChangesSettings settings = reBody.TrackChangesSettings;
            settings.Author = Session["UserName"].ToString();
            settings.UserCssId = Session["UserColor"].ToString();
            settings.CanAcceptTrackChanges = true; 



                                                   
Ianko
Telerik team
 answered on 02 Dec 2015
1 answer
105 views

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

Ianko
Telerik team
 answered on 02 Dec 2015
1 answer
182 views

I tried to get the ID value from selected row in a RadGrid. But what I try, I keep the value "&nbsp;".
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?

Konstantin Dikov
Telerik team
 answered on 02 Dec 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?