
| <telerik:GridBoundColumn DataField="uwr_id" DataType="System.Int64" | |
| HeaderText="Request ID" | |
| ReadOnly="True" | |
| SortExpression="uwr_id" | |
| UniqueName="uwr_id" | |
| DataFormatString="<%# Base.DBManager.getRelatedTasks(DataBinder.Eval(Container.DataItem,"uwr_id")) %>" > | |
| </telerik:GridBoundColumn> |
| public static string getRelatedTasks(object obj) |
| { |
| long uwr_id = (long)obj; |
| string res = "SIMPLE RES "; //no processing, just for testing |
| return res; |
| } |
| Server Error in '/' Application. |
| Parser Error |
| Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. |
| Parser Error Message: Literal content ('<telerik:GridBoundColumn DataField="uwr_id" DataType="System.Int64" |
| HeaderText="Request ID" ReadOnly="True" SortExpression="uwr_id" UniqueName="uwr_id" |
| DataFormatString="') is not allowed within a 'Telerik.Web.UI.GridColumnCollection'. |
| Source Error: |
| Line 23: </ExpandCollapseColumn> |
| Line 24: <Columns> |
| Line 25: <telerik:GridBoundColumn DataField="uwr_id" DataType="System.Int64" |
| Line 26: HeaderText="Request ID" ReadOnly="True" SortExpression="uwr_id" UniqueName="uwr_id" |
| Line 27: DataFormatString="<%# Base.DBManager.getRelatedTasks(DataBinder.Eval(Container.DataItem,"uwr_id")) %>" > |
| Source File: /admin/AdmWebsiteRequests.aspx Line: 25 |
| Version Information: Microsoft .NET Framework Version:2.0.50727.1434; ASP.NET Version:2.0.50727.1434 |



Hi!
I love u guys, i try and try...and learn and learn
but the more i learn, i discover that i dont know nothing...
HEheheh
First let me explain what am trying to do:
I have an RadGridView that have 6 columns
(Name,un,coef,cons,cust,Total).
and
I have an RadNumericTextBox out the grid.
I need that the column 'cons' have an label.text = (the out RadNumericTextBox value) * (the value of the specific
column 'coef')
and
I need that the column 'cust'(that have an RadNumericTextBox ) when changed the specif column 'Total' will be set to
'cons * cust'
and
When the Column 'Total' Blur, the column 'Cust' will be set to 'Total / Cons'
and in the footer i have an another RadNumericTextBox that have the sum of the column 'Total'
The image will explain better what i'm trying to do:
now for the questions :P:
1)How to make to the column 'cons' modify in the client when the out RadNumericTextBox changed?
2)How to get the value of the column 'Cons' when the RadNumericTextBox of the column 'Cust' changed?
Thanks,

ExpandCollapseColumn-Display
="false"
in my MasterTable but this does not seem to help. I have included my code and a screenshot.| <telerik:RadGrid ID="RadGridDevelopmentNeeds" runat="server" EnableEmbeddedSkins="False" AutoGenerateColumns="false" DataSourceID="srcDevelopmentNeeds" EnableViewState="true" OnItemCommand="RadGridDevelopmentNeeds_ItemCommand"> |
| <MasterTableView GroupHeaderItemStyle-BackColor="Pink" ExpandCollapseColumn-Display="false" > |
| <GroupByExpressions> |
| <telerik:GridGroupByExpression> |
| <GroupByFields> |
| <telerik:GridGroupByField FieldName="Status" SortOrder="Ascending"/> |
| </GroupByFields> |
| <SelectFields> |
| <telerik:GridGroupByField FieldName="Status" HeaderText=" "/> |
| </SelectFields> |
| </telerik:GridGroupByExpression> |
| </GroupByExpressions> |
| <Columns> |
| <telerik:GridTemplateColumn UniqueName="Rank"> |
| <ItemStyle VerticalAlign="Top" HorizontalAlign="Left" Font-Bold="true"/> |
| <ItemTemplate><%# Eval("Rank")%>.</ItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridTemplateColumn UniqueName="DNName"> |
| <ItemStyle CssClass="dnindex"/> |
| <ItemTemplate> |
| <asp:LinkButton ID="lbSelectDevelopmentNeed" runat="server" CommandName="LoadDevelopmentNeed" CommandArgument='<%#Eval("GUID") %>' CssClass="dnindex"><%#Eval("Name")%></asp:LinkButton> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| </Columns> |
| </MasterTableView> |
| </telerik:RadGrid> |