for (int i = 0; i < RadGrid1.PageSize; i++)
{
RadGrid1.EditIndexes.Add(i);
}
Am I missing something or will this only work for the first page of data?
How do I determine what the current Page Index is during Page_Load, the CurrentPageIndex property seems to always be 0?
Many thanks
Antony
<
telerik:RadGrid ID="rdgCustomers" AllowMultiRowSelection="false" runat="server"
Skin="Outlook" Width="100%" BorderStyle="None" AllowPaging="true"
AutoGenerateColumns="true" ItemStyle-Wrap="false" GridLines="None" OnItemCreated="rdgCustomers_ItemCreated"
OnItemCommand="rdgCustomers_ItemCommand" OnPreRender="rdgCustomers_PreRender"
oncolumncreated="rdgCustomers_ColumnCreated"
onsortcommand="rdgCustomers_SortCommand" AllowSorting="true">
<ClientSettings AllowColumnsReorder="True" ReorderColumnsOnClient="true">
<ClientEvents OnRowDblClick="OpenCustomer"/>
<Resizing AllowRowResize="False" EnableRealTimeResize="True" ResizeGridOnColumnResize="true"
AllowColumnResize="True"></Resizing>
<Scrolling AllowScroll="false" UseStaticHeaders="True" />
<Selecting AllowRowSelect="True" />
</ClientSettings>
<MasterTableView CommandItemDisplay="None" TableLayout="Fixed" ClientDataKeyNames="ID,Name"
ItemStyle-Wrap="false" AutoGenerateColumns="true" DataKeyNames="ID,Name" Width="100%">
<PagerStyle Wrap="false" Mode="NextPrevAndNumeric" PrevPageImageUrl="Images/arrowLeft.gif"
NextPageImageUrl="Images/arrowRight.gif" NextPageText="Next" PrevPageText="Prev"
AlwaysVisible="true" />
</MasterTableView>
</telerik:RadGrid>

return
$find(this._masterClientID);
Argument can't be null: ID
_masterClientID is null.
Why is that?
Thanks.
| <telerik:RadAjaxManager runat="server" ID="RadAjaxManager1" OnAjaxRequest="RadAjaxManager1_AjaxRequest"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="RadAjaxManager1"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="cklProjects" /> |
| <telerik:AjaxUpdatedControl ControlID="grdContacts" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| function __refreshProjectGrid(args) { |
| $find("<%= RadAjaxManager1.ClientID %>").ajaxRequest(args); |
| } |
I'm working on a project that has multiple resources that are able to be reserved for certain periods of time. Ex: projectors, laptops, conference rooms.
What I'm trying to do is set an availability to those resources that aren't being reserved and take those that are in use off of the resource list. I am also trying to make sure that if there's a recurring reservation, (ex: conference room A is needed every Wednesday from 9:00-10:00am) the resource is only blocked during that time on Wednesday and not completely unavailable.
Any help on this would be appreciated.
Amanda