Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
100 views
Can I set the monthly "more" link to go to the Agenda view instead of the Day view?

How? thanks!
Plamen
Telerik team
 answered on 09 May 2014
5 answers
847 views
Hello,

Does anyone know of a mask or a way to have the standard IP Address mask NOT require entering the leading 0s, i.e.

192.168.1.1 instead of 192.168.001.001.

<telerik:RadMaskedTextBox ID="RadMaskedTextBox2" Runat="server" Mask="<0..255>.<0..255>.<0..255>.<0..255>">  
</telerik:RadMaskedTextBox> 
 


-Steve
Vasil
Telerik team
 answered on 09 May 2014
3 answers
134 views
While reading the installation and deployment documentation for the Telerik ASP.NET AJAX tools, it states in several places that you need to install ASP.Net AJAX and provides a link to the ASP.Net AJAX toolkit downloads.  Is this really true?  I have tried several of the samples and do not have the ASP.Net AJAX toolkit installed and everything seems to run fine. 

Also there are a lot of references to Visual Studio 2005, 2008, and 2010 and Windows Server 2003, and IIS5 and 6.  No references to Visual Studio 2013 or Windows Server 2012, and IIS 8.  I am not sure what does or does not apply to the newer Visual Studio 2013, .Net 4.5, and IIS 8 as they are not mentioned in the docs.  It seems to me that the docs need an update or maybe just a new addendum of docs that apply to the newer tools and platforms.

Thanks,
Charlie
Rumen
Telerik team
 answered on 09 May 2014
1 answer
147 views
I want Select node value of dropdowntree at server side 
for that I used dropdowntree.selectedvalue,dropdowntree.selectedvalue but it is not working
Shinu
Top achievements
Rank 2
 answered on 09 May 2014
3 answers
230 views
Hi 

I'm making changes to a project I mad a few months ago.

But when I open the designer all of my controls have errors.

"Error Creating Control - RadAjaxManager1Failed to create designer 'Telerik.Web.UI.RadAjaxManager, Telerik.Web.UI, Version=2013.3.1114.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4"

That is just one example.

I've tried updating, and just about everything else that I've found on these forums and nothing has fixed the problem.

Please help.

Grant.
Radoslav
Telerik team
 answered on 09 May 2014
1 answer
139 views
Hi all,

I was looking for RadGridView sample's at telerik demo website and i did not found a demo the RadGridView don't use SqlDataSource to bind some data and some RadComboBox/RadDropDownList edit template columns.

Does anybody have an example of a radgridview that don't use SqlDataSources filled at code behind and have some RadComboBox/RadDropDownList edit template columns filled at code behind too?

Tks
Shinu
Top achievements
Rank 2
 answered on 09 May 2014
1 answer
136 views
Hi

I create a RadGrid and a RadButton by code.
The RadButton is deactivating my RadGrid:

            this.editButton = new RadButton();
            this.editButton.Visible = false;
            this.editButton.AutoPostBack = true;
            this.editButton.Click += EditButtonOnClick;

        private void EditButtonOnClick(object sender, EventArgs eventArgs) {
                this.DataGrid.Enabled = false;
                this.DataGrid.ClientSettings.EnablePostBackOnRowClick = false;
                this.DataGrid.ClientSettings.Resizing.AllowColumnResize = false;
                this.DataGrid.ClientSettings.Selecting.AllowRowSelect = false;
                this.DataGrid.ClientSettings.AllowKeyboardNavigation = false;
        }

This is working great.
But now, I have also to deactivate the RadGrid at doubleclick on a row. For this, I have created a javascript for OnRowDblClick for the RadGrid:

            var script = @"
function RowDblClick(sender, eventArgs) {
$find(""" + editButton.ClientID + @""").click();
}";
            var javaScript = new HtmlGenericControl("script");
            javaScript.Attributes["type"] = "text/javascript";
            javaScript.InnerHtml = script;
            Controls.Add(javaScript);

            this.DataGrid.ClientSettings.ClientEvents.OnRowDblClick = "RowDblClick";

The RowDblClick will be executed on DoubleClick - I have checked this with a alert(). But the Click-Eventhandler of the EditButton on the Serverside will not be executed. Can someone help me please how I can do this? - Thanks.

Thomas
Shinu
Top achievements
Rank 2
 answered on 09 May 2014
3 answers
88 views
Hi All,
I'm trying to custromize radgrid so i could have this result in image "Expectation.jpg", i make some modifications and what i reach till now is what u can find on image "Done.png" could any one please tell me how to :

- Attach the Button images of expand and collapse to their row and to the next button image (with lines) as shown in image
- show border between cells and rows 

thanks.
Jayesh Goyani
Top achievements
Rank 2
 answered on 09 May 2014
3 answers
302 views
After disabling the buttoncolumn in a grid when clicked the confirm text still shows. The button does not fire which is good. how do I keep the confirm text from showing. I tried the following which does not work.

protected void RadGrid1_PreRender(object sender, EventArgs e)
        {
            foreach (GridDataItem DataItem in RadGrid1.Items)
            {
                if (DataItem["Import"].Text == "0")
                {
                    DataItem["ImportColumn"].Enabled = false;
  
                    TableCell cell = (TableCell)DataItem["ImportColumn"];
                    cell.Enabled = false;
  
                }
            }



Richard
Top achievements
Rank 1
 answered on 08 May 2014
2 answers
325 views
Hi,
I have a RadioButtonList as part of my FormTemplate.  When the index of this changes, I want to do some server-side processing & change the value of a label that is also in the Form Template.  So, I have set up within the FormTemplate
<asp:RadioButtonList ID="rdo1" runat="server" 
 Onselectedindexchanged="rdo1_SelectedIndexChanged" AutoPostBack="True"
</asp:RadioButtonList> 

And in the code behind:
protected void rdo1_SelectedIndexChanged(object sender, EventArgs e) { 
RadioButtonList rdoList = this.RadGrid1.FindControl("rdo1"as RadioButtonList; 
Label lbl = this.RadGrid1.FindControl("lbl1"as Label; 

But they are never found and my Controls are set to null;  Any help/suggestions?  I've seen the client-side solution to this, but I would prefer to not do this on the client.
Thanks.


KC
Top achievements
Rank 1
 answered on 08 May 2014
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?