1
vote
1answer
24 views
ASP.NET: Gridview Showing a button on a row, when a row cell vlaue = false in the Bound row from the database
I have a GridView binded to a datasource, i was wondering of how i can check a row cell value (bool) from the database row being bound , and then show a button on the rows where th …
0
votes
1answer
27 views
WPF - How do I default the Visibility of a databound Textblock?
Hi
This Textblock, defined below, shows when the window first loads because it has no Datacontext (and hence the converter code is not run) until an item has been selected from an …
0
votes
1answer
23 views
Data bound drop down in a gridview template
I need to limit the values in a data bound drop down placed in a template column in a gridview based on the text in another column in that row of the gridview. I also want the drop …
0
votes
0answers
30 views
Is there a way to save databound ListView data as a whole instead of saving per row?
I have a ListView that is databound thru DataSource of type typed dataset table.
private void LoadTrusts(int? clientId, int? imageId)
{
TrustDataSource = GetTrusts …
0
votes
0answers
12 views
AutoComplete intergrated with a GridView
I'm was wondering if anyone know of an implementation where there is an autocomplete textbox that drives what displays in the DataBound control like GridView, Repeater, ListView,et …
0
votes
1answer
31 views
Events from inside a DataBound Control
I have an asp:Repeater with an asp:DropDownList in it. The DropDownLists in the repeater raise their SelectedIndexChanged events on every postback, regardless of whether they were …
0
votes
1answer
140 views
Insert new item to ListView after first item
I am trying to add a new item in a ListView on itemdatabound. What is the best way to do it?
Data comes from a dataset with
TopicReplyListView.DataSource = TopicReplyData …
0
votes
1answer
151 views
Unselect Databound Combobox Winforms .NET
The problem: combobox is databound to a DataView, first item in the dataview is DataRowView whose fields are DBNull.Value; Combo DropdownStyle = ComboBoxStyle.DropDownList
Loads f …
2
votes
4answers
2k views
Data bound radio button list in WPF
So I have a list of options in a data object, and I want to make the equivalent of a radio button list to allow the user to select one and only one of them. Functionality similar …
0
votes
1answer
110 views
Anonymous type in Repeater DataBound event
Hi All
I'm setting the DataSource of an ASP.NET repeater as follows:
rptTargets.DataSource = from t in DB.SalesTargets select new { t.Target, t.SalesRep.RepName };
Now, in the …
1
vote
3answers
574 views
How do I find the Client ID of control within an ASP.NET GridView?
I have a asp:GridView which contains a asp:TextBox within a TemplateField. I would like to obtain it's ID for use in javascript. Something like this:
<asp:TemplateField>
…
0
votes
2answers
123 views
Is there a way to bind textboxes in a webform so the data is save as the user types in?
Hello!
I have in my webform many TBs bound to a property in the code behind:
<asp:TextBox ID="tbFirstName" Text="<%# Contact.FirstName %>" runat="server" />
<scrip …
0
votes
1answer
59 views
How can I replace characters from a databound object?
I have this:
<img id="imgField" alt="" runat="server" src='<%# string.Format("images/{0}.jpg", DataBinder.Eval(Container.DataItem,"Name")) %>' />
and it's rendering …
0
votes
3answers
281 views
Equivalence of an asp:HiddenField for a GridView
There is no asp:HiddenField that can be used in a GridView so I was wondering what would work similar to this.
My reasoning for wanting this is I have a ButtonField that triggers …
2
votes
2answers
3k views
How to programmatically insert a row in a GridView?
i have a databound GridView in asp.net 2.0 with a row-selection link. When a row is selected, I want to programmatically add a table row below the selected row, in order to nest an …
