Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
92 views
In my application I am using Telerik.Web.UI dll version 2012.1.411.40,
I am using file explorer control of rad on one of my page, this control works
fine in normal web browsers, but when it comes to IPad, IPhone and other
mobile devices it is freezing it grid area.
I am not able to tap on any of uploaded files.
Saurabh
Top achievements
Rank 1
 answered on 19 Jun 2014
7 answers
581 views
Hello!

I have a RadPanelBar with some items. Now I would like to hide some RadPanelItems using 
style="display: none;" (instead of Visible=false) as I need the data inside RadPanelItem on postpack.
The RadPanelItem hides as expected, but there are still <li> elements visible.

Is there a way to hide this <li> elements too?

Regards,
Tonino.
Princy
Top achievements
Rank 2
 answered on 19 Jun 2014
1 answer
118 views
HI,

I am trying to hide few rows based on some condition. I am able to hide content of the row, but the row is rendered with property display:'table-row'. It should have been 'none'.

I am traversing through mastertableviews.GetItems(GridItemType.Item,GridItemType.AlternatingItem)

to hide the row, i have tried griddataitem.Visible = false and also griddataitem.Display=false.

Please suggest me an approach to hide the row while prerender event handling.
Shinu
Top achievements
Rank 2
 answered on 19 Jun 2014
6 answers
261 views
I'm trying to set the width of a RadDateInput, but nothing I do seems to affect the width of the input element (it always renders at width: 100%).
I'v tried these methods:

DateInput.Width =  Unit.Pixel(60);
DateInput.Attributes.CssStyle.Add("width", "60px");
DateInput.EnabledStyle.Width = Unit.Pixel(60);

Is there any correct way to set the width of this element?

-Bjarte
Shinu
Top achievements
Rank 2
 answered on 19 Jun 2014
7 answers
192 views
Hello Team,

     I am new to this control and doing on RnD on Radgrid for one of my project.

The issue i face is when i use multiple columns around 20-25 and when i enable the property UseStaticHeaders = "true" the width and the align  of the column is getting changed in the firefox browser. Plus i also has the property like below.

<Scrolling AllowScroll="True" UseStaticHeaders="true" FrozenColumnsCount="2" />

 

 

<Resizing AllowColumnResize="True" EnableRealTimeResize="True" ResizeGridOnColumnResize="True" />

<MasterTableView TableLayout
="fixed" Width="95%">.

is ther any property i need to enable  to fix the alignment for different browser ??

Thanks
Vijay

 

Pavlina
Telerik team
 answered on 18 Jun 2014
2 answers
258 views
I have a radgrid I created dynamically and added to a placeholder control, I want to get have access to the grid on the client side.

I cant seem to find it unless I hard code the grid name into $find(). like this 
var hardCode = $find("ctl00_MainContent_RadPanelBar1_i0_i1_BatchEditGrid");

How do I find the grid otherwise?

Here is an outline of the code--

ASPX
<%@ Page Title="" Language="C#" AutoEventWireup="true" CodeBehind="GridFeatureTestForm.aspx.cs" Inherits="IProduction.GridFeatureTestForm" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0    Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
    <title></title>
</head>
<body>
<form id="form1" runat="server">
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" OnAjaxRequest="RadAjaxManager1_AjaxRequest"></telerik:RadAjaxManager>
    <script type="text/javascript">
            function testGrid() {
 
                var hardCode = $find("ctl00_MainContent_RadPanelBar1_i0_i1_BatchEditGrid");
 
                var placeholder = $find("<%= PlaceHolder2.ClientID %>");
                alert(placeholder);
 
                var radGrid = ('<%= (RadGrid)RadPanelBar1.FindControl("BatchEditGrid") %>');
                alert(radGrid);
            }
        </script>
<div style="width: 200px;">
<input value="doClient" type="button" onclick="javascript: testGrid();" />
<asp:PlaceHolder ID="PlaceHolder1" runat="server"></asp:PlaceHolder>
    <telerik:RadPanelBar runat="server" ID="RadPanelBar1" Width="100%">
        <Items>
            <telerik:RadPanelItem Expanded="true">
                <Items>
                    <telerik:RadPanelItem Text="Add Records" Expanded="false" Selected="True">
                        <ContentTemplate>
                            <asp:PlaceHolder ID="PlaceHolder3" runat="server"></asp:PlaceHolder>
                        </ContentTemplate>
                    </telerik:RadPanelItem>
                    <telerik:RadPanelItem Text="Edit Records" Expanded="true" Selected="True">
                        <ContentTemplate>
                            <asp:PlaceHolder ID="PlaceHolder2" runat="server"></asp:PlaceHolder>
                        </ContentTemplate>
                    </telerik:RadPanelItem>
                </Items>
            </telerik:RadPanelItem>
        </Items>
        <ExpandAnimation Type="None" />
    </telerik:RadPanelBar>
</div>
</form>
</body>
</html>


ASCX
protected void Page_Init(object sender, System.EventArgs e)
{
    RadGrid grid = new RadGrid();
    grid.ID = "BatchEditGrid";
 
    PlaceHolder2.Controls.Add(grid);
}


















Mike Metafarms
Top achievements
Rank 2
 answered on 18 Jun 2014
4 answers
134 views
Hi,

Is it possible to have search in Image Manager?
It can be difficult to find an image if the folder has thousands of images.
Thanks.

Vessy
Telerik team
 answered on 18 Jun 2014
3 answers
147 views
Hi,

I do not want my app to prompt the Word Content in Clipboard Interception when the user pastes from Word using <ctrl> <v>.  Is there a way to default the value and not show this message?
tammy
Top achievements
Rank 1
 answered on 18 Jun 2014
2 answers
282 views
When the grid first loads I want specific columns to be editable.

I have a checkbox that i want to allow the user to change. Upon changing the checkbox i will then trigger an event that will make other columns become editable.


I know how to set all columns to editable with the following:

foreach (GridItem item in RadGrid1.MasterTableView.Items)
               {
                    
                   if (item is GridEditableItem)
                   {
                       GridEditableItem editableItem = item as GridDataItem;
                       editableItem.Edit = true;
                   }
               }
               RadGrid1.Rebind();

I also know how to get the specific column that I want to set the edit mode on:

foreach (GridColumn column in RadGrid1.Columns)
                {
                    if (column.UniqueName == "Reserved")
                    {
                        if (column is GridEditableColumn)
                        {
                            GridEditableColumn editableColumn = column as GridEditableColumn;
                        }
                    }  
}


However I am not sure how to bridge the gap here.

I'm sure the answer is simple but I'm missing it for the moment.

Thx
Julian
Top achievements
Rank 1
 answered on 18 Jun 2014
7 answers
137 views
Hello,

Today I upgraded from Q1 225 to Q1 403. 

I noticed, immediately, that the menu rendering was, again, incorrect. I removed fixes for Q1 225 first... ;-|

The classic creates a very high main bar and the icons are partly shown. See attachement: radMenu_RenderMode_Classic.png
The Lightweight has also the icon problem. See attachement: radMenu_RenderMode_Lightweight.png

The reason that the images appear partly, is that they have a top: 50%.
I temporary fixed this with:
.RadMenu .rmSlide .rmVertical .rmLeftImage {
    top: 0 !important;
}

Regards,

Erik

Magdalena
Telerik team
 answered on 18 Jun 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?