Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
111 views
Hello,
i created a RadWindow website which contains a RadProgressArea which simulates a progress. The window will be openend from another Website on the client. When i start the progress simulation in the Page_Load event of the RadWindow, the window shows the spinning circle until the simulation ends. When I start the simulation over a button click everything works fine. How can I start the simulation when my RadWindow is opened? The Page_Load event seems the wrong place for the function call.


with best regards
Meik Napierski
Georgi Tunev
Telerik team
 answered on 08 Mar 2010
1 answer
103 views
hi

how can i change the row background colour depends on a column value

e.g.

DTDIFF <= 30days Row BGCOLOR = RED


thanks in advance

regards
webster
Princy
Top achievements
Rank 2
 answered on 08 Mar 2010
11 answers
232 views
Hi there.  If I have a 10 MB jpeg stored in a database but specify displaying an image 389 x 259 - what will be transferred to the client?

Thanks,

-ldl-
Rosen
Telerik team
 answered on 08 Mar 2010
3 answers
94 views
I have a 2 x 2 table and I am trying to increase the width of one of the cells.

When I am doing so, then the adjacent cells increases in the length as well.

Do you why this is the case?

I am using IE8 on MOSS2007 and RadControls for ASP.NET AJAX.

Thank you,
Alkis
Stanimir
Telerik team
 answered on 08 Mar 2010
3 answers
260 views

Hi
          I used radwindow. In my page to have number of events. When I click the some event.  That time automatically same radwindow Copy open in another window (page). This one  is doing number of times.  I need to control this one. I want to need only one time opens the window. I don’t need to open the number of same radwindow in each event. I need only one     radwindow.

 

RadWindow newwindow = new RadWindow();

 

    public void BtnColumnPopup_Click(object sender, EventArgs e)

        {

        

      RadWindowManagerProperty.Visible = true;

            newwindow.ID = "radWinProInfo1";

            newwindow.NavigateUrl = "DynamicReportColumn.aspx";

            newwindow.Behaviors = Telerik.Web.UI.WindowBehaviors.Close;

            newwindow.Modal = true;

            newwindow.Width = 850;

            newwindow.Height = 625;

            newwindow.Skin = "Web20";

            newwindow.VisibleOnPageLoad = true;

            RadWindowManagerProperty.Windows.Add(newwindow);

 

        }

let me know how can i fix this problem.

Thanks
G. Manikandan

Georgi Tunev
Telerik team
 answered on 08 Mar 2010
1 answer
108 views
I have the following as the parent page

<telerik:RadSplitter ID="RadSplitter1" Skin="Office2007" runat="server" Width="940px" 
        Height="750px" Orientation="Horizontal" BorderSize="0" OnClientLoaded="IeFix">  
        <telerik:RadPane ID="Radpane11" runat="server" Height="40" MinHeight="40" Scrolling="None">  
   <!-- Top --> 
        </telerik:RadPane> 
          
          
        <telerik:RadSplitBar ID="Radsplitbar3" runat="server" CollapseMode="None" EnableResize="false" /> 
        <telerik:RadPane ID="Radpane1" runat="server" Scrolling="None">  
            <telerik:RadSplitter ID="Radsplitter2" runat="server">  
                <telerik:RadPane runat="server" ID="pneLeft" Width="210" Height="100%" CssClass="leftBG">  
                            <!-- Left -->          
                </telerik:RadPane> 
                <telerik:RadSplitBar ID="RadSplitbar1" runat="server" CollapseMode="Forward" Height="100%" /> 
                <telerik:RadPane runat="server" ID="pneRightContent" ContentUrl="home.aspx" 
                    CssClass="rightBg" Scrolling="None" > 
                      
                </telerik:RadPane> 
                  
            </telerik:RadSplitter> 
        </telerik:RadPane> 
    </telerik:RadSplitter>   
     


In the "pneRightContent", the pages masterpage consist of :
 <telerik:RadSplitter ID="RadSplitter1" Skin="Office2007" runat="server" Width="100%" 
        Height="100%" Orientation="Horizontal" BorderSize="0">  
        <telerik:RadPane ID="RadPaneTop" runat="server" Scrolling="None" Visible="false">  
            <asp:ContentPlaceHolder ID="cphTopPane" runat="server">  
            </asp:ContentPlaceHolder> 
        </telerik:RadPane> 
        <telerik:RadSplitBar ID="Radsplitbar3" runat="server" EnableResize="false" Visible="false" /> 
        <telerik:RadPane ID="RadPaneBottom" runat="server" Height="100%" Scrolling="Y">  
            <asp:ContentPlaceHolder ID="cpnContent" runat="server">  
            </asp:ContentPlaceHolder> 
        </telerik:RadPane> 
    </telerik:RadSplitter> 


When I place a RadEditor in "cpnContent", it shows the vertical scrollbar in IE 8, which I dont need.  Any ideas?
Svetlina Anati
Telerik team
 answered on 08 Mar 2010
5 answers
131 views
Hi,

I am using the following style for radspell dialog. When I use the  below style, the radspell dialog  is coming properly in all the other browsers except IE. In IE, it is behind the modal popup.
.radwindow.radwindow_WebBlue.rwnormalwindow.rwtransparentwindow
    {
        z-index: 12000000 !important;
    }
Can anyone  help  me in resolving the issue



Georgi Tunev
Telerik team
 answered on 08 Mar 2010
4 answers
91 views
Hi,

this is shanker am doing one application my requirement is am catch particular delete column in rad grid in pretender event 

this is my code 

how to find

protected void fulldaygrid_PreRender(object sender, EventArgs e)
        {
            for (int i = 0; fulldaygrid.Items.Count > i; i++)
            {
                if(fulldaygrid.Items[i].Cells[6].Text=="YES")
                {
                    GridColumn deleteColumn = fulldaygrid.MasterTableView.Items[i].Cells[0].GetColumn("DeleteCommandColumn");
                    if (deleteColumn != null) { deleteColumn.Visible = true; }
                   
                }
               
            }
           
        }

please send solution 

thanks and regards
shanker.b
shanker bangari
Top achievements
Rank 1
 answered on 08 Mar 2010
2 answers
152 views

 

I have a grid which runs off a stored procedure and works fine.

I implemented filtering, which worked fine.

I then converted one of the columns I'm filtering on from GridBoundColumn

 

<telerik:GridBoundColumn DataField="plaintiff" HeaderText="Plaintiff" SortExpression="plaintiff" UniqueName="plaintiff" ReadOnly="True">  
</telerik:GridBoundColumn> 

 

 

 

 

 

 

to a GridHyperLinkColumn

 

 

<telerik:GridHyperLinkColumn DataTextFormatString="{0}" DataNavigateUrlFields="id_tblmaster" UniqueName="Plaintiff1" DataNavigateUrlFormatString="showtags1.aspx?cs={0}" HeaderText="Plaintiff" 
 DataTextField="Plaintiff" SortExpression="plaintiff">  
</telerik:GridHyperLinkColumn> 

 

 

 

 

The hyperlink works fine and does what I wish and the DataNavigateUrlFields I am using here is in fact a GUID.

I find however that I now get an error filtering on this hyperlink style column.  The filter functionality seems to be trying to filter using the DataNavigateUrl value instead of the DataTextField value.  I do not see where I have a property to set which value the filter should evaluate.

It seems to me that the filtering function should look at the DataTextField value in the case of a GridHyperLinkColumn.

Any help greatly appeciated.

John Cooney
Top achievements
Rank 1
 answered on 08 Mar 2010
1 answer
129 views
I am using  radgridview in WPF. and this radgrid view i am adding dynamically (runtime)  as well as setting up alignment for some of column.

my problem is when i used horizontal scroll. the alignment is distrub. please see attached file.
 
I know there must be some property for the same as we see in first time,

Please advise what i have to to?

Thanks,
Nitin

design time code works fine but after scrolling the aligment is not looking good.              

 private static void format_column(GridViewDataColumn gvcFormatcolumn, char a)
        {
            if (a.Equals('A'))
            {
                gvcFormatcolumn.DataFormatString = "{0:N2}";
                gvcFormatcolumn.TextAlignment =  TextAlignment.Right;
            }
            else if (a.Equals('Q'))
            {
                gvcFormatcolumn.DataFormatString = "{0:N0}";
                gvcFormatcolumn.TextAlignment = TextAlignment.Right;
            }
            else if (a.Equals('D'))
            {
                gvcFormatcolumn.DataFormatString = "{0:dd-MMM-yyyy}";
                gvcFormatcolumn.TextAlignment = TextAlignment.Right;
            }
        }

Vlad
Telerik team
 answered on 08 Mar 2010
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?