Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
69 views
Hello, I have an aspx page that uses a menĂº (RadMenu) and launches smaller windows using radopen.

The new windows open over the calling window as expected.

However, if I move the new windows across the menĂº bar, the bar stays over them (the new windows pass "below the bar). See attachment.

Thanks for any help

Shinu
Top achievements
Rank 2
 answered on 20 Apr 2010
2 answers
88 views
Hi

If i Type '|' this special character in the filter text box its giving me a error.

http://demos.telerik.com/aspnet-ajax/grid/examples/generalfeatures/filtering/defaultcs.aspx.

How can i restrict this

Regards
Vairamuthu




vairam
Top achievements
Rank 1
 answered on 20 Apr 2010
2 answers
126 views
Okay, here's a strange one.  When I change the Skin of my RadGrid from "Default" to "Outlook" the text in the Command Bar disappears (both the font color and the background color are white) in IE6 AND in the design screen in VS2008 - in Firefox everything is fine.  If I use any skin EXCEPT Telerik, Simple, Office2007, Forest, Default or Black, then the Text disappears.

Anyone else ran into this problem?  Let me know if you need code and I will add some.


Thanks,

Marc
Marc Lee
Top achievements
Rank 2
 answered on 20 Apr 2010
5 answers
147 views
Hi,

This property does not work in MasterPage type, the corner does not change to be round.  I have a test in normal webpage.

Regards,

Duy
Duy
Top achievements
Rank 1
 answered on 20 Apr 2010
2 answers
277 views
Hi.

I'm testing out the .NET 4.0 classes and I'm running into a JavaScript error. I have a RadWindow that is hosting controls (not a url) and I have a RadMaskedTextbox with a phone number mask along with other standard TextBoxes inside the RadWindow. I have attached a RequiredFieldValidator to the RadMaskedTextBox and any field that I click or tab off of that has a validator attached will throw an "undefined" JavaScript error. If I remove the validator from the RadMaskedTextBox, all fields and validation work fine even when I tab off of a field. This only happens in a RadWindow and all works fine if all the fields (including the RadMaskedTextBox) are just on the page. Is this a bug with the RadWindow and the RadMaskedTextBox?

Thanks,
Ed
FaSSt2001
Top achievements
Rank 1
 answered on 20 Apr 2010
2 answers
74 views
Hi,

       Evrerything was good until yesterday and suddenly a border appears in all Self-hierarchic RadGrids I have created.
The only thing I done was this (and that too in a project apart from all other important ones)

MasterTableView.TableLayout =

GridTableLayout.Fixed;
and
NestedView.TableLayout = GridTableLayout.Fixed; in the "HideExpandColumnRecursive" method.

What puzzles me is that I have done it in a project apart and this affected RadGrids in all projects (see attachment) as if it's a Dll problem.
I wonder if something has definitely changed just by putting these two lines in an experimental project.

Please tell me what I can do to remove the borders for the detailTable ? I will also search for a solution meanwhile.

Thanks in advance,
RadTony

 

RadTony
Top achievements
Rank 1
 answered on 19 Apr 2010
2 answers
112 views
The File Explorer gives you 2 columns out of the box, name and size.  I want to use Name for my databases id field, and add "Display Name" or something to the control, but I want it to appear in front of the "Size" column.  Needless to say I'm providing my own ContentProvider, too.

It works fine if I add the new column to the end of the list, but not if I try to insert it, or to "AddAt".

// Works ok, but not what I need
RadFileExplorer1.Grid.Columns.Add(gridTemplateColumn1);

// Doesn't work like I need.
RadFileExplorer1.Grid.Columns.Insert(1, gridTemplateColumn1);

// Doesn't work like I need.
RadFileExplorer1.Grid.Columns.AddAt(1, gridTemplateColumn1);

Oh --forgot to mention that I'm going to hide the existing Name column after that.
RadFileExplorer1.Grid.Columns[0].Display = false;

Any ideas what I might be doing wrong?
Grady Hawley
Top achievements
Rank 1
 answered on 19 Apr 2010
0 answers
150 views

I am dynamically loading RadpanelItems with diffenent user controls. When I click save button on one of the user controls, it sends postback to page and reloads all these panel items. Can I just postback current panel Item?

This is my code. Every time I click any button on the user controls reloads panelbar.

 

 

      Private Sub SetPanelItems(ByVal account As Account, ByVal radParentItem As RadPanelItem, ByVal focusAccountId As String)

 

            'This method selects user control for Panel according to account Type

 

            Dim radPanelNew As New RadPanelItem                                       'New items will be added to panel bar

            Dim radPanelNewChild As New RadPanelItem

            Dim acct As SubscriberSetupPages_UserControls_Account

           

            With radPanelNew

                  .Text = account.Name.ToString

                  .Value = account.Name

                  .Font.Italic = True

                  .Font.Underline = True

                  .Font.Size = 10

            End With

            If UCase(account.Id.ToString) = UCase(focusAccountId) Then                                                    'Trying to set expanded property to true to set focus to particular account. This is needed when this page is called from Alert set up to show account related to selected Alert

                  radPanelNew.Expanded = True

                  radPanelNewChild.Expanded = True

            End If

            'Depending on Account type or SubType User control is loaded in the panel item

            Select Case account.Type.Text

                  Case Entities.Account.AccountType.Bank.ToString

                        If account.SubType.Text = Entities.Account.SubAccountType.Savings.ToString Then

                              Dim ucSavings As SubscriberSetupPages_UserControls_SavingsAccount = CType(LoadControl("~/SubscriberSetupPages/UserControls/SavingsAccount.ascx"), SubscriberSetupPages_UserControls_SavingsAccount)

                              ucSavings.AccountID = account.Id

                              ucSavings.ID = account.Id.ToString

                              acct = DirectCast(ucSavings.FindControl("acct1"), SubscriberSetupPages_UserControls_Account)

                              radPanelNewChild.Controls.Add(ucSavings)

                        ElseIf account.SubType.Text = Entities.Account.SubAccountType.Checking.ToString Then

                              Dim ucChecking As ACDCA.MyFmNow.SubscriberSetupPages_UserControls_CheckingAccount = CType(LoadControl("~/SubscriberSetupPages/UserControls/CheckingAccount.ascx"), ACDCA.MyFmNow.SubscriberSetupPages_UserControls_CheckingAccount)

                              ucChecking.ID = account.Id.ToString

                              ucChecking.AccountID = account.Id

                              acct = DirectCast(ucChecking.FindControl("acct1"), SubscriberSetupPages_UserControls_Account)

                              radPanelNewChild.Controls.Add(ucChecking)

                        ElseIf account.SubType.Text = Entities.Account.SubAccountType.CreditLine.ToString Then

                              Dim ucCreditLine As ACDCA.MyFmNow.SubscriberSetupPages_UserControls_CreditLine = CType(LoadControl("~/SubscriberSetupPages/UserControls/CreditLine.ascx"), ACDCA.MyFmNow.SubscriberSetupPages_UserControls_CreditLine)

                              ucCreditLine.AccountID = account.Id

                              acct = DirectCast(ucCreditLine.FindControl("acct1"), SubscriberSetupPages_UserControls_Account)

                              radPanelNewChild.Controls.Add(ucCreditLine)

                        End If

                  Case Entities.Account.AccountType.CreditCard.ToString

                        Dim ucCreditCard As ACDCA.MyFmNow.SubscriberSetupPages_UserControls_CreditCard = CType(LoadControl("~/SubscriberSetupPages/UserControls/CreditCard.ascx"), ACDCA.MyFmNow.SubscriberSetupPages_UserControls_CreditCard)

                        ucCreditCard.AccountID = account.Id

                        acct = DirectCast(ucCreditCard.FindControl("acct1"), SubscriberSetupPages_UserControls_Account)

                        radPanelNewChild.Controls.Add(ucCreditCard)

                  Case Entities.Account.AccountType.Loan.ToString

                        Dim ucLoan As ACDCA.MyFmNow.SubscriberSetupPages_UserControls_Loan = CType(LoadControl("~/SubscriberSetupPages/UserControls/Loan.ascx"), ACDCA.MyFmNow.SubscriberSetupPages_UserControls_Loan)

                        ucLoan.AccountID = account.Id

                        acct = DirectCast(ucLoan.FindControl("acct1"), SubscriberSetupPages_UserControls_Account)

                        radPanelNewChild.Controls.Add(ucLoan)

                  Case Entities.Account.AccountType.Investment.ToString

                        Dim ucInvestment As ACDCA.MyFmNow.SubscriberSetupPages_UserControls_InvestmentAccount = CType(LoadControl("~/SubscriberSetupPages/UserControls/InvestmentAccount.ascx"), ACDCA.MyFmNow.SubscriberSetupPages_UserControls_InvestmentAccount)

                        ucInvestment.AccountID = account.Id

                        acct = DirectCast(ucInvestment.FindControl("acct1"), SubscriberSetupPages_UserControls_Account)

                        radPanelNewChild.Controls.Add(ucInvestment)

            End Select

            ' Setting up OnClient click for button on user control

            Dim btnSecurityQA As ImageButton = DirectCast(acct.FindControl("btnSecurityQA"), ImageButton)

           

            acct.Account = account ''This needs to set here to set control visibilities on Account user Control

            radPanelNew.Items.Add(radPanelNewChild)

            With radParentItem

                  .Items.Add(radPanelNew)

                  .DataBind()

                  .Expanded = True

            End With

 

      End Sub

A K
Top achievements
Rank 1
 asked on 19 Apr 2010
2 answers
148 views
basically, I need the functionality from the radgrid to replace the listview webpart. Is there an easy way to do this? If no, how to I create a user control with the radgrid and set the datasource to a SharePoint list?

Thanks in advance for your help.
itpurchasing
Top achievements
Rank 1
 answered on 19 Apr 2010
10 answers
316 views
I am using Telerik AJAX for ASP.NET v 2008.3.1125.35. And I am having problems with radchart control. For some reason series position is not consistent in the graph as you can see from attached image. In the first bar "Unknown" series is the third from the bottom, but for the fourth bar it is first from the bottom which seems wrong to me. I am using DataGroupColumn property to create series automatically from data that I am getting from database. Any suggestions?
Greg M
Top achievements
Rank 1
 answered on 19 Apr 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?