Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
647 views
Hi

Is there any property available to display the RadCaptcha after two invalid login attempt? My requirement is that the user needs to undergo a captcha validation after entering an invalid username/password two times. Please help.

Thank you,
Shahi.
Princy
Top achievements
Rank 2
 answered on 09 Apr 2013
1 answer
37 views
Some time ago we purchased asp.net ajax v2012.2.912.40. 

Does this version include area charts?

Thanks.
Yavor
Telerik team
 answered on 09 Apr 2013
1 answer
102 views
Hi,

I was wondering if it is possible to select multiple items from a combobox in one field of an insert on a grid, and once the Insert button is clicked, it parses out the items in that combobox into different records but with the same information on the other fields.
Please look at the attachment for an example. I am working in vb.net
Shinu
Top achievements
Rank 2
 answered on 09 Apr 2013
1 answer
113 views
Hi,

Using JavaScript, How to set the NavigateUrl property of RadWindow in a RadButton Click?

Thanks,
Dona
Princy
Top achievements
Rank 2
 answered on 09 Apr 2013
1 answer
1.0K+ views
Hi,

Can I hide the close button in the RadWindow Title bar?

Thanks,
Dona
Princy
Top achievements
Rank 2
 answered on 09 Apr 2013
2 answers
305 views
Hi All !

I have a Treeview inside EditFormSetting -> FormTemplate . I want to when I click edit row for update data Treeview auto expand and select node. Thank a lot .
Khiem
Top achievements
Rank 1
 answered on 09 Apr 2013
6 answers
307 views
Hi All !
I'm from VietNam. Today I have a question for you. I need you help me . Thanks

I have use RadGrid and input controls in EdtiFormSetting --> FormTemplate. I have use Treeview in Combobox . But I can't get value for combobox when i edit row and use updatecommand .

I have attach file below.

This is my code :

HTML :

<EditFormSettings EditFormType="Template">
                    <FormTemplate>
                        <div id="frmTemp">
                            <div class="frmTemp_left">
                                <label>Danh mục</label>
                                <div>
                                     
                                    <telerik:RadComboBox ID="cbbCategory" runat="server" AppendDataBoundItems="true">
                                        <ItemTemplate>
                                            <div id="div1"  onclick="StopPropagation(event);" >
                                                <telerik:RadTreeView ID="trvCategory" runat="server"
                                                    DataFieldID="CategoryId"
                                                    DataFieldParentID="ParentId"
                                                    DataTextField="CateName"
                                                    DataValueField="CategoryId"
                                                    OnClientNodeClicking="nodeClicking" >
                                                </telerik:RadTreeView>
                                            </div>
                                        </ItemTemplate>
                                        <Items>
                                            <telerik:RadComboBoxItem Text="" Value="" Selected="True"></telerik:RadComboBoxItem>
                                        </Items>
                                    </telerik:RadComboBox>
                                </div>
                                <label>Tên danh mục</label>
                                <div>
                                    <asp:TextBox ID="txtCateName" runat="server" Text='<%# Bind("CateName") %>'></asp:TextBox>
                                </div>
                                <label>Sắp xếp</label>
                                <div>
                                    <asp:TextBox ID="txtOrderBy" runat="server" Text='<%# Bind("OrderBy") %>'></asp:TextBox>
                                </div>
                                <label>Hiển thị</label>
                                <div>
                                    <asp:CheckBox ID="ckbActive" runat="server" Checked='<%# ((Container is TreeListEditFormInsertItem) ? false : Eval("Active")) %>' />
                                </div>
                                <div style="padding-top: 10px;">
                                    <asp:HiddenField ID="HiddenField2" runat="server" Value='<%# Eval("ParentId") %>' />
                                    <asp:HiddenField ID="HiddenField1" runat="server" Value='<%# Eval("CategoryId") %>' />
                                    <telerik:RadButton ID="btnUpdate" Text='<%# (Container is TreeListEditFormInsertItem) ? "Lưu" : "Cập nhật" %>'
                                        runat="server" CommandName='<%# (Container is TreeListEditFormInsertItem) ? "PerformInsert" : "Update" %>'
                                        Icon-PrimaryIconCssClass="rbOk">
                                    </telerik:RadButton>
                                      
                            <telerik:RadButton ID="btnCancel" Text="Đóng" runat="server" CausesValidation="False"
                                CommandName="Cancel" Icon-PrimaryIconCssClass="rbCancel">
                            </telerik:RadButton>
                                </div>
                            </div>
                        </div>
                    </FormTemplate>
                </EditFormSettings>






 
Khiem
Top achievements
Rank 1
 answered on 09 Apr 2013
9 answers
1.1K+ views
Hello,

I am using a regular RadButton (ButtonType is not set) in Q2 2011 with the height set to 65px. I want two lines of text but cannot get it to work. I tried the solution in this thread but it did not work. I was hoping you could point me in the right direction.

Thanks,
Josh
David Terrie
Top achievements
Rank 1
 answered on 08 Apr 2013
1 answer
87 views
Hi All,

I'll put my hand up now and say I am a javascript n00b so I don't even know if my question is possible. The long and the short of it is that my client wants to have to enter a password whenever they open a file from the RadFileExplorer (they are a little paranoid about security). Now I've managed to figure out how to do this using a mixture of page methods and javascript but the problem is the password dialog that is displayed is just a javascript prompt box and as such the password they are entering isn't masked like a normal password box would be. After some research I discovered that the only way to make it a masked password box was to use something like jquery ui to create a modal popup that contains a password masked textbox - my problem - how the &*^@ do I intergrate that into my solution? You will see in my code that I call a 'prompt' box and this is obviously where the jquery ui box needs to be but I just have no clue about how to do this.

Any help or direction would be greatly appreciated.

Oh....here's my code :)

function OnClientFileOpen(sender, args) {
    args.set_cancel(true);
    var password = prompt("Enter Password");
    PageMethods.MyAuthorisationMethod(password, onSuccess, onerror);
    function onSuccess(response) {
        if (response == true) {
            var item = args.get_item();
            var fileExtension = item.get_extension();
 
            var fileDownloadMode = true;
            if ((fileDownloadMode == true) && (fileExtension == "jpg" || fileExtension == "gif" || fileExtension == "doc" || fileExtension == "mp3" || fileExtension == "txt")) {// Download the file
                // File is an image document or a word document, do not open a new window
                args.set_cancel(true);
 
                // Tell browser to open file directly
                var requestImage = "Handler.ashx?path=" + item.get_url();
                document.location = requestImage;
            }
        }
        else { alert("The password entered is incorrect"); }
    }
 
}
Vessy
Telerik team
 answered on 08 Apr 2013
1 answer
96 views
Hi,

I have added AutoCompleteBox to my page

1) Textbox is disabled ?



If i enable textbox using CSS ( firebug ) :

.racTokenList:after {
 displayblock !important;
}


2) text is not appearing when enter in to text box.





Code :

<telerik:RadAutoCompleteBox runat="server" ID="Recipient" Width="500px" DataSourceID="SqlDataSourceEmails"
                                                      DataTextField="ContactName" DataValueField="Email" Filter="StartsWith" Skin="Metro"
                                                      DropDownHeight="400px" DropDownWidth="500px">
                                                      <DropDownItemTemplate>
                                                          <table>
                                                              <tr>
                                                                  <td>
                                                                      <%# DataBinder.Eval(Container.DataItem, "ContactName")%>-
                                                                      <%#DataBinder.Eval(Container.DataItem, "Email")%>
                                                                  </td>
                                                              </tr>
                                                          </table>
                                                      </DropDownItemTemplate>
                                                  </telerik:RadAutoCompleteBox>


Please help me on this.. Thanks..
Nencho
Telerik team
 answered on 08 Apr 2013
Narrow your results
Selected tags
Tags
+? more
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Top users last month
Miljana
Top achievements
Rank 2
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Bronze
Cynthia
Top achievements
Rank 1
John
Top achievements
Rank 1
Iron
Mozart
Top achievements
Rank 1
Iron
Veteran
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?