Telerik Forums
UI for ASP.NET AJAX Forum
4 answers
171 views
Hi,

I'm using RadScheduler with document mode of IE9.
Each appointment is cut, with the height of its containing <td>, and not the height by its duration.

If I change to IE7 document mode, it looks OK.

If I'm on IE9 mode, but removing {position: relative} from the class .rsWrap, the height is OK, but the width is now all over the week, and not over one day.

Screenshots attached for every scenarios.
I'm using version 2013.2.717.40.

Thanks,
Guy.
Magdalena
Telerik team
 answered on 31 Jan 2014
3 answers
52 views
I open another aspx page via jquery ...in load
Location and size of the paging control and columns not arranged . but in postback occurs and the locations are correct.
Venelin
Telerik team
 answered on 31 Jan 2014
1 answer
78 views
I am using RadBinaryImage in my asp.net site. I want the website to be localized. So when I generate resources using "Generate Local Resources" from tools menu then Telerik.Web.UI.BinaryImageCropPosition and Telerik.Web.UI.BinaryImageResizeMode type resources are added to my resource file. But I can only keep string type resources in my resource file. So I need to delete these type of resources and I need to delete these type of resources programmatically. I need to iterate through all my resource files programmatically for some filtering. But I can't iterate for these resources.

using (ResXResourceReader resReader = new ResXResourceReader(filePath))
                    {
                        using (ResXResourceWriter resWriter = new ResXResourceWriter(filePath))
                        {
                            foreach (DictionaryEntry dictionaryEntry in resReader)
                            {

I am using ResXResourceReader to read. Here 'filePath' is the path of a resource. When I go to iterate through the resources the foreach throws an exception for these two type of resources.So I need to delete them. Or I need to find a way to iterate through the resources without exception. But I couldn't find a way. 

Any help for iterating through the resources without exception will also be appreciated. Please Help...



Vasil
Telerik team
 answered on 31 Jan 2014
7 answers
148 views
hai All,

         I have used a page with "RequiredFieldValidator" . And also i need to use AjaxUpdatedControls for avoid reload entire page. 
      <rad:RadAjaxManager ID="RadAjaxManager1" runat="server">
    <AjaxSettings>
        <rad:AjaxSetting AjaxControlID="SaveBtn">
            <UpdatedControls>
                <%--  <rad:AjaxUpdatedControl ControlID="namevalidate" />
            </UpdatedControls>
        </rad:AjaxSetting>
</rad:RadAjaxManager>

  <rad:RadTextBox ID="rtxtname" runat="server" Width="120px">
            </rad:RadTextBox>
            <asp:RequiredFieldValidator ID="namevalidate
" ControlToValidate="rtxtmoctypename"
                runat="server" ErrorMessage="MOC Type Name is required" Display="Static">*</asp:RequiredFieldValidator>
   <asp:Button ID="SaveBtn" runat="server" CssClass="FormButton" Text="Save" Width="59px"
                CommandName="Insert" OnClick="SaveBtn_Click" />
Even i will give data in the  rtxtname, the error message coming. what to do for that?
Nencho
Telerik team
 answered on 31 Jan 2014
1 answer
250 views

Rad Drop down tree how to get child that parent node selected value  client said code[ex: i selected child node how to get the that parent node value and child node  selected value  in client said code ]....
pls help me......
Princy
Top achievements
Rank 2
 answered on 31 Jan 2014
1 answer
112 views


I would like to know how to add custom attribute to the ColumnSeries attribute of RadHtmlChart control from Telerik?

I then want to access this attribute in code behind of asp.net page to set the Value but I don't to show the value of CustomeAttribute to RadHtmlChart on the asp.net Page.

<telerik:ColumnSeries CustomeAttribute=""></telerik:ColumnSeries>


Stamo Gochev
Telerik team
 answered on 31 Jan 2014
4 answers
147 views
Hi,
In my app I export a RadGrid in ExcelML format in order to set font styles, sheet name etc., but unfotunately not all columns are exported.
I must say that those columns that are not exported for some reason are similar (or even identical) to the columns
that are exported.

I've set the UseAllDataFields, ExportOnlyData to "true" but it still did not solve the problem.

In order to make sure that the export format is the real cause I changed it to Biff export format and all columns were exported properly.
I really don't know what I'm doing wrong and how can I fix it.

Hereby I attach the RadGrid with 2 columns - the 1st (Group_Order) is properly exported and the 2nd (Group_Demand) is not exported at all.

Thanks for your help, Kfir.

<

 

 

telerik:RadGrid ID="grdObsoleteFullForm" runat="server" AllowPaging="true" AllowCustomPaging="true" OnItemCommand="grdItemCommand" OnPageIndexChanged="PageIndexChanged" PageSize="100"

 

AutoGenerateColumns="false" OnNeedDataSource="NeedDataSource" GridLines="Both" OnItemCreated="grdObsoleteFullForm_ItemCreated" OnExcelMLExportStylesCreated="grdObsoleteFullForm_ExcelMLExportStylesCreated" OnExcelMLExportRowCreated="grdObsoleteFullForm_ExcelMLExportRowCreated" >

 

<ExportSettings FileName="ObsoleteReport" IgnorePaging="true" ExportOnlyData="true" Excel-Format="ExcelML" ></ExportSettings>

 

<ClientSettings AllowColumnHide="true" AllowColumnsReorder="true" ReorderColumnsOnClient="true" >                                       

 

</ClientSettings>

 

 

 

<MasterTableView GridLines="Both" UseAllDataFields="true" AllowFilteringByColumn="true" AutoGenerateColumns="false" AllowPaging="true" CommandItemDisplay="Top" Width="100%" TableLayout="Fixed">

 

<CommandItemSettings ShowExportToExcelButton="true" ShowRefreshButton="false" ShowAddNewRecordButton="false" />

 

<CommandItemTemplate> <asp:ImageButton ID="excelBtn" Text="export To Excel" OnClick="btnExcel_Click" runat="server" ToolTip="Export To Excel" ImageUrl="~/Images/excel2.jpg" />

<

 

Columns>

 

 

<telerik:GridBoundColumn HeaderText="Group Order" UniqueName="Group_Order" DataField="GroupOrder" HeaderStyle-BackColor="Snow"

 

HeaderStyle-HorizontalAlign="Center" HeaderStyle-VerticalAlign="Top" FilterControlWidth="50px" ItemStyle-HorizontalAlign="Center"

 

 

HeaderStyle-Font-Bold="true" HeaderStyle-Width="50px">

 

</telerik:GridBoundColumn>

 

<telerik:GridBoundColumn HeaderText="Group Demand" UniqueName="Group_Demand" DataField="ProjectDemand" HeaderStyle-BackColor="Snow"

 

 

HeaderStyle-HorizontalAlign="Center" HeaderStyle-VerticalAlign="Top" FilterControlWidth="40px" ItemStyle-HorizontalAlign="Center"

HeaderStyle-Font-Bold="true" HeaderStyle-Width="55px">

 

 

</telerik:GridBoundColumn>

</

 

 

MasterTableView>

 

<PagerStyle Mode="NextPrev" AlwaysVisible="true" ></PagerStyle>

 

</telerik:RadGrid>


Kostadin
Telerik team
 answered on 31 Jan 2014
5 answers
83 views
Hello,

I'd like to clarify whether your HtmlChart supports 'pin down' and 'zoom in' tools. I'd love to hear about any existing solutions, alternatives or workarounds. 

Regards

 
Stamo Gochev
Telerik team
 answered on 31 Jan 2014
2 answers
246 views
When using the RadHTMLChart ScatterLineSeries with data that straddles January 1st, 1970, it seems that by default the Y axis crosses the X axis at 1/1/1970.  If all of the data precedes 1/1/1970, the Y axis crosses the X at its maximum value. 

When using a date axis with a databound ScatterLineSeries, how can I ensure that the Y axis always crosses the X axis at its minimum value?

To see an example, simply replace the relevant C# code from the Date Axis demo page with this:
dt.Rows.Add(1, 2, new DateTime(1969, 06, 12));
dt.Rows.Add(1, 5, new DateTime(1969, 12, 12));
dt.Rows.Add(2, 6, new DateTime(1970, 06, 17));
dt.Rows.Add(3, 4, new DateTime(1970, 09, 18));
dt.Rows.Add(4, 7, new DateTime(1971, 03, 18));

I have tried setting the XAxis.MinValue and XAxis.AxisCrossingValue properties to either zero or (decimal)minValue.ToOADate(), but it either has no effect, or causes all points before 1/1/1970 to render incorrectly - the chart begins at 12/31/1969, and all points before that date "crowd" the axis.


Stamo Gochev
Telerik team
 answered on 31 Jan 2014
1 answer
81 views
I have noticed that the OnFileUpload event will not fire if you are uploading a single file that exceeds the MaxFileSize. Has someone else noticed this and found a solution or work around for it?
Shinu
Top achievements
Rank 2
 answered on 31 Jan 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?