or
function performSearch() | |
{ | |
SelectorService.GetData(0,10000000, | |
... [snip] ..., | |
UpdateGrid, SearchFailed); | |
} | |
function UpdateGrid(result) | |
{ | |
var tableView = $find("<%= RadGrid1.ClientID %>").get_masterTableView(); | |
tableView.set_dataSource(result); | |
tableView.dataBind(); | |
} |
<asp:Panel ID="GridPanel" runat="server" Style="font-size: x-small; clear: both; | |
padding: 4px 2px 2px 2px;" ScrollBars="Auto" Height="200px" Width="444px"> | |
<Telerik:RadGrid ID="RadGrid1" runat="server" SkinID="Selector" EnableViewState="false" | |
AllowPaging="true" AllowSorting="True" AllowFilteringByColumn="true" GridLines="None" | |
AutoGenerateColumns="true" OnColumnCreated="RadGrid1_ColumnCreated"> | |
<ClientSettings> | |
<ClientEvents OnRowSelected="RowSelected" OnRowDblClick="RowDblClick" /> | |
<Selecting AllowRowSelect="true" EnableDragToSelectRows="true" /> | |
</ClientSettings> | |
</Telerik:RadGrid> | |
</asp:Panel> |
<
telerik:GridTemplateColumn
DataField
=
"UserEdited"
FilterControlAltText
=
"Filter UserEdited column"
HeaderText
=
"UserEdited"
SortExpression
=
"UserEdited"
UniqueName
=
"UserEdited"
>
<
EditItemTemplate
>
<
asp:Label
ID
=
"UserEditedLabel2"
runat
=
"server"
Text='<%# Bind("UserEdited") %>'></
asp:Label
>
</
EditItemTemplate
>
<
ItemTemplate
>
<
asp:Label
ID
=
"UserEditedLabel"
runat
=
"server"
Text='<%# Eval("UserEdited") %>'></
asp:Label
>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>
Hello,
I would like to Use Rad Calendar Multi Month Mode to display two months. By default the current month (on the right) and last month ( on the left). When I navigate to the next month I would like the current month (on the left) and next month on the right.
Is this possible with Rad Calendar?
Kyle
<
telerik:GridTemplateColumn
HeaderText
=
"Employee"
ItemStyle-Width
=
"150px"
UniqueName
=
"EmployeeName"
>
<
ItemTemplate
>
<
asp:LinkButton
ID
=
"lblEmpName"
runat
=
"server"
Text
=
""
/>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>