Replace Column Value With Description?

May 27, 2010

How to replace cell value with their description. This is my grid

<telerik:RadGrid ID="RadGrid1" runat="server" DataSourceID="SqlDataSource1" GridLines="None">
<HeaderContextMenu EnableAutoScroll="True">
</HeaderContextMenu>
<MasterTableView AutoGenerateColumns="False" DataKeyNames="OrderID" DataSourceID="SqlDataSource1">
<RowIndicatorColumn>
<HeaderStyle Width="20px"></HeaderStyle>
</RowIndicatorColumn>
<ExpandCollapseColumn>
<HeaderStyle Width="20px"></HeaderStyle>
</ExpandCollapseColumn>
<Columns>
<telerik:GridBoundColumn DataField="OrderID" DataType="System.Int32" HeaderText="OrderID"
ReadOnly="True" SortExpression="OrderID" UniqueName="OrderID">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="CustomerID" HeaderText="CustomerID" SortExpression="CustomerID"
UniqueName="CustomerID">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="OrderDate" DataType="System.DateTime" HeaderText="OrderDate"
SortExpression="OrderDate" UniqueName="OrderDate">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="RequiredDate" DataType="System.DateTime" HeaderText="RequiredDate"
SortExpression="RequiredDate" UniqueName="RequiredDate">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="ShipName" HeaderText="ShipName" SortExpression="ShipName"
UniqueName="ShipName">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="ShipAddress" HeaderText="ShipAddress" SortExpression="ShipAddress"
UniqueName="ShipAddress">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="ShipCity" HeaderText="ShipCity" SortExpression="ShipCity"
UniqueName="ShipCity">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="ShipRegion" HeaderText="ShipRegion" SortExpression="ShipRegion"
UniqueName="ShipRegion">
</telerik:GridBoundColumn>
telerik:GridBoundColumn DataField="ShipPostalCode" HeaderText="ShipPostalCode" SortExpression="ShipPostalCode"
UniqueName="ShipPostalCode">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="ShipCountry" HeaderText="ShipCountry" SortExpression="ShipCountry"
UniqueName="ShipCountry">
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>

This grid will load Orders table. How to replace CustomerID with CompanyName which is come from Customers table during run time?

View 2 Replies


Similar Messages:

MVC :: Show Description Column Value To Html.lable?

Feb 13, 2010

i set a value for decription column in my table of database.and now i want to show that for html.lablehow can i do it?

View 3 Replies

Retrieving Description Item From Sql Server Table Column?

Apr 5, 2010

is it possible to retrieve by using connection.getschema() the description item from a sql server table column, just like it's possible to retrieve the column name, data type, is nullable, column default value, etc? if so, how?

View 3 Replies

Web Forms :: Description Box - Modify The Description Not To Be In A Straight Line

Jan 30, 2011

<asp:FormView ID="FormView1" runat="server" DataKeyNames="productnum"
DataSourceID="EDS_Product">
<ItemTemplate>
<div class="ContentHead"><%# Eval("name") %></div><br />
<table border="0">
<tr><td style="vertical-align: top;">
<img src='images/big/<%# Eval("image") %>' border="0" alt='<%# Eval("name") %>' /></td>
<td style="vertical-align: top"><%# Eval("description") %>
<br /><br /><br /></td></tr></table>
<span class="price"><b>Your Price:</b> <%# Eval("price", "{0:c}")%><br /><span class="number"><b>Number:</b> <%# Eval("number") %>
</span><br /><a href='AddToCart.aspx?productnum=<%# Eval("productnum") %>'>
<span class="ProductListItem"><b>Add To Cart<b></font></span></a>
</ItemTemplate>
</asp:FormView

this is from the product details page and the description goes in a straight line always - i want to make the description a box and have lenght of 30 characters every line -- i want to modify the description not to be in a straight line

View 3 Replies

Forms Data Controls :: Gridview Column Change / Replace A Column Data Field Value to 'Not Applicable'?

Jan 6, 2011

I have a gridview which is binded to a Sqldatasource. I would like to replace a column data field value to 'Not Applicable' if that column has got a value of 2 in database.

View 2 Replies

GRIDVIEW - Replace Text With Image In Column

Dec 17, 2012

I would like setting up my GRIDVIEW to display an image in of the columns instead of a text where deathmarker column contains a specific word (Y).I got it working to show an image in every row, but i need a way of filtering this so it should only appear if the deathmarker column is populated with the letter "Y".below is the asp.net code

Code:
<%@ Page Title="" Language="vb" AutoEventWireup="false" MasterPageFile="~/Master.Master" CodeBehind="PatientList.aspx.vb" Inherits="Chaplaincy.PatientList" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>

[code]...

View 1 Replies

Forms Data Controls :: Access Gridview Column 2 And For Each Row Replace Text

Mar 31, 2011

i want to access gridview collumn 2 and for each row replace the text that is there with a "*" because its a password fields so instead on show the pass hide it with * so its more or less this but... see comment line

[Code]....

View 3 Replies

C# - Making A Description Text - Unable To Get A Description Text From The Whole Text Which Exist In Txt Field

Feb 28, 2011

I have in my database the News Table which consist of => Id, Title, txt . I need to be able to get a description text from the whole text which exist in txt Field , but without any codes like <...> , just a pure text !! how can I do this?

View 3 Replies

Web Forms :: Regex.Replace - How To Replace All In A String

Jun 18, 2010

I need to replace <span> entries in a string to legacy html code because it's going to be used in a report for Crystal Reports. <b> works with Crystal, but the<span>'s do not.

Here's the string which I'm trying to replace: <span style="font-weight: bold">%THIS CAN BE ANY TEXT%</span>. I want to replace it to

<b>%THIS CAN BE ANY TEXT%</b>.

[Code]....

View 5 Replies

ADO.NET :: Use The Item Description Look Up Table And Store The Item Description Id In The Items Table?

Dec 31, 2010

i have the following two questions:-

1. let say i have a table for ITEMS including (item id,item description id (FK to the ITEM Description tabe), item price,etc) and have ITEM Description look up table having (item descriptionid,item description),.

so what is better to use the ITEM DESCRIPTION look up table and store the item description id in the items table

or

to directly store the item description "Not the id" in the item table.

2. I am working on an MVC web application using LINQ, now if i want to modify the SQL server tables which i have created for example modify some of the foreign key properties will the effect be directly reflected on any new inserted or deleted records or i have to create a new LINQ to SQL class?

View 3 Replies

Web Forms :: C# Replace " With " Using The Replace Method?

Mar 15, 2011

How do you replace" with" using the replace method?

View 5 Replies

Add Some Description Against Each Parameter

Oct 26, 2010

I have written a function and want to add some description against each paratemeter it takes, how can i do this in vb.net?

[Code]....

View 2 Replies

Url Or Code Encryption And Description?

Mar 3, 2010

i an sending the url with some inofmation say some thing like this:

"http://localhost:4622/Emp_ResumeResult.aspx?UId=109" now if any one types 110 in place of 109 the infomration of 110 is being displayed so how can i hide this information and how can in encript and decript this issue any url or code.

View 2 Replies

Creating A Web Form From An XML Description Of It?

Dec 22, 2010

i am assigned to web part of some project.My duty is to create web form from xml.These xml comes from window part and tells which controls are include in my web form and their properties.My xml Format is like below.

<Object type="System.Windows.Forms.Form">
<Property name="Name">Form1</Property>
<Property name="Text">Option</Property>

[code]...

View 1 Replies

Need A Brief Description And Concept That What Is Event Mapping

Oct 13, 2010

I need a brief description and concept that what is event mapping in Asp.Net?

If you have any useful link tell me. Write here if you know about this

View 3 Replies

Finding Description About #region PageLoad

Nov 9, 2010

Can anybody tell me the description about

"#region PageLoad"

which i absorbed in a code given to me....

View 3 Replies

Custom Description Page For The WCF Endpoint?

Mar 14, 2010

I am migrating an ASP.NET Web Service toward WCF. The old Web Service endpoint had a nice extensive description page generated from the comment of the underlying class exposed as a service endpoint. In particular, all available web methods were listed.

Is there a way to emulate somehow this behavior with WCF? At least, how can I customize the HTML content of the WCF endpoint?

View 1 Replies

C# - Optimal Way To Cache Time Of Day Description?

Mar 30, 2011

What is the best method to cache the following? I am creating an intranet web application template that will display the message, e.g., Good Morning, Justin Satyr! near the top of my master page header. Obviously, I will have to determine whether to show Morning, Afternoon or Evening. For clarity, my code is below:

string partOfDay;
var hours = DateTime.Now.Hour;
if (hours > 16)
{
partOfDay = "evening";
}
else if (hours > 11)
{
partOfDay = "afternoon";
}
else
{
partOfDay = "morning";
}

I do not want to re-determine this on each page load because that seems moderately redundant and because I have to poll a SQL server to retrieve the user's full name. What is the best way to cache this nformation? If I cache it for the length of the session, then if the user begins using the application at 11:00 AM and finishes at 3:00 PM, it will still say Good Morning. Is the best thing to do simply re-determine the M/A/E word each page load and cache the person's full name for the session? Or is there a better way?

View 3 Replies

Installation :: Description: Connection Refused?

Jul 30, 2010

I am facing the error: Connection refused, When i am browsing any web page on my local machine.I even tried to browse the web pages in my default web site, but facing the same error.My machine is having visual studio. net 2008 and 2005. the data base I am using is Sql server 2005.The OS is windows xp sp 3

View 1 Replies

Web Forms :: Add Description In Dropdown List

Sep 8, 2010

i have a dropdownlist and i get the value from database and it's working good.. now i want to add description in the same drop down list..

View 5 Replies

SQL Server :: Description About Working Of OVER Clause

Jan 26, 2011

I have created the folowing stored procedure and it is working fine... I have used OVER clause in the query written in the WITH block. Can some body provide description about working of OVER clause and why I need to use it with the ROW_NUMBER() function.

CREATE PROCEDURE SelectOrder
@PageIndex INT,
@PageSize INT
AS
BEGIN
WITH Order AS
(
SELECT ROW_NUMBER() OVER (ORDER BY OrderId DESC)
AS Row, *
FROM Orders
)
SELECT *
FROM Order
WHERE Row between (@PageIndex - 1) * @PageSize + 1 and @PageIndex*@PageSize
END

View 2 Replies

Is There An Indepth Architectural Description Of The MVC 2 Framework

Mar 4, 2010

Not so much a "How to" of how to use the framework, but a good description of how the framework itself is put together?

web site? book? or just the source code? :-)

View 3 Replies

.net - Get Description For HTTP Status Code?

Aug 22, 2010

In ASP.NET you can set the Response.StatusCode to for example 404. Should the status line / description always be set? (to in this case "404 Page Not Found")

How do you get the description if you only have the code (404)? Is this somewhere in the framework or do you manually have to hardcode the descriptions?

View 3 Replies

Add Description To An User Control Property In Vb.net?

Jul 10, 2010

I created one web user control with property named "ReadonlyField" with boolean datatype. I am able to use in my web pages and now i wanted to add a description to that property so that i dont need to explain each time to my team member what is that property's intention.

I got following snippet in c# but didnt find any equivalent in vb.net and also not sure whether it will work or not.

[Description("My Description")]
public int MyIntProperty
{
get {..}
set {..}
}

View 1 Replies

How To Change Meta Description On Specific Pages

Nov 24, 2010

I want to know if there is way to change meta description on specific pages, but to keep the meta data from the master page for the pages where I haven't specified any info.

I am trying this approach:

[code]....

Which adds the description tag properly, but I want in same time to remove/disable the meta tag from the master page. Is that possible?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved