Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
150 views
Hi,

Is there a way to disable row edition in the grid.?On click on edit button, I want the data from the row to be displayed in the server controls on the form for edition.For that I first of all need to disable edition in grid.
Jack Jim
Top achievements
Rank 1
 answered on 01 Dec 2009
1 answer
76 views
Hell Friends,

I am usig RadGrid with GridClientSelectColumn mention below:
<telerik:GridClientSelectColumn UniqueName="SelectColumn" />

when loading a page that time i would like to select all row with that column checkbox should be checked, and i am using following code, but it will not work, what was the wrong with that code in ItemCreated event, reply me.

if (e.Item.ItemType == GridItemType.Item)
            {
                GridDataItem item = (GridDataItem)e.Item;
                CheckBox checkBox = (CheckBox)item["SelectColumn"].Controls[0];
                
                checkBox.Checked = true;
            }
Princy
Top achievements
Rank 2
 answered on 01 Dec 2009
1 answer
129 views
Hi,

I've a radgrid with filters turned on. I found that filters are case sesitive. But in my project, they do not want the case sensitivity on filters.
For an item caleed abc, when entered abc or ABC , the filter should return the same result.
How do I enable this?
Shinu
Top achievements
Rank 2
 answered on 01 Dec 2009
6 answers
188 views
I'm observing strange behavior with the RadTextBox Multiline in firefox for the 2009.3.1103 version of the controls...

When typing into a multiline textbox, the textbox does not scroll as you type into the textbox.  The behavior does not happen in IE6,7,8, Safari, Opera or Chrome.

In my case, I have a 5 row Multiline RadText Box.  You Can continue to type, you just can't see what you are typing.

Anyone else see this happening?  This does NOT happen in the 2009.2.826 version of the controls.

Thanks, Kuba

EDIT:  FYI, the version of Firefox being used:  3.5.3
George
Top achievements
Rank 1
 answered on 30 Nov 2009
12 answers
313 views
Hi
i have checkbox column as below
            <grid:GridClientSelectColumn HeaderStyle-HorizontalAlign="Center"  HeaderStyle-Width="5%" UniqueName="cbxPortfolioTermMap"  HeaderText="" HeaderStyle-CssClass="columnheader"/>

if i click on any row the check box is checking out.. and if i click any other row other than the one seleted the checked one is unchecked and the selected is checking ..

if i particularly select /deselect check box alone it works fine.. but it is checking out when i click on the row of any column

how to remove the control on the row selection

please help
thanks
-krishna


Karim
Top achievements
Rank 1
 answered on 30 Nov 2009
3 answers
161 views
Hi,

I've a radgrid with gridclient select column.

I've paging turned on with pagesize 10.
My question is

1) when I select 2 items in first page and travel to next page and selct further 2 items, and click on delete , only the records from the second page gets deleted.
But I selected 2 records from first page too. so, how do I even make all items selcted across pages delted.
I don't want to select 2 records from 1 page, delete , then go to next page and again delete.
I want to select all items by checking the check box and delete should delete all the items selected across pages.
Pls help me with code samples in C#.

Thanks,
ZR
Ayesha
Top achievements
Rank 1
 answered on 30 Nov 2009
2 answers
522 views
Hi all,

Is there anyone with a simple sample for string concatenating in a databinding field...

Here's my case.
I have a RadGrid with a hyperlink column. I want the link to link to a customer, but also to add a querystring parameter called returnurl.
The value of the ReturnUrl is the AbsoluteUri of the page. It can vary by it's QueryString.
A simple thing in many ways. And I could solve this by using the databound events, but I just think that another solution must be possible.

This is one take I tried. ReturnUrl is a public property on the page, returning the AbsoluteUri of the page. I did remember to call DataBind on the page.

<telerik:GridHyperLinkColumn DataTextField="Name" HeaderText="Name"   
UniqueName="ClientName" DataNavigateUrlFields="ID"   
DataNavigateUrlFormatString="clEdit.aspx?clID={0}&amp;returnurl=<%# ReturnUrl   
%>> 

I also tried to make the call directly to the Request.Url.AbsoluteUri in stead of the property.
I also tried with ' in stead of "

So, if anyone has a take on this, please help me :)

Kind regards,
Morten
Morten Louw
Top achievements
Rank 1
 answered on 30 Nov 2009
1 answer
95 views
Hi

I'm trying to plot a chart that has about 35 columns (bars) and for each the legend needs to display about 100 - 200 characters of text.

I've tried moving the legend below the chart which works but it all seems to overlap and look very confused.

Does anyone have any tips on this?

Code I'm using@
rc.Legend.Visible = true;
   rc.Legend.Appearance.Position.AlignedPosition = Telerik.Charting.Styles.AlignedPositions.Bottom;
rc.Legend.Appearance.Location = Telerik.Charting.Styles.LabelLocation.OutsidePlotArea;
rc.PlotArea.Appearance.Dimensions.Height = 500;
rc.Legend.Appearance.Dimensions.Height = 2000;

Thanks in advance
John
Top achievements
Rank 1
 answered on 30 Nov 2009
4 answers
772 views

Hello,

I am using radcontrols .When ever I run the application Im getting

Error in web.config as "Could not load type 'Telerik.Web.UI.RadCompression'" and

Description: An error occurred during the processing of a configuration file required to service this request.
Please post your thoughts here.

Thanks,
Venkat
Auri
Top achievements
Rank 1
 answered on 30 Nov 2009
2 answers
103 views
screenshot

I have dynamic filtering set on my grid, so users can turn it on or off.
In IE8 upon first rendering with filters off they look normal, but will hide automatically.

However when calling the rebind, all the date filters double in size.

I cookie the filter choice so it carries over to the next grids they view.

here is my javascript code.  i sure wish there was a server side event for this that would happen in Ajax !

 <script type="text/javascript">  
 
                function pageLoad(sender, eventArgs) {  
 
                    var filter = getCookie("filter");  
                    if (filter != "on")  
                        $find('<%=rgSO.ClientID %>').get_masterTableView().hideFilterItem();  
                        $find('<%=rgSO.ClientID %>').get_masterTableView().rebind();  
 
                }  
 
                function showFilterItem() {  
 
                    var masterTable = $find("<%= rgSO.ClientID %>").get_masterTableView();  
                    masterTable.showFilterItem();  
                    masterTable.rebind();  
                    setCookie("filter", "on", 7);  
 
                }  
                function hideFilterItem() {  
 
                    var masterTable = $find("<%= rgSO.ClientID %>").get_masterTableView();  
                    masterTable.hideFilterItem();  
                    masterTable.rebind();  
                    setCookie("filter", "off", 7);  
                }   
            </script> 




David
Top achievements
Rank 1
 answered on 30 Nov 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?