Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
220 views
HI,
I have a  RadGrid , the RadGrid has  scrolling enabled and UseStaticHeaders=True.
When UseStaticHeaders is True, the header row is still visible, even when the grid is scrolled. (perfect)

But  When I generated ItemCommand "initinsert"  with GridEditMode.EditForms  don't works (image 1) [problem]
       When I generated ItemCommand "edit"  with GridEditMode.EditForms  it works (image 2)
grdANAAGG.MasterTableView.EditMode = GridEditMode.EditForms;
grdANAAGG.MasterTableView.CommandItemDisplay = GridCommandItemDisplay.Top;
grdANAAGG.MasterTableView.CommandItemSettings.ShowAddNewRecordButton = true;
grdANAAGG.MasterTableView.PagerStyle.Mode = GridPagerMode.NumericPages;
grdANAAGG.ClientSettings.Scrolling.AllowScroll = true;
grdANAAGG.ClientSettings.Scrolling.EnableVirtualScrollPaging = true;
grdANAAGG.ClientSettings.Scrolling.UseStaticHeaders = true;
grdANAAGG.ClientSettings.Scrolling.SaveScrollPosition = true;



thank you very much
P.S.
without  "ClientSettings.Scrolling.UseStaticHeaders = true;" always works.
Lasly
Top achievements
Rank 1
 answered on 20 Jan 2012
1 answer
129 views
Hi,

In the version notes of RadControls for ASP.NET AJAX 2011.3 1115 it states:

Breaking Changes

  • Fixed: RadGrid column's UniqueName property should throw an exception if its value contains spaces

 

Indeed this is 100% correct, it has broken my project. Not only do I have to revise the uniquename's in the aspx pages but also the usage in the code behind. To make things worse, if a uniquename is NOT specified, the datafield is used. If my datafield in the DB happens to have spaces, Telerik will autogenerate a uniquename WITH spaces, only to report an exception afterwards...

What happened to backwards compatibility?
Veli
Telerik team
 answered on 20 Jan 2012
3 answers
215 views
The grid renders as a <div>, is there something I can set so that it does not generate a line break after itself?

   I would like to have,
[Grid][Other Content]
   not
[Grid]
[Other Content]
Marbry
Top achievements
Rank 1
 answered on 20 Jan 2012
1 answer
35 views
We're using an older version of the web components right now (upgrade planned for the future but may not be possible right now).  Results in the grid control are not displayed when UseStaticHeaders is set to true and when viewed in IE9.  Is this something that has been fixed in recent builds?  We may not be able to upgrade so my question is:  is it possible to retain the ability to have a fixed header on the grid (when scrolling) without the built in UseStaticHeader (so, setting it to false in oder to make the grid visible).  Would it be possible to achieve this using HTML/CSS coupled with the grid?
Andrey
Telerik team
 answered on 20 Jan 2012
3 answers
116 views
We're in the process of evaluating the ASP.NET AJAX package.  I downloaded the trial version (Q3 2011), and have a question regarding where some of the AJAX controls go.

I'm using the build-in Web Forms app in Visual Studio 2010.  In the Master page, I have a regular Menu control which I load via code.  I understand I need to put the RadAJAXManger & RadAJAXLoadingPanel in the Master page.

Question.  Do I replace the ToolkitScriptManager with RadAJAXScriptManager?

When the user clicks one of the Menu items in the Master page, I raise a "menu clicked" event.  The content page consists of several User Controls.  In that content page, I subscribe to that "menu clicked" event.  When triggered, that event calls a SQL stored procedure to retrieve the data, then passes that data to a User Control which then populates a RadGrid via DataSource/DataBind.  I'm using a lot of User Controls because each can be used more than once on several different pages.

Question.  Where should I place the RadAJAXManagerProxy...in the content page...or within the User Control itself?

In most of your examples, the control that triggers the AJAX request and the control that gets updated are in the same page.  Is there a link to some sample code that might help in the situation I've described above?  Thanks for your help.
Maria Ilieva
Telerik team
 answered on 20 Jan 2012
1 answer
80 views
My company is using your Outlook skin for the RadTab control, and several people have commented about a line that appears over the highlighted tab if the user zooms the browser in or out.  I checked on your demo page, and the same thing happens there (I'm attaching a png file with the problem area circled in red).  It happens in both IE and Safari, but not Firefox.  Several of our users have commented that it looks unprofessional.  Is there a fix available for this or is there any way to remedy this in the skin file?
Kate
Telerik team
 answered on 20 Jan 2012
1 answer
141 views
Hallo,

     I'm creating a grid at runtime, dynamically adding the columns; I'm also using InPlace edit mode. The grid is working in normal columns (for example, I set the GridNumericColumnEditor for my GridNumericColumn, and I can get the cell value using the GridEditManager GetColumnEditor method).

    Now I have a column which has templates for Item and EditItem. In the EditItemTemplate (which inherits IBindableTemplate) I put a DropDownList. I could set the right value to show in the dropdownlist when in edit mode, but I don't know how to get the cell value. I've tried with the GridEditManager, as for my normal columns, but the GridTemplateColumnEditor has no controls...

    Can you help me?

   Thank you
Richard
Top achievements
Rank 1
 answered on 20 Jan 2012
0 answers
22 views
Hi,

I am using radinputmanager into radgrid. while the page load i set onfocus for first row radinputmanger. but onfocus working fine. but the data has been cleared while the data currency format. how to solve this problem. please let me the tips for this one.


Thanks,
Dhamu.
Dhamodharan
Top achievements
Rank 1
 asked on 20 Jan 2012
1 answer
60 views
We are using Telerik controls  of Version  2009.2.701.35.

In our application we have used Rad Grid and Rad window, Rad TabStrip and Rad Menu. When veiwing the application in IE 6 browser the controls are working as expected. But  we are facing some problems like grid alignment issue, rad window opening issue when we try viewing the controls in IE 9. 

Kindly let us know the necessary conifguration changes to make its behaviour work in IE 9.


Iana Tsolova
Telerik team
 answered on 20 Jan 2012
1 answer
87 views
Hi,

I have a sub routine in my code behind  (vb) which fires when an event occurs.  What I want to do is selectively enable and disable 4 tabs in the tab strip and set focus to one tab.

here is my code
Private Sub LookupTag(tag As String)
 
    Dim c1 As New RadTabStrip
    Select Case tag
        Case "11000ed97c"           'credit card
            'RadTabStrip1.Tabs(1).Focus()
            c1 = RadTabStrip1.FindControl("RadTabStrip1")
            c1.Tabs(0).Enabled = True
            c1.Tabs(1).Enabled = False
            c1.Tabs(2).Enabled = False
            c1.Tabs(3).Enabled = False
        Case "4d004a7d6f"           'watch
            c1 = RadTabStrip1.FindControl("RadTabStrip1")
            c1.Tabs(0).Enabled = False
            c1.Tabs(1).Enabled = True
            c1.Tabs(2).Enabled = False
            c1.Tabs(3).Enabled = False
        Case "0107ee84cd"           'Key Chain
            c1 = RadTabStrip1.FindControl("RadTabStrip1")
            c1.Tabs(0).Enabled = False
            c1.Tabs(1).Enabled = False
            c1.Tabs(2).Enabled = True
            c1.Tabs(3).Enabled = False
        Case "0107ee8a61"           'disk
            c1 = RadTabStrip1.FindControl("RadTabStrip1")
            c1.Tabs(0).Enabled = False
            c1.Tabs(1).Enabled = False
            c1.Tabs(2).Enabled = False
            c1.Tabs(3).Enabled = True
    End Select
and here is the asp for the tabstrip
<telerik:RadTabStrip ID="RadTabStrip1" runat="server" Skin="Black" MultiPageID="RadMultiPage1"
    SelectedIndex="0" CssClass="tabStrip" AutoPostBack="True">
    <Tabs>
        <telerik:RadTab Text="Ops">
        </telerik:RadTab>
        <telerik:RadTab Text="Management">
        </telerik:RadTab>
        <telerik:RadTab Text="IT">
        </telerik:RadTab>
        <telerik:RadTab Text="Maintenance">
        </telerik:RadTab>
    </Tabs>
</telerik:RadTabStrip>

Can someone give me a hand?

Thanks in advance,

Dave
Kate
Telerik team
 answered on 20 Jan 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?