



<telerik:GridTemplateColumn UniqueName="Store_Code" DataField="Store_Code" DataType="System.Int32"> </EditItemTemplate> <InsertItemTemplate> </InsertItemTemplate> <ItemTemplate> <%# Eval("Store_Code") %> </ItemTemplate> <HeaderStyle CssClass="serial-column" /> <ItemStyle CssClass="serial-column" /> <FooterStyle CssClass="serial-column" /> </telerik:GridTemplateColumn>
Hi,
I am trying to bind RadGrid with JSON Data on Client side. GridBoundColumns display data ok, but GridTemplateColumn is empty.
My code is below. Please, help.
<telerik:GridTemplateColumn UniqueName="Description" DataField=Description" AllowFiltering="false" > <ItemTemplate> <asp:Label ID="Description" runat="server" /> </ItemTemplate></telerik:GridTemplateColumn> $.ajax({ type: 'POST', contentType: 'application/json; charset=utf-8', data: '{}', dataType: 'JSON', url: '../../Services/Service.svc/GetList', success: function (result) { var GridData = result.GetListResult; if (GridData.length > 0) { var masterTable = $find("<%=gvList.ClientID %>").get_masterTableView(); masterTable.set_dataSource(GridData); masterTable.dataBind();}
I've been using a RadNumericTextBox to fix a min and max values for sizing a div.
Control
<Telerik:RadNumericTextBox ID="txtHeight" runat="server" MinValue="0" MaxValue="128" NumberFormat-DecimalDigits="0" onchange="setHeight();"></Telerik:RadNumericTextBox>
JS function
function setHeight() {
$("#div1").css("height", $("[id$=txtHeight]").val());
}
DIV
<div id="div1" style="border:1px solid black;"></div>
Everything works well, but when I input the value of 500 inside the txtHeight then lost the focus, the RAD control fix the max value to 128 but the div has been already change the height to 500px and it's not refreshed. I put a button to refresh the value of the div but what I really want is to set it in the change or blur client side event of the textbox. If not, it could be seen as a bug. So how can I do to set the div size after the RADControl does the change value to maximum value set?


Hi,
I am having problem when adding filter on Radgrid. When I add a filter the Radgrid generates this error: Collection was modified; enumeration operation may not execute. But when I remove the filter the Radgrid works. Below is my Radgrid code. Please help.
<telerik:RadGrid AutoGenerateColumns="False" ID="RadGrid1" DataSourceID="SqlDataSource1" Skin="WebBlue" AllowFilteringByColumn="True" AllowSorting="True" PageSize="15" OnItemDataBound="OnItemDataBoundHandler" OnUpdateCommand="RadGrid1_UpdateCommand" ShowFooter="True" AllowPaging="True" runat="server" GridLines="None" EnableLinqExpressions="False" CellSpacing="0"> <MasterTableView Width="100%" DataSourceID="SqlDataSource1" HorizontalAlign="NotSet" AutoGenerateColumns="False" DataKeyNames="IdCol" AllowFilteringByColumn="True"><CommandItemSettings ExportToPdfText="Export to PDF"></CommandItemSettings><RowIndicatorColumn FilterControlAltText="Filter RowIndicator column"></RowIndicatorColumn><ExpandCollapseColumn Visible="True" FilterControlAltText="Filter ExpandColumn column" Created="True"></ExpandCollapseColumn> <Columns> <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandColumn"> <ItemStyle CssClass="MyImageButton"></ItemStyle> </telerik:GridEditCommandColumn> <telerik:GridBoundColumn DataField="idCol" DataType="System.Int64" FilterControlAltText="Filter idCol column" HeaderText="idCol" ReadOnly="True" SortExpression="idCol" UniqueName="idCol" > </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="bondNo" FilterControlAltText="Filter bondNo column" HeaderText="bondNo" SortExpression="bondNo" UniqueName="bondNo" EditFormColumnIndex="0" CurrentFilterFunction="Contains" AutoPostBackOnFilter="true"> </telerik:GridBoundColumn> <telerik:GridDropDownColumn DataSourceID="SqlDataSource3" DataField="transporter" ListTextField="transportername" ListValueField="transportername" UniqueName="transporter" SortExpression="transporter" HeaderText="transporter" DropDownControlType="DropDownList" EditFormColumnIndex="1"> </telerik:GridDropDownColumn> <telerik:GridBoundColumn DataField="GRN" ReadOnly="True" FilterControlAltText="Filter GRN column" HeaderText="GRN" SortExpression="GRN" UniqueName="GRN" EditFormColumnIndex="3"> </telerik:GridBoundColumn> <telerik:GridNumericColumn DataField="numberOfUnits" DataType="System.Int32" FilterControlAltText="Filter numberOfUnits column" HeaderText="numberOfUnits" SortExpression="numberOfUnits" UniqueName="numberOfUnits" EditFormColumnIndex="3"> </telerik:GridNumericColumn> <telerik:GridHyperLinkColumn AllowSorting="False" DataNavigateUrlFields="idcol" DataNavigateUrlFormatString="PrintGRN.aspx?id={0}&reprint=yes" FilterControlAltText="Filter column column" Text="Reprint" UniqueName="column" ItemStyle-Font-Underline="true"><ItemStyle Font-Underline="True"></ItemStyle> </telerik:GridHyperLinkColumn> </Columns> </telerik:RadGrid>
