vote up 1 vote down star

I would like to use a TextBoxor Label (item) inside of a Gridview. When field is clicked, I would like to display list of records that contain: - Item Name - Description - Price - Image - Add Button

flag

0% accept rate
It would actually be very beneficial for myself and others if you put your front end code here so we can better understand what you are trying to achieve... – RSolberg Jul 16 at 6:56
It would still be nice to see your current source code... You probably won't get anyone to do this for you... Maybe a link or 2 to a site that does what you're talking about as well. – RSolberg Jul 16 at 15:13

1 Answer

vote up 2 vote down

It sounds to me like you are talking about having a "filter" option for your GridView.

If I'm reading your post correctly, you would like to be able to enter text into the TextBox and then filter the data within the GridView to show matching records. Below is some pseudo code that will hopefully help get you started...

FRONT END CODE

<asp:TextBox id="myBox" runat="server" OnTextChange="myBox_OnTextChange"></asp:TextBox>
<asp:GridView id="myGrid" runat="server">
    //COLUMN 1
    //COLUMN 2
    //IMAGE TO ADD
</asp:GridView>

CODE BEHIND

//THIS CODE IS NOT CORRECT EXAMPLE ONLY TO GET YOU STARTED
protected void myBox_OnTextChange(EventArgs e)
{
    if(!String.isNullorEmpty(this.myBox.Text))
    {
        //MyFunction will filter your datasource with the text box data and 
        //return a DataSet or DataTable or etc.....
        this.myGrid.DataSource = MyFunction(myBox.Text);
        this.myGrid.DataBind();
    }
}
link|flag
but in this way the items list will appear when I load the first gridview is that correct? what I need is th view the items list when the user click on the item column in first gridview – Wafaa Jul 16 at 6:48
Can you look at the question above, I edited it... Let me know if that is what you are looking for. – RSolberg Jul 16 at 6:50
I looked at it in fact that is not what I need. I don't want to filter the items list what I need is when user click on item column(it could be textbox or label template field) a list of items appear and the user can choos from that list – Wafaa Jul 16 at 6:57
Like a dropdown menu? Go ahead and edit the question above and maybe provide source code and links to an example of what you are trying to do. – RSolberg Jul 16 at 7:17

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.