Telerik Forums
UI for ASP.NET AJAX Forum
2 answers
148 views
Scenario:
  1. Have one user control (ucControl1.ascx)
  2. Have below numeric text box with onBlur client event in ucControl1.ascx
    <tr>
                            <td>
                    Number:
                            </td>
                            <td>
                                <telerik:RadNumericTextBox ID="txtNumber" runat="server" Type="Number"
                                    NumberFormat-DecimalDigits="0">
                                    <ClientEvents OnBlur="OnBlur" />
                                </telerik:RadNumericTextBox>
                                <script type="text/javascript">
                                    function OnBlur(sender, args) {
                                        alert('Hello');
                                    }
                                </script>
                            </td>
                        </tr>
  3. Usercontrol is visible=false on page load.
  4. Usercontrol get visible dynamically from page on some event.
  5. Getting error "Error: 'OnBlur' is undefined" when I set visible=true for user control (i.e. ascx) from submit button click event
  6. I am using RadAjaxManager for all post back. Have also put user control in ajax manager setting. Please see below
    <telerik:AjaxSetting AjaxControlID="btnSubmit">
                    <UpdatedControls>
                            <telerik:AjaxUpdatedControl ControlID="ucControl1" LoadingPanelID="radAjaxLoadingPanel" />
                    </UpdatedControls>
    </telerik:AjaxSetting>

Can you please help me in this? It's urgent for me...

Thanks,
Vatsal

Vatsal
Top achievements
Rank 2
 answered on 05 Mar 2013
4 answers
285 views
Hi,

How to disable a radmenu item based on the RadListBox Item checked state?

Thank you,
Ben.
Ben
Top achievements
Rank 1
 answered on 05 Mar 2013
1 answer
137 views
Hi, I'm trying to implement a custom CreateUserWizard asp control in my web site (html5, kendo and jquery based)

as soon as I insert the CreateUserWizard control I get the following error

Uncaught TypeError: Object [object Object] has no method 'kendoPanelBar'

I saw on that page that that control is not compatible with RadAjax.

is there any news about it, or any workaround? 
I don't understand what that "...CreateUserWizard controls whose contents have not been converted to editable templates." means..

Any suggestion would be really appreciated! 

Thanks
Fabio


Maria Ilieva
Telerik team
 answered on 05 Mar 2013
10 answers
285 views
Hi All,

I have a grid with a GridDropDownColumn in it and have it bound to a datasource.  All seems to work well when I Insert into the grid, however, when I got to Edit the record, the drop down list in the column does not populate with all the datasource values.  In fact, it only populates with the value that the record is assigned to in the parent datasource.

I've noticed this also happens in the telerik example here in the second grid that allows editing.  If you edit the first recored you'll notice that the only value that is available to the list is Seattle.  However, if you Add a new record you have access to all the values.

What's going on here?

thanks
Jordan
Radoslav
Telerik team
 answered on 05 Mar 2013
4 answers
229 views
Is there something that describes the default skin's sprite images? Each component's dimensions, position, and the state it represents? It's hard to know how to customize them without this. Thanks
Hristo Valyavicharski
Telerik team
 answered on 05 Mar 2013
1 answer
336 views
<MasterTableView DataKeyNames="AccomMasterId,DestinationId" ShowGroupFooter="true">                        
                        <DetailTables>
                            <telerik:GridTableView DataKeyNames="AccomDetailId,ItemID" Width="100%" runat="server"
                                CommandItemDisplay="None" InsertItemDisplay="Bottom" ShowHeader="true" Name="Accommodation"
                                EditMode="InPlace">                             
                               
                                <Columns>                                    
                                   
                                    <telerik:GridBoundColumn DataField="ContactMaster.CompanyName" FilterControlAltText="Filter CompanyName column"
                                        HeaderText="CompanyName" SortExpression="CompanyName" UniqueName="CompanyName"
                                        Visible="false">
                                    </telerik:GridBoundColumn>
                                    <telerik:GridTemplateColumn HeaderText="Supplier" HeaderStyle-HorizontalAlign="Left">
                                        <EditItemTemplate>
                                            <telerik:RadComboBox ID="rcboSupplierDes" DataTextField="SupplierDescription" EnableLoadOnDemand="True"
                                                DataValueField="ItemID" HighlightTemplatedItems="true" OnItemsRequested="rcboSupplierDes_ItemsRequested"
                                                OnSelectedIndexChanged="OnDescriptionIndexChanged" AutoPostBack="true" ItemsPerRequest="10"
                                                runat="server" Width="300px">
                                                <ItemTemplate>
                                                    <ul>
                                                        <%# DataBinder.Eval(Container, "Text")%>
                                                        <%# DataBinder.Eval(Container, "Attributes['SupplierDescription']")%>
                                                    </ul>
                                                </ItemTemplate>
                                            </telerik:RadComboBox>
                                        </EditItemTemplate>
                                        <FooterTemplate>
                                            <table>
                                                <tr>
                                                    <td>
                                                        
                                                        <asp:Panel ID="pnlDest" Visible="false" runat="server">
</panel>

</footertemplate>

panel set visible false..i want true in itemcommand...get id using findcontrol but not display panel
Shinu
Top achievements
Rank 2
 answered on 05 Mar 2013
1 answer
91 views
The default layout group by headers is like this:

Received        FolderName        Size
>Received from date: Sunday, March 28, 2010
3/28/2010        abc@aol.com    34k
3/28/2010        def@aol.com     31k
3/28/2010        ghi@aol.com      25k
>Received from date: Monday, March 29, 2010
3/29/2010 abc@aol.com 34k
3/29/2010 def@aol.com 31k
3/29/2010 ghi@aol.com 25k

Is there any way to have the layout like this, with the headers repeated within the group by bands?

>Received from date: Sunday, March 28, 2010
Received        FolderName    Size
3/28/2010       abc@aol.com   34k
3/28/2010       def@aol.com    31k
3/28/2010       ghi@aol.com    25k
>Received from date: Monday, March 29, 2010
Received        FolderName     Size
3/29/2010       abc@aol.com   34k
3/29/2010       def@aol.com    31k
3/29/2010       ghi@aol.com     25k

Kostadin
Telerik team
 answered on 05 Mar 2013
5 answers
146 views
Hi, I have a radGrid with GridTemplateColumns with following ClientSettigns settings.  The first time the UpdatePanel gets loaded the radGrid can scroll horizontally as expected.  However on the second refresh of the UpdatePanel, I lose the ability for the columns to scroll horizontally along with the rest of the data.  When scroll, the data moves side-to-side but the headers remain "fronzen".  Thanks, Dave.

<ClientSettings>

<Scrolling AllowScroll="True" UseStaticHeaders="true" SaveScrollPosition="true" FrozenColumnsCount="1"></Scrolling>

<ClientSettings>


Pavlina
Telerik team
 answered on 05 Mar 2013
3 answers
140 views
Hi,

The date picker is not loading in IE browser.

i have attached the image

Let me know the solution


Thanks,
Prasanna
Eyup
Telerik team
 answered on 05 Mar 2013
3 answers
118 views
RadToolBarButton Checked/Unchecked State Persistance:

Hi,
I need to save the Checked/Unchecked State of RadToolBarButton so that even the webpage is refreshed the state of RadToolBarButton persists or is preserved [May be server side or in a cookie]. Is there a built in functionality that I can use or how can I do it?

<telerik:RadToolBarButton CommandName="Filter" PostBack="false" ToolTip="Search/Filter"
    CheckOnClick="true" AllowSelfUnCheck="true" Group="F">
</telerik:RadToolBarButton>

Thanks...
The Team.
http://www.megasearches.com/
Daniel
Telerik team
 answered on 05 Mar 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?