
Hello Team,
As soon as RadPivotGrid's width increase by 100 pixel, i should have horizontal scroll bar. but am not able to enable it.
Could you let me know what is the property to be used in C# like:
RadPivotGrid1.ClientSettings.Scrolling.AllowVerticalScroll = true;
Thanks,
Mohan Pal

Hi,
I'm using the following JS in my base page
function RefreshDiscussionNotesGrid() {
RefreshGrid("<%=rgDiscussionNotes.ClientID %>");
}
function RefreshGrid(ClientID) {
$find(ClientID).get_masterTableView().rebind();
}
I'm calling this from an iframe:
function RefreshDiscussionNotesGrid() {
jQuery(document).ready(function () {
$("input[id*='btnCloseModal']", parent.document).click();
window.parent.RefreshDiscussionNotesGrid();
});
}
I'm receiving an error in IE11:
Accessing the 'caller' property of a function or arguments object is not allowed in strict mode

<telerik:RadGrid ID="radInvoiceOverview" runat="server" AutoGenerateColumns="true" OnNeedDataSource="radInvoiceOverview_NeedDataSource" GridLines="None" Width="650px" AllowPaging="true" PageSize="100" ShowHeader="true" ItemStyle-Height="30px" AlternatingItemStyle-Height="30px"> <ClientSettings AllowKeyboardNavigation="true" EnablePostBackOnRowClick="true" EnableRowHoverStyle="true"> <Selecting AllowRowSelect="true"/> </ClientSettings> <SortingSettings EnableSkinSortStyles="false"/> <PagerStyle Mode="NumericPages" AlwaysVisible="true" PageButtonCount="10" PagerTextFormat="{4} Page {0} from {1}, Transactions {2} to {3}"/> <MasterTableView EnableNoRecordsTemplate="true" AutoGenerateColumns="true"> <NoRecordsTemplate> <div style="width:100%;text-align:center;margin-top:10px;margin-bottom:10px;"><b>some Text</b></div> </NoRecordsTemplate> </MasterTableView> </telerik:RadGrid>
protected void btnShow_Click(object sender, EventArgs e) { radInvoiceOverview.Rebind(); } protected void radInvoiceOverview_NeedDataSource(object sender, Telerik.Web.UI.GridNeedDataSourceEventArgs e) { try { radInvoiceOverView.DataSource = GetUnprintedInvoicesForClient(); //<-- brings a DataTable as Source } catch (Exception ex) { //do some logging } }Hopefully someone can point me in the right direction.
I have a Grid that i populate from a list that i get from my backend. it works great like this. i do have paging that works, but sorting is one i am having trouble with.
I set the allowsort property to true, but the columns do not allow me to click on them to sort.
Any Suggestions?
if (e.Item is GridDataItem)
{
GridDataItem item = (GridDataItem)e.Item;
CheckBox chkbx = (CheckBox)item["ClientSelectColumn"].Controls[0];
chkbx.AutoPostBack =
true;
chkbx.Attributes.Add(
"OnClick", "return alert('" + chkbx.Checked + "');");
}


| <telerik:RadGrid ID="RadGrid1" runat="server" DataSourceID="SqlDataSource1" |
| GridLines="None" AllowMultiRowSelection="True"> |
| <ClientSettings> |
| <Selecting AllowRowSelect = "true" /> |
| </ClientSettings> |
| <MasterTableView datasourceid="SqlDataSource1" AutoGenerateColumns = "false"> |
| <Columns> |
| <telerik:GridBoundColumn DataField="Name" HeaderText="Name" |
| SortExpression="Name" UniqueName="Name"> |
| </telerik:GridBoundColumn> |
| <telerik:GridClientSelectColumn UniqueName="CheckboxSelectColumn1" HeaderText="CheckboxSelect column1 <br />" /> |
| <telerik:GridClientSelectColumn UniqueName="CheckboxSelectColumn2" HeaderText="CheckboxSelect column2 <br />" /> |
| </Columns> |
| </MasterTableView> |
| </telerik:RadGrid> |