Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
107 views
After updating from I think Q3 2008 version to the latest version of 2010, the Rad Dock has stopped showing up when expanded.  However, after expanding, if we click on the top bar (where the title of the dock exists, as if we are trying to drag it) it all shows up.

What could be the possible problem.  We are using our own custom skin, if that helps in isolating the problem.'
Petio Petkov
Telerik team
 answered on 13 Aug 2010
1 answer
63 views
Hi,

My portal allows users to move the docks around and then click a button to save the changes. But seems the SaveLayout Routine won't save the Collapse/Expand status of a RadDock. Some user wanted to collapse some docks by default in order to get more area to display information they focus on. May I know how to do this?

Thanks
Andy Ho
Petio Petkov
Telerik team
 answered on 13 Aug 2010
1 answer
33 views
Hi Telerik Team,

    I can't find some client side method neither in intellisence list when writing js code, nor in help document, but it does exist,

such as set_id() of PageView, repaint() of TabStrip and so on , why?  Are there something wrong of my installation?

Thanks.
Fiko
Telerik team
 answered on 13 Aug 2010
1 answer
194 views
hello, I used Tooltip referring DEMO of Telerik using ASCX for that and initially it worked but just 2-3 days before, I checked, tool tip doesnt work... I have used RadAjaxManager+RadTooltip+RadAjaxPanel. When I remove Ajax Settings of RadTooltip, it starts giving error "Object reference not set". And When I set those settings, it shows tooltip but hides before showing the content. Please help me out in this....I am in need indeed..!!!!
Peter
Telerik team
 answered on 13 Aug 2010
4 answers
164 views
Hi all,

I am building a dashboard that uses docks and forms and currently have the skin chooser set up so the user can select a theme.
I want to get the name of that theme name from the skin chooser into a visual c variable and write it to the database. I then I want to load it  into the skin manager when the dashboard starts next time. I am confident with writing to the database. Its getting the values to and from the skin manager into a variable.

Please reply asap 
regards,

Ash
Ashley
Top achievements
Rank 1
 answered on 13 Aug 2010
1 answer
58 views
This is driving me absolutely crazy....I am simply trying to pass in SQL parameters via textbox and date picker (with a button click) and rebind the freaking grid....I walk thru the code behind and it sets the values on the SQL params just fine, but radGridWebErrorLogs.Rebind() does absolutely nothing, the radGrid does not refresh.....code is simple and straight forward. Anyone shed some light? I am about to give up on something that should be so easy.

<telerik:RadAjaxPanel ID="radAjaxPanelSearchCriteria" runat="server">
                    <telerik:RadPanelBar runat="server" ID="radPanelBarSearchCriteria" ExpandMode="SingleExpandedItem" Width="100%">
                        <Items>
                            <telerik:RadPanelItem Expanded="True" Text="Search Criteria" runat="server" Selected="true">
                                <Items>
                                    <telerik:RadPanelItem Value="SearchCriteria" runat="server">
                                        <ItemTemplate>
                                            <div style="background-color: InactiveCaptionText">
                                                <center>
                                                <table cellpadding="4" cellspacing= "0">
                                                    <tr>
                                                        <td>
                                                            Message:&nbsp;
                                                            <telerik:RadTextBox ID="radTextBoxMessage" runat="server" Width="205px" MaxLength="250" />

<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
                    <AjaxSettings>
                        <telerik:AjaxSetting AjaxControlID="radGridWebErrorLogs">
                            <UpdatedControls>
                                <telerik:AjaxUpdatedControl ControlID="radGridWebErrorLogs" />
                                <telerik:AjaxUpdatedControl ControlID="lblMessage" />
                            </UpdatedControls>
                        </telerik:AjaxSetting>
                    </AjaxSettings>
                </telerik:RadAjaxManager>

                <telerik:RadGrid ID="radGridWebErrorLogs" DataSourceID="dtsWebErrorLogs" ShowStatusBar="True" AllowSorting="True" PageSize="20" GridLines="None" AllowPaging="True"
                    runat="server" AllowAutomaticDeletes="True" AutoGenerateColumns="False" OnDataBound="radGridWebErrorLogs_DataBound" OnItemDeleted="radGridWebErrorLogs_ItemDeleted">
                    <MasterTableView TableLayout="Fixed" DataKeyNames="WebErrorLogID" CommandItemDisplay="None">
                        <Columns>
                            <telerik:GridBoundColumn HeaderText="Error ID" DataField="ErrorID" UniqueName="ErrorID" Visible="false" ReadOnly="true" ForceExtractValue="Always" ItemStyle-VerticalAlign="Top" />
                            <telerik:GridBoundColumn HeaderText="Application" DataField="Application" UniqueName="Application" SortExpression="Application" ItemStyle-VerticalAlign="Top" />
                            <telerik:GridBoundColumn HeaderText="Message" DataField="Message" UniqueName="Message" SortExpression="Message" ItemStyle-VerticalAlign="Top" />
                            <telerik:GridBoundColumn HeaderText="Error Source" DataField="ErrSource" UniqueName="ErrSource" SortExpression="ErrSource" ItemStyle-VerticalAlign="Top" />
                            <telerik:GridBoundColumn HeaderText="Error Path" DataField="ErrPath" UniqueName="ErrPath" SortExpression="ErrPath" ItemStyle-VerticalAlign="Top" />
                            <telerik:GridBoundColumn HeaderText="Stack Trace" DataField="StackTrace" UniqueName="StackTrace" SortExpression="StackTrace" ItemStyle-VerticalAlign="Top" />
                            <telerik:GridBoundColumn HeaderText="Date Recorded" DataField="DateRecorded" UniqueName="DateRecorded" SortExpression="DateRecorded" ItemStyle-VerticalAlign="Top" />
                            <telerik:GridButtonColumn ConfirmText="Delete this Web Error Log?" ConfirmDialogType="RadWindow" ItemStyle-VerticalAlign="Top"
                                ConfirmTitle="Delete" ButtonType="ImageButton" CommandName="Delete" Text="Delete"
                                UniqueName="DeleteColumn" HeaderStyle-Width="50px" Visible="true">
                                <ItemStyle HorizontalAlign="Center" CssClass="MyImageButton" />
                            </telerik:GridButtonColumn>
                        </Columns>
                    </MasterTableView>
                </telerik:RadGrid>
                                                            &nbsp;&nbsp;&nbsp;Date Recorded:&nbsp;
                                                            <telerik:RadDatePicker ID="radDatePickerDateRecorded" runat="server"></telerik:RadDatePicker>
                                                            &nbsp;&nbsp;&nbsp;
                                                            <asp:Button runat="server" ID="btnSearch" OnClick="btnSearch_OnClick" Text="Search" CssClass="submitButton" />
                                                            <asp:Button runat="server" ID="btnReset" OnClick="btnReset_OnClick" Text="Reset" CssClass="submitButton" />
                                                        </td>
                                                    </tr>
                                                </table>
                                                </center>
                                            </div>
                                        </ItemTemplate>
                                    </telerik:RadPanelItem>
                                </Items>
                            </telerik:RadPanelItem>
                        </Items>
                        <CollapseAnimation Duration="100" Type="None" />
                        <ExpandAnimation Duration="100" Type="None" />
                    </telerik:RadPanelBar>
                </telerik:RadAjaxPanel>

<br />
    <asp:Label ID="lblMessage" runat="server" EnableViewState="false" />
    <br />
    <asp:SqlDataSource ID="dtsWebErrorLogs" runat="server" ConnectionString="<%$ ConnectionStrings:ApplicationServices %>"
        ConflictDetection="CompareAllValues"
        OldValuesParameterFormatString="original_{0}"
        SelectCommand="w_WebErrorLogs_Select" SelectCommandType="StoredProcedure" CancelSelectOnNullParameter="false" OnSelecting="dtsWebErrorLogs_Selecting"
        DeleteCommand="DELETE FROM WebErrorLogs WHERE WebErrorLogID = @original_WebErrorLogID">
        <SelectParameters>
            <asp:Parameter Name="ApplicationID" DefaultValue="<%$ AppSettings:ApplicationId %>" />
            <asp:Parameter Name="Message" Type="String" />
            <asp:Parameter Name="DateRecorded" Type="DateTime" />
        </SelectParameters>
        <DeleteParameters>
            <asp:ControlParameter ControlID="radGridWebErrorLogs" Name="original_WebErrorLogID" PropertyName="SelectedValue" />
        </DeleteParameters>
    </asp:SqlDataSource>



 protected void dtsWebErrorLogs_Selecting(object sender, SqlDataSourceSelectingEventArgs e)
        {
            RadTextBox radTextBoxMessage = (RadTextBox)radPanelBarSearchCriteria.FindItemByValue("SearchCriteria").FindControl("radTextBoxMessage");
            RadDatePicker radDatePickerDateRecorded = (RadDatePicker)radPanelBarSearchCriteria.FindItemByValue("SearchCriteria").FindControl("radDatePickerDateRecorded");

            e.Command.Parameters[1].Value =  radTextBoxMessage.Text;
            e.Command.Parameters[2].Value =  radDatePickerDateRecorded.SelectedDate;
        }

        protected void btnSearch_OnClick(object sender, EventArgs e)
        {
            radGridWebErrorLogs.Rebind(); //THIS DOES NOTHING
        }
Todd
Top achievements
Rank 1
 answered on 13 Aug 2010
4 answers
99 views
Hey, I am having an issue where certain users will get a dark grey background behind their text whenever they use the RadEditor control. It is only certain users as other users have no background color behind their text. They are typing directly into the control, and not doing a copy/paste from another text editor. Also, they are not going into the HTML edit mode and adding the background color. Has anyone experienced this issue before?
David Entner
Top achievements
Rank 1
 answered on 13 Aug 2010
3 answers
160 views

When using the GridClientSelectColumn column, is there a way to sort by it, so all the selecting rows can be at the top or bottom? Right now, all the header shows is a checkmark, which select or deselects all the rows. Can I have a column name at the top and click on that to sort?

Martin
Telerik team
 answered on 13 Aug 2010
2 answers
241 views
Hi

I have a Grid control, using AJAX and User Control Edit Forms working perfectly as I wanted it. The client has now asked for a self hierarchy to be implemented. This is working fine, and everything groups up as expected. However there are two issues:

1) When I click "Add New Row" in a child GridView the Insert form appears at the top level, not at the same level as the child Grid View
2) When I try to edit a Child item, once the screen has refreshed the edit form isn't displayed and the grouping is minimised back to the top level

Any thoughts / pointers appreciated

Cheers

Simon
Ryan
Top achievements
Rank 1
 answered on 13 Aug 2010
4 answers
283 views
I have three RadCombo boxes that interact with each other depending on what the boxes in front has selected.  The combination of Radcombo make up a database product filter of three different search values to populate a repeater control via Radhttppanel.  That is working great (lightweight and quick). 

I am trying to reset box 2 and 3 to default item (message like width and Length) when I change the selected values in box 1 (material).    I look up and down and inside and out the online docs and did not see anything for setting the selected value on the client side.  It could be simple and I am just  missing it.

Thanks for any help.
David
David
Top achievements
Rank 1
 answered on 13 Aug 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?