Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
149 views
Dear Telerik

       Is there anyway I can disable the exclamation icon  when a character is keyed in to "RadNumericTextBox" ??

Kenneth
Shinu
Top achievements
Rank 2
 answered on 18 Jun 2010
1 answer
103 views
hello,
i have radpicer in ajax modalpopup. my problem is raddatepicker is visible but bakeend of modalpopup. its not look proper . i increase z-index also i try javascript but all try fail so.. plz hel me.. following is my code.


<asp:UpdatePanel ID="updatepanel1" runat="server">
        <ContentTemplate>
<!-- my another table markup---!>

 <Ajax:ModalPopupExtender ID="feespopup" runat="server" TargetControlID="btnAttachfees"
                PopupControlID="pnlfeeassign" BackgroundCssClass="modalBackground" CancelControlID="btnclose" />
            <asp:Panel ID="pnlfeeassign" runat="server" Height="180px" Width="400px" CssClass="modalpanel">
                <table class="table60Per" cellpadding="0" cellspacing="0" id="tblassignfee" runat="server">
                    <tr>
                        <td colspan="3">
                            <asp:Label ID="Label1" runat="server" SkinID="PageTitle" Text="Attach Fee"></asp:Label>
                        </td>
                    </tr>
                    <tr>
                        <td colspan="3">
                        </td>
                    </tr>
                    <tr>
                        <td>
                        </td>
                        <td>
                            <asp:Label ID="lblfeetype" runat="server" Text="FeeType"></asp:Label>
                        </td>
                        <td>
                            <telerik:RadComboBox ID="radcmbfeetype" SkinID="DropDownList100" ZIndex="10000000" Enabled="true" runat="server">
                            </telerik:RadComboBox>
                        </td>
                    </tr>
                    <tr>
                        <td>
                        </td>
                        <td>
                            <asp:Label ID="lblsdate" runat="server" Text=" Start Date"></asp:Label>
                        </td>
                        <td>
                           
                            <telerik:RadDatePicker ID="dpStartDate" runat="server" ZIndex="10">
                                <Calendar ID="calstrtdate" runat="server">
                                </Calendar>
                            </telerik:RadDatePicker>
                        </td>
                    </tr>
                    <tr>
                        <td>
                        </td>
                        <td>
                            <asp:Label ID="Label2" runat="server" Text="End Date"></asp:Label>
                        </td>
                        <td>
                            <telerik:RadDatePicker ID="dpEndDate" runat="server" >
                                <Calendar ID="calenddate" runat="server">
                                </Calendar>
                            </telerik:RadDatePicker>
                        
                         
                         
                        </td>
                    </tr>
                    <tr>
                        <td>
                        </td>
                        <td>
                            <asp:Label ID="lblrecurrance" runat="server" Text="Recurrence"></asp:Label>
                        </td>
                        <td>
                            <asp:TextBox ID="txtrecurrence" runat="server" OnTextChanged="txtrecurrence_TextChanged"></asp:TextBox>
                        </td>
                    </tr>
                    <tr>
                        <td>
                        </td>
                        <td colspan="3" align="center">
                            <asp:Button ID="btnadd" runat="server" Text="Add" />&nbsp;&nbsp;
                            <asp:Button ID="btnclose" runat="server" Text="Close" />
                        </td>
                    </tr>
                </table>
            </asp:Panel>
        </ContentTemplate>
    </asp:UpdatePanel>
Dimo
Telerik team
 answered on 18 Jun 2010
1 answer
137 views
Hello,

I am using Latest Telerik ASP.Net AJAX controls in my application.Now I have some urgent requirement from Client which we need to solve. I am using RadMenu in my application. Now my problem is -

For example suppose Menu have 5 pages under it, say page's name are Page1, Page2, Page3, Page4 and Page 5.
Now when user click on Page1 from menu then suppose it takes 160 seconds to load, after that user click on Page2 which takes 45 seconds to load, and after that user click on Page5 which take 3 seconds to load.

Now if user Click on Page1 and after that he changes his mind and dont want to wait for page1 for 160 seconds, and click on page5 to see it.

My problem is that is there is any solution sothat when user click on Page from menu ,then If any previous page request is in progress for any page then cancel it, and handle only current page request.  ( For example in above case when user click on Page5 then cancel the request for Page1 and handle request for page5 only which take only few seconds to load. )

Please suggest me the solution, If my point is not clear then I can provide more detail as per the request.

Thanks,
Dheeraj Chauhan.

T. Tsonev
Telerik team
 answered on 18 Jun 2010
3 answers
139 views
Hi, Telerik Team

Although I follow up all the steps described in
http://www.telerik.com/help/aspnet-ajax/grdcreatingnewskins.html
to remove the embbed skins of thre Grid
I still have vertical line in the first column in some Grids (not all) and I can not figure out the trick that causes the problem
you can have a look at this image to see it visually
http://www.4shared.com/photo/bGY4EGpd/Student.html

thanks in advance

tools:
Asp.net 3.5
Rad controls for asp.net ajax 2009 Q3
windows 7 operating system
Dimo
Telerik team
 answered on 18 Jun 2010
3 answers
62 views
I used ClassicBlue for the skin for RadtabStrip , but I see a -----  line middle of the text , I added text decoration:none for that and still solve the problem.. what I need to do?
Yana
Telerik team
 answered on 18 Jun 2010
3 answers
159 views
I see how I can cancel a resize event client side if the new value is less than required from this post:

<script type="text/javascript"
  
function ColumnResizing(sender, args) 
    var newWidth = args.get_gridColumn()._columnResizer._currentWidth; 
    if (newWidth < 200
    { 
        args.set_cancel(true); 
    } 
  
</script> 

Is it possible to set the column size to the default width here?

Something like args.get_gridColumn().set_width(200);

I didn't see anything on the column object to accomplish this.

Thanks for any help,
Robert


Dimo
Telerik team
 answered on 18 Jun 2010
1 answer
108 views
Hi Telerik,

Firstly My Boss tells me we have support but unfortunately a couple of people have left and the support details have been lost - would you be able to tell me how to recover these details?


I have a RadGrid control where certain columns and the group footers and footers need to be recalculated based on cell input (Excel style)
The calculation is too complicated to be solely performed in Javascript so we have decided to partially update the grid using AJAX and are successfuly doing this in the RadGrid itemcreated event as per this article:


http://www.telerik.com/support/kb/aspnet-ajax/grid/ajaxifying-particular-controls-in-radgrid-template-column-with-ajax-manager.aspx

I am then using this javascript to initiate the ajax request :

 

ajaxManager.ajaxRequestWithTarget(sender.getAttribute('myUniqueId'true), 'true'); 

We want to know if it is at all possible to do the same with GroupFooters and Footers because at that point in the grid lifecyle there seems to be no way to reference the data that binds the template control Cell to its Group Footer and Footer.

Kind regards,

Ashley

Iana Tsolova
Telerik team
 answered on 18 Jun 2010
2 answers
353 views
This is probably very simple but what is the easiest way to copy a nodes collection from one tree to another or even to another node within the same tree?  Including any sub nodes belonging to the collection.
Nikolay Tsenkov
Telerik team
 answered on 18 Jun 2010
1 answer
184 views
Hello,

 I have a Treeview with LoadOnDemand using ServerSideCallback.

I am using a Combobox at the top of the page to act as a quick selector/search when i select a node formt he combo box it selected the node and then expands it.

I then call  the scroolIntoView but i get a JS Error stating offsetTop is null or not an object

 heres the sample code i use for the Combox's SelctionChanged Event

function ddlSearchTreeView_SelectionChanged(sender, eventArgs)   
                {  
                    var _Item = eventArgs.get_item();  
                    var tree = $find("<%=oTreeView.ClientID %>");  
                    var node = tree.findNodeByValue(_Item.get_value());  
                    node.select();  
                    node.expand();  
// HIGH VALUE FOR TESTING  
                    window.setTimeout(function() {node.scrollIntoView(); }, 10000);  
                } 
Nikolay Tsenkov
Telerik team
 answered on 18 Jun 2010
1 answer
221 views
Hi,
      in my grid I have column defined as datetime for that i am applying DataFormatString="{0:dd/MM/yyyy}" to show it in dd/MM/YYY formate instead of default MM/dd/YYYYY formate. Now on edit of row i am getting client side scipt error like-

" The string was not recognized as a valid DateTime."

I am using <telerik:GridEditCommandColumn>  for inline editing.

How to avod this error plz help me regarding this.

Regards,
Dheeraj
Martin
Telerik team
 answered on 18 Jun 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?