Telerik Forums
UI for ASP.NET AJAX Forum
7 answers
423 views
Hello, Telerik,
I´m using a radgrid with 100% height and it works fine with Internet Explorer but I can not get it work with Chrome, where it seems to have 1% height, instead of 100%, so my grid is not visible.
This was working for me with Chrome and radcontrols for asp.net version, but now with rad controls for asp.net ajax and Chrome, it does not work,
Here is some parts of my code, I know I have to put height=100% to all the parent tags:
Can you help me, please.

<

 

body style="height:100%;margin:0px;padding:0;" scroll="no">
<form id="form1" enctype="multipart/form-data" runat="server" style="height:100%"

 

 

 

<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>

 

 

 

<asp:Panel ID="pnlExterior" runat="server" Width="100%" Height="100%" DefaultButton="ibtEnter">

 

<

 

telerik:RadCodeBlock ID="radcodigo" runat="server">

 

...

 

</telerik:RadCodeBlock>

 

<

 

telerik:RadSplitter ID="radsplitPagina" runat="server" Width="100%" Height="100%" Skin="Outlook" Orientation="horizontal" OnClientLoaded="FocoSplitterLoad">

 

 

 

<telerik:RadPane ID="radpanArriba" runat="server" Width="100%" Height="116px" Scrolling="None" CssClass="CeldaFondoClara">

 

...

 

</

 

telerik:RadPane>

 

 

 

<telerik:RadPane ID="radpanPagina" runat="server" Width="100%" Height="100%" Scrolling="None" CssClass="PosicionRelativa">

 

 

 

<table style="width: 100%" border="0" cellpadding="0" cellspacing="0">

 

...

 

 

 

 

 

</table>

 

 

 

<table style="width:100%;height:100%" border="0" cellspacing="0" cellpadding="0">

 

 

 

<tr>

 

 

 

<td valign="top" style="width:100%;height:100%">

 

<

 

telerik:RadGrid ID="gvw1" runat="server" AllowPaging="True" PageSize="25" Width="99.5%" Height="99%"

 

 

 

AllowSorting="True" AutoGenerateColumns="False" DataSourceID="odsClientes" GridLines="Horizontal" Skin="Yunke" EnableEmbeddedSkins="false"

 

 

 

OnItemDataBound="gvw1_ItemDataBound" OnSelectedIndexChanged="gvw1_SelectedIndexChanged">

 

...

 

 

 

<MasterTableView DataSourceID="odsClientes" DataKeyNames="intIDCodigoCliente_fl" Width="100%" TableLayout="Fixed"">

 

...

 

</

 

telerik:RadGrid>

 

 

</td>

 

 

 

</tr>

 

 

 

</table>

 

 

 

</telerik:RadPane>

 

</

 

telerik:RadSplitter>

 

 

 

 

 


Thanks for your time,
Daniel.

Galin
Telerik team
 answered on 22 Jan 2013
8 answers
458 views
i am trying with both gridboundColumn and with gridDatetime column but its is not working for any of ane.below is my code for sorting .
Please let me know if i had done any mistake in this ASAP.


<telerik:RadGrid ID="gvMessages" runat="server" AllowSorting="true" ShowGroupPanel="true"
                                                        PageSize="20" AllowPaging="True" AutoGenerateColumns="False" GridLines="Horizontal"
                                                        OnItemDataBound="gvMessages_ItemDataBound" OnNeedDataSource="gvMessages_NeedDataSource"
                                                        OnGroupsChanging="gvMessages_GroupsChanging" OnItemCreated="gvMessages_ItemCreated"
                                                        OnItemCommand="gvMessages_ItemCommand" AllowMultiRowSelection="true" OnRowDrop="gvMessages_RowDrop">
                                                        <HeaderContextMenu EnableAutoScroll="True" />
                                                        <MasterTableView Width="100%" CommandItemDisplay="Top" DataKeyNames="MessageID,PhaseID"
                                                            ClientDataKeyNames="MessageID">
                                                            <SortExpressions>
                                                                <telerik:GridSortExpression FieldName="DateCreated" SortOrder="Descending" />
                                                                <telerik:GridSortExpression FieldName="DateCreated" SortOrder="Descending" />
                                                            </SortExpressions>
                                                            <Columns>
                                                                <telerik:GridTemplateColumn AllowFiltering="false" UniqueName="MessageID" DataField="MessageId">
                                                                    <HeaderStyle Width="20px" />
                                                                    <ItemTemplate>
                                                                        <asp:Image ID="imgFiles" runat="server" ImageUrl="~/Images/attachment-icon.png" Height="18px"
                                                                            Width="17px" />
                                                                    </ItemTemplate>
                                                                </telerik:GridTemplateColumn>
                                                                <telerik:GridBoundColumn SortExpression="Email" AutoPostBackOnFilter="true" HeaderText="From"
                                                                    HeaderButtonType="TextButton" DataField="Email" UniqueName="Email">
                                                                    <HeaderStyle Width="150px" />
                                                                </telerik:GridBoundColumn>
                                                                <telerik:GridBoundColumn SortExpression="MessageSubject" AutoPostBackOnFilter="true"
                                                                    HeaderText="Subject" HeaderButtonType="TextButton" DataField="MessageSubject"
                                                                    UniqueName="MessageSubject">
                                                                    <HeaderStyle Width="200px" />
                                                                </telerik:GridBoundColumn>
                                                                <telerik:GridBoundColumn DataFormatString="{0:MM/dd/yyyy 00:00:00}" SortExpression="DateCreated"
                                                                    AutoPostBackOnFilter="true"  AllowSorting=true DataType="System.TimeSpan" HeaderText="Date" HeaderButtonType="TextButton"
                                                                    DataField="DateCreated" UniqueName="DateCreated">
                                                                    <HeaderStyle Width="200px" />
                                                                </telerik:GridBoundColumn>
                                                                <telerik:GridBoundColumn SortExpression="SenderName" AutoPostBackOnFilter="true"
                                                                    HeaderText="Created By" HeaderButtonType="TextButton" DataField="SenderName"
                                                                    UniqueName="SenderName">
                                                                    <HeaderStyle Width="200px" />
                                                                </telerik:GridBoundColumn>
                                                                <telerik:GridTemplateColumn AllowFiltering="false" HeaderText="Phase Name" UniqueName="PhaseID"
                                                                    DataField="PhaseID">
                                                                    <HeaderStyle Width="200px" />
                                                                    <ItemTemplate>
                                                                        <asp:Label ID="lblPhase" runat="server" Text='<%#Eval("TagName").ToString() %>'></asp:Label>
                                                                    </ItemTemplate>
                                                                </telerik:GridTemplateColumn>
                                                            </Columns>
                                                        </MasterTableView>
                                                        <ClientSettings>
                                                            <ClientEvents OnRowContextMenu="RowContextMenu1"></ClientEvents>
                                                            <Selecting AllowRowSelect="true" />
                                                        </ClientSettings>
                                                        <ClientSettings AllowDragToGroup="True" AllowRowsDragDrop="true" ReorderColumnsOnClient="True"
                                                            AllowColumnHide="True" AllowRowHide="True" AllowColumnsReorder="True">
                                                            <Resizing EnableRealTimeResize="True" ResizeGridOnColumnResize="True" AllowColumnResize="True"
                                                                ClipCellContentOnResize="False"></Resizing>
                                                            <ClientEvents OnRowDblClick="ShowMessage" />
                                                            <Selecting AllowRowSelect="True" EnableDragToSelectRows="false" />
                                                            <Selecting AllowRowSelect="True" />
                                                            <ClientEvents OnRowDropping="onRowDropping" />
                                                        </ClientSettings>
                                                        <GroupingSettings CaseSensitive="false" />
                                                    </telerik:RadGrid>

Thanks.
Mike
Top achievements
Rank 1
 answered on 22 Jan 2013
3 answers
53 views
Hi I was wondering when I click "Add New Record" on a Radgrid, and then click Insert, it will not show anything, all it says "No records to display." What do I need?
Kostadin
Telerik team
 answered on 22 Jan 2013
1 answer
54 views
How to change the text of the no records to display? 
Shinu
Top achievements
Rank 2
 answered on 22 Jan 2013
13 answers
1.3K+ views
I have seen demo of radgrid export to excel. but when I try to use this feature. I could not find it working for me. Grid shows the export button on commend item display but when I press that button page gets refreshed but there is no export behavior. Can anybody help me out on this issue?

Thanks.
Charan
Top achievements
Rank 1
 answered on 22 Jan 2013
1 answer
100 views
Why does your example of the AsyncUpload Control use Byte instead of Kb?
Plamen
Telerik team
 answered on 22 Jan 2013
4 answers
139 views
I'm having an issue using the SQL DBContent Provider for my files.
The structure is a follows:

root/100/   (View) no (Upload nor delete)
root/100/Supporting documents  (Upload and delete)

// Binding the Radfile explorer
RadFileExplorer1.Configuration.ContentProviderTypeName = typeof(DBContentProvider).AssemblyQualifiedName;
RadFileExplorer1.Configuration.ViewPaths = new string[] { "ROOT/" + id };
RadFileExplorer1.Configuration.UploadPaths = new string[] { "ROOT/" + id + "/Supporting Documents" };
RadFileExplorer1.Configuration.DeletePaths = new string[] { "ROOT/" + id + "/Supporting Documents" };

But it does not work any reason why?
Furthermore, the look is very different on IE7 and Firefox. On FF it shows the menus disable but on IE7 look enable but actually they are not working.

Vessy
Telerik team
 answered on 22 Jan 2013
2 answers
82 views
Hi,

I am trying to incorporate the RadColorPicker control to one of our pages.  But when I did so, the page would not load.  When I remove the reference, the page loads as expected.  I tried adding it in the codebehind page via .Controls.Add() and the behavior is the same.  

Additionally, I viewed the browser markup source, and it's blank.  (seems like not a single character was pushed to the browser).

I can't seem to find this issue anywhere else.  Does this problem sound familiar or has been reported before?

Thanks,
Dino
Slav
Telerik team
 answered on 22 Jan 2013
1 answer
69 views
I'm using an older version of the Telerik ASP.NET AJAX controls, but have some problems:

- Typing in a ComboBox does not jump down to the appropriate entry in the list in IE8+ or Chrome (e.g. typing "s" doesn't select the first name beginning with S).
- The Save button on the toolbar of a RadMultiPage control doesn't work in IE9 (clicking it just goes to #). No errors/warnings in the console.

I am using version 2008.2.826.20 which is obviously quite old. I don't want to have to buy an entire new version for this project, is there a bug fix version I can get? Thanks.
Kate
Telerik team
 answered on 22 Jan 2013
1 answer
104 views
Hi..

My folder structure is based on nodes and not physical folders.
I have noticed that when I setup FileExplorer using Folder node, the CreateNewFolder  functionality is not visible, but if I try using FileExplorer for Physical folders, CreateNewFolder   is visible.

Any idea how I can enable CreateNewFolder   for my scenario, that is with node folders?

I think someone(Shaun Peet) here: http://www.telerik.com/community/forums/aspnet-ajax/file-explorer/i-had-to-build-my-own-because.aspx#793543 asked for this functionality back in 2008, has this been made possible yet now in 2013? (I guess no since I'm having this issue)

Thanks!
Khayrattee
Top achievements
Rank 1
 answered on 22 Jan 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?