Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
132 views
Where can I find the localization xml file of the editor? Or do you have an example of this file?
Kind regards Barbara
Rumen
Telerik team
 answered on 29 Jul 2008
6 answers
179 views
How to make false the visibility mode of paging images
radgrid take by default path of showing previous image,next image,last and first
how do i stop the visiblity of paging images and assign text to these images.
Jyoti
Top achievements
Rank 1
 answered on 29 Jul 2008
1 answer
93 views
I have a grid that allows all cells to be edited. Once I implement paging and change a page I lose the editing capabilities ... the column editors go away.

I haven't been able to find a good example that shows all cells editable with paging used, and I am not sure what it is I am missing.


I am receiving no errors, I just lose the column editors on a page change.
 
  • ASP.NET version: 2
  • OS: Win2k3
  • exact browser version: 7.0.5730.13
  • exact version of the Telerik product: 2008.1.515.20
  • preferred programming language (VB.NET or C#): C#
     

My Grid Code:
                <mcpsia:StyledRadGrid ID="gridScore" runat="server" Height="500px" Width="650px" GridLines="None" CellPadding="0">  
                    <MasterTableView GridLines="Both" EditMode="InPlace" PagerStyle-AlwaysVisible="true" PageSize="10" AllowPaging="true">  
                        <EditFormSettings> 
                            <PopUpSettings ScrollBars="None" /> 
                        </EditFormSettings> 
                        <ExpandCollapseColumn Resizable="False" Visible="False">  
                            <HeaderStyle Width="20px" /> 
                        </ExpandCollapseColumn> 
                        <RowIndicatorColumn Visible="False">  
                            <HeaderStyle Width="20px" /> 
                        </RowIndicatorColumn> 
                        <HeaderStyle HorizontalAlign="Center" Width="50px" Wrap="False" /> 
                    </MasterTableView> 
                    <ClientSettings> 
                        <Scrolling AllowScroll="True" FrozenColumnsCount="1" UseStaticHeaders="True" /> 
                    </ClientSettings> 
                    <HeaderStyle Font-Bold="False" Font-Italic="False" Font-Overline="False" Font-Strikeout="False" 
                        Font-Underline="False" Wrap="True" /> 
                </mcpsia:StyledRadGrid> 


I am adding EditIndexs for all rows (items) in the grid to get editing in all rows.


Any ideas or examples?

Jay

Shinu
Top achievements
Rank 2
 answered on 29 Jul 2008
1 answer
103 views
Hello, we recently discovered the Telerik controls - and love them.  We were encouraged to download the trial to evaluate - which we did.  We installed them - but, when we launch VS2005, no controls in the toolbox!  We've added a new tab, stepped through 'choose items' - and see the controls listed, and checked.  But, no controls appear!

Moreover, as this is only eval, Telerik doesn't support creating a Support Ticket...

So,...can someone more experienced assist?

We greatly appreciate it.  Thank you.

Chameleon DATA
Sebastian
Telerik team
 answered on 29 Jul 2008
3 answers
156 views
There appears to be a display issue in IE6 (on PC) when a RadGrid has no records.  I am using the latest version of the Telerik Controls.  I have a regular old RadGrid in my aspx page and inside the radgrid is the mastertableview with a nomasterrecordstext of "(There are no terms)".  When the grid has no records from the db, it shows the text "(There are no terms)", but to the left of the text is a vertical black line about 1/2" in height.  I'm assuming it's an IE6 CSS issue since it doesn't happen in any other browser. IE7 is fine.  My customer uses IE6 and has complained about that vertical line being there.  Any ideas? (other than telling my customer to upgrade their browser)
Dimo
Telerik team
 answered on 29 Jul 2008
1 answer
114 views
Hi All,

I have a column inside my grid that hold a drop down list.  On client side or in a Javascript function, does anyone know how way to make a reference to that drop down list?

This is what I have in my code:

var grid = <%= rgDRFormASPPFCaseInfo.ClientID %>;

var tableView = grid.MasterTableView;

var ID = tableView.GetCellByColumnUniqueName(tableView.Rows[RowIndex],"ID").innerHTML;

var ddlList = tableView.GetCellByColumnUniqueName(tableView.Rows[RowIndex],"Answer");

I tried to access ddlList like a drop down list, but it doesn't recognized the properties belong to the drop down list.

Please help

Thanks

Shinu
Top achievements
Rank 2
 answered on 29 Jul 2008
1 answer
143 views

I've got a RadGridView within a modal popup window, but the filter by list has the wrong Z-Index.

I've tried a few things to fix it and nothing seems to be working.
My latest attempt:

Style:

 
myFilterStyle {  z-index:100000000000000000000; }  
 
Code:
 <FilterItemStyle CssClass="myFilterStyle" /> 

Any help would be greatly appreciated.  Thank you in advance.
Tony
Top achievements
Rank 1
 answered on 29 Jul 2008
3 answers
200 views
I have an SQL database which has an "optional" column.  I want the rows of my grid to be in italics if that row is optional.

Here is what the grid might look like after this is done:

Grouper | Field | Length
---------------------------
Age           x        3
Sex            y        1
Provider    z        12
Name        b         12

If the 'Provider' row is optional, it is put in italics, like shown above.

How do I create this effect?

Thanks
Princy
Top achievements
Rank 2
 answered on 29 Jul 2008
2 answers
202 views
How can I specify the order of autogenerated columns in a Grid? They dont show up in the aspx and seem to be rendered randomly (sometimes EDIT is left of DELETE, sometimes its the other way around).

And: How can I set the order of autogenerated columns in conjunction with Command-Columns? Like: I have 4 columns: VIEW, EDIT, DELETE, HISTORY.
VIEW and HISTORY are Command-Columns, EDIT and DELETE are autogenerated. How can I make sure the autogenerated ones appear in this specific order in between the two Command-Columns?

Thanks

s.
scrut
Top achievements
Rank 1
 answered on 29 Jul 2008
2 answers
114 views
Our application is a heavy data-entry application that relies on modal RadWindows for displaying complex lookup lists. Because we don't want the user to accidentally lose all of their data entry work, we have hooked the window.onbeforeunload event to verify with them that they really want to close the window and lose their unsaved changes.

The problem is that starting with the ASP.Net Ajax release, when the user uses the maximize button, they are presented with the "you are about to lose all of your work" message. Needless to say, this has caused a substantial amount of panic and calls to the support desk.

We have traced the issue down to the way the maximize/minimize button is generated (an href which points to javascript:void), which, when clicked, causes the browser (IE anyway) to think the user is about to unload the window and fires the onbeforeunload event.

We cannot just disable the onbeforeunload event when a modal dialog is open because the user could still close the overall browser window and we must verify the closure with them in this case.

What we found, using the IE Dev Toolbar, is that if we remove the href and add onclick=return false;, that the maximize/minimize behavior remained the same, but the onbeforeunload event was no longer fired.

This is a critical issue for us since it is slowing worker productivity and increasing helpdesk load. Is there any way that we can change the href behavior to onclick on the server side or otherwise set a flag that changes this behavior? (We are on the latest Q2 release)
Louis
Top achievements
Rank 1
 answered on 28 Jul 2008
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?