Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
88 views
Hi Guys,

I've come across an issue with the file explorer in IE and was hoping you could let me know if this is a known issue and if there are any workarounds or not.

In IE the height of the explorer is forced down greatly. It looks as if the directory listing items you can't see are forcing the explorer size down.

Image can be seen below.

Explorer Image

Thanks.
Jibber4568
Top achievements
Rank 1
 answered on 15 Jun 2012
1 answer
172 views

I Have attached Screen shot. how could i Filed Name and Filed Type in RadFielter Dropdownlist

Advanced
Thanks
Tamim
Eyup
Telerik team
 answered on 15 Jun 2012
2 answers
211 views
Hello all,

I have a table with fields, PK | Student | Subject | Score

I would like that it displays

                 Subject 1         | Subject 2       | Subject 3        | Subject 4
Student 1  Blank Textbox | Blank Textbox | Blank Textbox| Blank Textbox
Student 2  Blank Textbox | Blank Textbox | Blank Textbox| Blank Textbox
Student 3 Blank Textbox | Blank Textbox | Blank Textbox| Blank Textbox
Student 4 Blank Textbox | Blank Textbox | Blank Textbox| Blank Textbox

Is there a sample code that would guide me with this?

Thank you
Milena
Telerik team
 answered on 15 Jun 2012
1 answer
71 views
I have used telerik control in my project. RadTabStrip inside RadTab inside panel.
I'm dynamically created CheckBox and RadComboBox and also get id.
i'm select CheckBox and RadComboBox value and save click to CheckBox and RadComboBox FindControl to get value is null

How Could i get findcontrol to CheckBox and RadComboBox values.

my coding is.
for (int j = 1; j <= i; j++)
            {
                if (j == i)
                {
                    chk_Dynamic = (CheckBox)Panel1.FindControl("ChkBox" + j.ToString());
                    Response.Write(" " + chk_Dynamic.ID + " is " + (chk_Dynamic.Checked == true ? "Checked" : "Un-Checked<br/>"));
                    if (chk_Dynamic.Checked == true)
                    {
                        if (dropdown.SelectedIndex == 0)
                            return;
                    }
                }
            }

Thanks
Tamim
Tamim
Top achievements
Rank 1
 answered on 15 Jun 2012
1 answer
105 views
i am using a line chart. there are some missing values in between the points. i want to connect those points. I haved tried to use emptyvalue property then i had missing values line before and after the actual points. i just want  connect the points with a line. 
.
Peshito
Telerik team
 answered on 15 Jun 2012
1 answer
93 views
Hi,

I am having some problems with a masked textbox in Google Chrome.
The code is:

<div style="float:left"><br>    <radI:RadMaskedTextBox ID="datetimePicker" runat="server" Mask="##/##/####" <br>        PromptChar="_" RoundNumericRanges="false" /><br></div>

The problem in Google Chrome(version 19.0.1084.56 m) is that the selectionStart value is not updated properly after inserting the values following "/" (see bug.png - the cursor should be after the 3 as is for IE and Mozila).

I am using RadControls for ASP.NET AJAX Q2 2011 SP1 and the RadInput.Net2.dll version is 1.4.3.0 .

Thank you
Vasil
Telerik team
 answered on 15 Jun 2012
1 answer
85 views
I have a someone complicated RadTreeView object with nodes in various formats. The top level nodes are created in the aspx.cs code behind, but the rest are created via a call to the same WebService function. The resulting child nodes may have a different appearance depending on the content.

What I would like to do is to adjust the hover and selected CSS classes on a per node basis so that the highlight covers the full height of the node. I cannot do this on a node-level basis because not all level 3 nodes (for example) have the same layout.

In the attached image, I have combined several TreeView screen captures to show how the highlighting currently appears for various nodes. The confusing part is that the top level node created in code behind has a hover highlight that coves the entire node height. I'd be glad to override the styles using declarations on the local aspx page--just couldn't find the right documentation.
Plamen
Telerik team
 answered on 15 Jun 2012
6 answers
1.1K+ views
Hi all
im trying to add a readonly textbox on my form but the problem is it keeps clearing the textbox on postback, if i remove the read only property it works fine.

Does anyone know whats causing this.
Vasil
Telerik team
 answered on 15 Jun 2012
2 answers
123 views
I've done a bunch of grids with filters but I can't figure out why this one doesnt work, the grid will not filter

telerik:RadGrid ID="RadGrid1" runat="server" DataSourceID="SqlDataSource1" GridLines="None"
    OnItemCommand="RadGrid1_ItemCommand" OnItemCreated="RadGrid1_ItemCreated" Width="650px"
    AllowSorting="True" ShowFooter="True" EnableAJAX="True" 
    AllowFilteringByColumn="True" CellSpacing="0">
    <ClientSettings EnableRowHoverStyle="True">
        <Selecting AllowRowSelect="True" />
        <ClientEvents OnRowClick="Dummy"></ClientEvents>
        <Scrolling AllowScroll="true" SaveScrollPosition="true" UseStaticHeaders="true" ScrollHeight="500px" />
    </ClientSettings>
    <PagerStyle Mode="NumericPages" Position="TopAndBottom" />
    <MasterTableView DataSourceID="SqlDataSource1" AutoGenerateColumns="False" AllowAutomaticDeletes="true"
        DataKeyNames="CourseIDX" CommandItemDisplay="TopAndBottom" ClientDataKeyNames="CourseIDX"
        TableLayout="Fixed" AllowCustomSorting="True" AllowFilteringByColumn="true">
        <Columns>
            <telerik:GridBoundColumn DataField="CourseIDX" UniqueName="CourseIDX" HeaderText="CourseIDX"
                Display="False" ItemStyle-Width="50px">
                <ItemStyle Width="50px"></ItemStyle>
            </telerik:GridBoundColumn>
            <telerik:GridBoundColumn DataField="CourseID" UniqueName="CourseID" HeaderText="CourseID"
                Display="false" ItemStyle-Width="50px">
                <ItemStyle Width="50px"></ItemStyle>
            </telerik:GridBoundColumn>
            <telerik:GridBoundColumn DataField="Name" UniqueName="Name" HeaderText="Name" Display="True"
             AllowFiltering="True" 
             AllowSorting="True">
                <ItemStyle Width="300px" HorizontalAlign="Left" />
                <HeaderStyle Width="300px" />
            </telerik:GridBoundColumn>
            <telerik:GridTemplateColumn HeaderText="Preview" UniqueName="Preview" AllowFiltering="false" >
                <ItemTemplate>
                    <asp:HyperLink ID="Preview" runat="server" ImageUrl="~/images/fileimages/preview.gif"></asp:HyperLink>
                </ItemTemplate>
                <ItemStyle Width="50px" HorizontalAlign="Center" />
                          <HeaderStyle Width="50px" HorizontalAlign="Center" />
            </telerik:GridTemplateColumn>
            <telerik:GridTemplateColumn HeaderText="Course " UniqueName="EditCourse" AllowFiltering="false" >
                <ItemTemplate>
                    <asp:HyperLink ID="EditCourse" runat="server" ImageUrl="~/radcontrols/outlook/grid/edit.gif"></asp:HyperLink>
                </ItemTemplate>
                <ItemStyle Width="50px" HorizontalAlign="Center" />
                <HeaderStyle Width="50px" HorizontalAlign="Center" />
            </telerik:GridTemplateColumn>
            <telerik:GridTemplateColumn HeaderText="Edit Tree" UniqueName="EditTree" Display="false" AllowFiltering="false" >
                <ItemTemplate>
                    <asp:HyperLink ID="EditTree" runat="server" ImageUrl="~/images/fileimages/FileTreeView.gif"></asp:HyperLink>
                </ItemTemplate>
                <ItemStyle Width="50px" HorizontalAlign="Center" />
            </telerik:GridTemplateColumn>
            <telerik:GridTemplateColumn HeaderText="Lectures" UniqueName="EditSheet" AllowFiltering="false" >
                <ItemTemplate>
                    <asp:HyperLink ID="EditSheet" runat="server" ImageUrl="~/images/fileimages/Edit.gif"></asp:HyperLink>
                </ItemTemplate>
                <ItemStyle Width="50px" HorizontalAlign="Center" />
                          <HeaderStyle Width="50px" HorizontalAlign="Center" />
            </telerik:GridTemplateColumn>
            <telerik:GridTemplateColumn HeaderText="Points" UniqueName="Points"  AllowFiltering="false" >
                <ItemTemplate>
                    <asp:HyperLink ID="Points" runat="server" ImageUrl="~/images/fileimages/tasks.gif"></asp:HyperLink>
                </ItemTemplate>
                <ItemStyle Width="50px" HorizontalAlign="Center" />
                          <HeaderStyle Width="50px" HorizontalAlign="Center" />
            </telerik:GridTemplateColumn>
            <telerik:GridButtonColumn ButtonType="ImageButton" HeaderText="Student Status" ImageUrl="~/radcontrols/vista/grid/windows/update.gif"
                CommandName="SStatus" UniqueName="SStatus" Display="false" ShowFilterIcon="false" >
                <ItemStyle Width="50px" HorizontalAlign="Center" />
                          <HeaderStyle Width="50px" HorizontalAlign="Center" />
            </telerik:GridButtonColumn>
            <telerik:GridButtonColumn UniqueName="column" HeaderText="Delete" ConfirmText="Confirm Delete of Course!!!"
                Text="Delete" CommandName="Delete" ButtonType="ImageButton" ConfirmDialogType="RadWindow">
                <ItemStyle Width="40px" HorizontalAlign="Center" />
                          <HeaderStyle Width="40px" HorizontalAlign="Center" />
            </telerik:GridButtonColumn>
        </Columns>
<CommandItemSettings ExportToPdfText="Export to PDF"></CommandItemSettings>
 
        <RowIndicatorColumn Visible="False">
            <HeaderStyle Width="20px" />
        </RowIndicatorColumn>
        <ExpandCollapseColumn Resizable="False" Visible="False">
            <HeaderStyle Width="20px" />
        </ExpandCollapseColumn>
        <EditFormSettings>
            <EditColumn CurrentFilterFunction="NoFilter" FilterListOptions="VaryByDataType">
            </EditColumn>
            <PopUpSettings ScrollBars="None"></PopUpSettings>
        </EditFormSettings>
        <CommandItemTemplate>
            &nbsp; &nbsp;
            <telerik:RadButton ID="btnAdd" runat="server" OnClientClicked="ShowAdd" Text="Create New Course"
                ToolTip="Create New Course " Font-Size="XX-Small" Skin="Telerik">
                <Icon PrimaryIconUrl="~/images/fileimages/AddRecord.gif" PrimaryIconLeft="5px" />
            </telerik:RadButton>
            &nbsp;
            <telerik:RadButton ID="btnDuplicate" runat="server" OnClientClicked="ShowDuplicate"
                Text="Duplicate Course" ToolTip="Duplicate Course " Font-Size="XX-Small" Skin="Telerik">
                <Icon PrimaryIconUrl="~/images/fileimages/File-copy-16.png" PrimaryIconLeft="5px" />
            </telerik:RadButton>
            &nbsp;
            <telerik:RadButton ID="btnTextBooks" runat="server" OnClientClicked="ShowPDF" Text="Textbook Lists"
                ToolTip="Textbook Lists " Font-Size="XX-Small" Skin="Telerik">
                <Icon PrimaryIconUrl="~/images/fileimages/pdf.png" PrimaryIconLeft="5px" />
            </telerik:RadButton>
        </CommandItemTemplate>
    </MasterTableView>
    <ExportSettings>
        <Pdf PageBottomMargin="" PageFooterMargin="" PageHeaderMargin="" PageHeight="11in"
            PageLeftMargin="" PageRightMargin="" PageTopMargin="" PageWidth="8.5in" />
        <Excel Format="Html"></Excel>
        <Csv RowDelimiter="NewLine" ColumnDelimiter="Comma"></Csv>
    </ExportSettings>
 
<FilterMenu EnableImageSprites="False"></FilterMenu>
 
<HeaderContextMenu CssClass="GridContextMenu GridContextMenu_Default"></HeaderContextMenu>
</telerik:RadGrid>
david
Top achievements
Rank 1
 answered on 15 Jun 2012
1 answer
104 views
Why this happens in Internet Explorer. It looks fine in FF and Chrome but in IE it's a total mess. Please advice

P.S. please refer the attached screenshot. Thank you
Marin Bratanov
Telerik team
 answered on 15 Jun 2012
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?