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

I am using RadGrid in my application. RadGrid is supporting to Resize the column/row dynamically. But on column/row size increse, text in each field is not adjusting properly.

Is there any option to wrap the text based on column/row size adjustment ?
(I tried with  <ItemStyle wrap="True"/>  but it could not do so as expected)

Thanks in advance,
Balaji Velasiri.
Dimo
Telerik team
 answered on 21 Jan 2009
1 answer
105 views
In looking at your online examples (and playing with it myself) I have found the grid renders rather strange in Firefox 3.0.5 and Safari 3.2.1   Specifically the headers and filter section stop short of the right side of the grid under Firefox and end where the scollbar starts.  So there is a 17px gap that shows the grid background color in the upper right corner.

In safari it looks close, the grid headers and filter extend to the right side of the grid, but where the scrollbar starts, they are 1px off vertically.

Example: http://demos.telerik.com/aspnet-ajax/Grid/Examples/Styles/CustomSkin/DefaultCS.aspx

Google Chrome and IE seem to look as expected (though the bottom border of the filter menu doesn't extend do the end of the grid, it stops at the scrollbar)
Dimo
Telerik team
 answered on 21 Jan 2009
5 answers
257 views
following this demo http://demos.telerik.com/aspnet-ajax/Grid/Examples/Programming/SelectRowWithCheckBox/DefaultCS.aspx
I manged it to selects all the rows .. now i would like to delete all selected items from the database by clicking the Delete Button which is not part of the radGrid .. just a common Button to the top of the page.
Column 1 which holds the primary key look like following:

<telerik:GridTemplateColumn Visible="false"
    <ItemTemplate><asp:Label ID="ID" runat="server" Text='<%# Eval("ID") %>'></asp:Label></ItemTemplate
</telerik:GridTemplateColumn>  




Thank you
El
Top achievements
Rank 1
 answered on 21 Jan 2009
0 answers
88 views
Using client-side code, I bring up a MessageBox (alert) when a menu item is clicked. I close the menu item using the close() method prior to using the alert method. The browser window where the menu is located is small and not centered on the screen. When the MessageBox appears, it appears in the middle of the screen and outside of the browser window. After I close the MessageBox, the menu item that I previously closed re-opens again. Only after I move the mouse over the browser window will it close. However, if the browser window is large enough or centered on the screen, the menu item will close after the MessageBox closes. I prefer not to relocate the browser window or resize it, if possible. I don't believe it's possible to have the MessageBox appear centered over the browser window (unless someone knows how to do that). Therefore, the only solution I can think of is that something has to be done in Javascript. Is there a way to refresh the menu or do something to guarantee that it closes even if the mouse is outside of the browser window?
Polaris431
Top achievements
Rank 1
 asked on 21 Jan 2009
1 answer
81 views
Any body familiar with this popup error message?

Sys.WebForms.PageRequestManagerParserException: The message received from the server could not be parsed. Common causes for this error are when the response is modified by calls to Response.Write(), response filters, HttpModules or server trace is enabled.
Details: Error parsing near 'Telerik.web.UI.2008'

I am getting this error message while using treeview and scheduler.
Dimitar Milushev
Telerik team
 answered on 21 Jan 2009
6 answers
296 views
Hi,

I'm evaluating your UI component to replace a frame-based structure.
So far I've achived what I want and it looks good i Firefox 3.0.1 (OS: Vista).
But in IE7 the layout flips out totally.
The RadDocks in the Content RadPane is overlaying the RadPane (z-index problem?) and the scrollbars in the RadPane doesn't scroll its content.

As I mentioned earlier; it looks good in Firefox...

Could you please point me in the right direction to solve this?

Code:
%@ 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"> 
<html xmlns="http://www.w3.org/1999/xhtml">  
<head id="Head1" runat="server">  
    <title>Portal with flow layout</title> 
    <style type="text/css">  
        html, body, form  
        {  
            width: 100%;  
            height: 100%;  
            margin: 0px;  
            padding: 0px;  
            overflow: hidden;  
        }  
        td  
        {  
            vertical-align: top;  
        }  
        .raddock  
        {  
            text-align: left;  
            font: 11px/14px arial,verdana,sans-serif;  
        }  
        .raddockzone  
        {  
            border: 0px !important;  
            padding: 0px !important;  
            overflow: hidden !important;  
        }  
        .raddock .rdTitlebar  
        {  
            height: auto;  
            background-image: none !important;  
            font-size: 1.1em;  
            line-height: 2em;  
        }  
        .raddock .rdTitle  
        {  
            background: none transparent !important;  
        }  
        .raddock div  
        {  
            border-color: silver !important;  
        }  
        .raddock .rdCommands  
        {  
            padding-right: 5px;  
        }  
        .raddock .innerWrp  
        {  
            margin: 0;  
            padding: 10px;  
        }  
    </style> 
</head> 
<body> 
    <form id="form1" runat="server">  
    <asp:ScriptManager ID="ScriptManager" runat="server" /> 
    <div id="ParentDivElement" style="height: 100%;">  
        <telerik:RadSplitter ID="MainSplitter" runat="server" Height="100%" Width="100%" Orientation="Horizontal" Skin="Outlook">  
            <telerik:RadPane ID="TopPane" runat="server" Height="100" Scrolling="none">  
                <!-- Place the content of the pane here --> 
                Logo  
            </telerik:RadPane> 
            <telerik:RadSplitBar ID="RadsplitbarTop" runat="server" EnableResize="false" CollapseMode="Backward" /> 
            <telerik:RadPane ID="MainPane" runat="server" Scrolling="none" MinWidth="500">  
                <telerik:RadSplitter ID="NestedSplitter" runat="server" Skin="">  
                    <telerik:RadPane ID="LeftPane" runat="server" Width="150" Scrolling="Y">  
                        <table width="100%">  
                            <tr> 
                                <td align="center">  
                                    <table align="center" border="0">  
                                        <tr> 
                                            <td align="center">  
                                                Menu  
                                            </td> 
                                        </tr> 
                                    </table> 
                                </td> 
                            </tr> 
                        </table> 
                    </telerik:RadPane> 
                    <telerik:RadSplitBar ID="VerticalSplitBar" runat="server" CollapseMode="Forward" EnableResize="false" /> 
                    <telerik:RadPane ID="ContentPane" runat="server" Scrolling="Both">  
                        <telerik:RadDockLayout runat="server" ID="RadDockLayout1">  
                            <div style="border: 0px solid #f4f4f4; padding: 10px;">  
                                <table cellspacing="0" cellpadding="0" width="100%">  
                                    <tr> 
                                        <td style="width: 33%;">  
                                            <telerik:RadDockZone runat="server" ID="RadDockZone1" Orientation="vertical" Style="border: 0px;" FitDocks="true">  
                                                <telerik:RadDock runat="server" ID="UserInfo" Title="RadDock 1.1">  
                                                    <ContentTemplate> 
                                                        <div class="innerWrp">  
                                                            <br /> 
                                                            <br /> 
                                                            <br /> 
                                                            <br /> 
                                                            more content  
                                                            <br /> 
                                                            ...  
                                                            <br /> 
                                                            <br /> 
                                                            ...  
                                                        </div> 
                                                    </ContentTemplate> 
                                                </telerik:RadDock> 
                                                <telerik:RadDock runat="server" ID="Pictures" Title="RadDock 1.2">  
                                                    <ContentTemplate> 
                                                        <div class="innerWrp">  
                                                            <br /> 
                                                            <br /> 
                                                            <br /> 
                                                            <br /> 
                                                            more content  
                                                            <br /> 
                                                            ...  
                                                            <br /> 
                                                            <br /> 
                                                        </div> 
                                                    </ContentTemplate> 
                                                </telerik:RadDock> 
                                                <telerik:RadDock runat="server" ID="Currency" Title="RadDock 1.3">  
                                                    <ContentTemplate> 
                                                        <div class="innerWrp">  
                                                            <br /> 
                                                            <br /> 
                                                            <br /> 
                                                            <br /> 
                                                            more content  
                                                            <br /> 
                                                            ...  
                                                            <br /> 
                                                            <br /> 
                                                        </div> 
                                                    </ContentTemplate> 
                                                </telerik:RadDock> 
                                                <telerik:RadDock runat="server" ID="RadDock1" Title="RadDock 1.4">  
                                                    <ContentTemplate> 
                                                        <div class="innerWrp">  
                                                            <br /> 
                                                            <br /> 
                                                            <br /> 
                                                            <br /> 
                                                            more content  
                                                            <br /> 
                                                            ...  
                                                            <br /> 
                                                            <br /> 
                                                        </div> 
                                                    </ContentTemplate> 
                                                </telerik:RadDock> 
                                            </telerik:RadDockZone> 
                                        </td> 
                                        <td style="width: 33%;">  
                                            <telerik:RadDockZone runat="server" ID="RadDockZone2" Orientation="vertical" Style="border: 0px;" FitDocks="true">  
                                                <telerik:RadDock runat="server" ID="Horoscopes" Title="RadDock 2.1">  
                                                    <ContentTemplate> 
                                                        <div class="innerWrp">  
                                                            <br /> 
                                                            <br /> 
                                                            <br /> 
                                                            <br /> 
                                                            more content  
                                                            <br /> 
                                                            ...  
                                                            <br /> 
                                                            <br /> 
                                                        </div> 
                                                    </ContentTemplate> 
                                                </telerik:RadDock> 
                                                <telerik:RadDock runat="server" ID="News" Title="RadDock 2.2">  
                                                    <ContentTemplate> 
                                                        <div class="innerWrp">  
                                                            <br /> 
                                                            <br /> 
                                                            <br /> 
                                                            <br /> 
                                                            more content  
                                                            <br /> 
                                                            ...  
                                                            <br /> 
                                                            <br /> 
                                                            ...  
                                                        </div> 
                                                    </ContentTemplate> 
                                                </telerik:RadDock> 
                                            </telerik:RadDockZone> 
                                        </td> 
                                        <td style="width: 33%;">  
                                            <telerik:RadDockZone runat="server" ID="RadDockZone3" Orientation="vertical" Style="border: 0px;" FitDocks="true">  
                                                <telerik:RadDock runat="server" ID="Raddock2" Title="RadDock 3.1">  
                                                    <ContentTemplate> 
                                                        <div class="innerWrp">  
                                                            <br /> 
                                                            <br /> 
                                                            <br /> 
                                                            <br /> 
                                                            more content  
                                                            <br /> 
                                                            ...  
                                                            <br /> 
                                                            <br /> 
                                                            ...  
                                                        </div> 
                                                    </ContentTemplate> 
                                                </telerik:RadDock> 
                                                <telerik:RadDock runat="server" ID="Weather" Title="RadDock 3.2">  
                                                    <ContentTemplate> 
                                                        <div class="innerWrp">  
                                                            <div class="innerWrp">  
                                                                <br /> 
                                                                <br /> 
                                                                <br /> 
                                                                <br /> 
                                                                more content  
                                                                <br /> 
                                                                ...  
                                                                <br /> 
                                                                <br /> 
                                                            </div> 
                                                        </div> 
                                                    </ContentTemplate> 
                                                </telerik:RadDock> 
                                            </telerik:RadDockZone> 
                                        </td> 
                                    </tr> 
                                </table> 
                            </div> 
                        </telerik:RadDockLayout> 
                    </telerik:RadPane> 
                </telerik:RadSplitter> 
            </telerik:RadPane> 
        </telerik:RadSplitter> 
    </div> 
    </form> 
</body> 
</html> 
 

Regards
modas
Top achievements
Rank 1
 answered on 21 Jan 2009
1 answer
138 views
Hello,

I am using RadScheduler version 2008.3.1125.35 which shows multiple days appointment in continuous section in month view. That is indeed a nice feature. But, what I require further is an exact date on which user has clicked on. Presently, it only gives appointment Start / End date time even if we click on any middle day of an appointment.

eg. If my appointment is span across 1/1/2009 to 1/10/2009, and user clicked on 1/5/2009, then along with start/end dates, I need clicked date 1/5/2009 in client / server side event arguments.

Is there any way to figure out on which Date Time user has actually clicked?

Thanks,
Venu
Dimitar Milushev
Telerik team
 answered on 21 Jan 2009
1 answer
85 views
Hi there,

I have a Rad Grid with one DetailTable in the Master table. It works fine and correctly when I turned the "Auto-generate colums at runtime" function for the Mastertable on.

When I turn this function off, the RadGrid Property tool generates all the colums of the AccessDataSource. Of course the DataKeyField is also there.
But when I run the page and select a row in the grid, no Child Items are displayed: No child records to display.

What went wrong?

Best regards from Germany,
Stefan
Daniel
Telerik team
 answered on 21 Jan 2009
3 answers
177 views
hi,

i want to add new row with merged cells above the header cells. for example, let us suppose that we have a grid displays projects status during 3 months (3 columns) as the following:

Jan - Feb - Mar

 10  -  20  - 30

the first row form the header, the second row is data row.

i want to add new row above the columns header, as follows:

   My Projects
Jan - Feb - Mar

 10  -  20  - 30

the first two rows form the header, the last row form data row.

it is urgent,,,,

Thanks and regards
Sebastian
Telerik team
 answered on 21 Jan 2009
3 answers
104 views
hi is this hotfix is included in asp.net Ajax Q3
Telerik.Web.UI_2008_2_904_trial_hotfix.zip

thanks
Daniel
Telerik team
 answered on 21 Jan 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?