The itemtemplate tag has no wiki summary.
0
votes
2answers
13 views
Create an Insert Parameter based off values of multiple fields - .NET
I have an Insert screen which I want the values of two fields to be combined to create the value for a third field to be inserted as well. Currently I have a First and Last name field, as well as a ...
0
votes
1answer
16 views
How to Bind the data from a Hashset to ItemTemplate in asp.net c#
I created item template inside a GridView.
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"
BackColor="White" BorderColor="#E7E7FF" BorderStyle="None" ...
1
vote
3answers
47 views
If statement in repeaters ItemTemplate
I'm using an ASP.NET Repeater to display the contents of a <table>. It looks something like this:
<table cellpadding="0" cellspacing="0">
<asp:Repeater ID="checkboxList" ...
0
votes
0answers
10 views
Visual Studio 2010 - vsix wizard extension cannot load referenced assembly
I use VSIX wizard extension.
Everything is functioning for one assembly. But when I want to have WizardAssemblyDetail (for DetailForm) and WizardAssemblyView (for ViewForm) and one assembly ...
0
votes
1answer
16 views
How to override the ItemsSource defined for an ItemTemplate?
I use an Item Template to define how the rows of my grid must be displayed. The grid definition (simplified) shows that the item template source is GridRows (a collection of rows) :
<grid ...>
...
0
votes
1answer
31 views
Getting Listbox Item Index from Button Click
So I'm using a button in the DataTemplate of my Listbox ItemTemplate. Any ideas how I would grab the index of the item of the Listbox from the button click? I can't see to grab the button's parent.
...
0
votes
2answers
34 views
Setting SelectedItem in ListView when user clicks in ItemTemplate Textbox
I have the following ListView (simplified):
<ListView Name="lvwNotes" KeyUp="lvwNotes_KeyUp">
<ListView.ItemTemplate>
<DataTemplate>
<StackPanel ...
0
votes
0answers
12 views
datagrid eval() a base class property
I have a class Client which inherits People. People have a property called CPF which I need Eval this value on my DataGrid when load it. It's simple! But I'm getting the follow error:
...
0
votes
0answers
18 views
ListboxItem Width Causing Listbox Width to Expand
In SL5 I have a panel that the user can expand/contract by clicking and dragging, similar to the functionality of a grid splitter. This functionality is working correctly. In the panel, there is a ...
0
votes
1answer
47 views
Cannot Access DropdownList in EditItemTemplate inside Gridview
My TT.aspx:
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataSourceID="SqlDataSource1" AutoGenerateEditButton="true" OnRowEditing="GridView1_RowEditing" >
...
0
votes
0answers
12 views
Get text of the first textbox item [WP]
I've a WP8 app with a listbox with this ItemTemplate:
<DataTemplate x:Key="ListBoxBlogTemplate">
<Grid x:Name="ListBoxBlogTemplate">
<TextBlock Text="{Binding ...
0
votes
0answers
41 views
Accessing DetailsView fields
I've started creating an online quiz. I am using a DetailsView linked to a sqlDataSource.
Here's my code:
<asp:DetailsView ID="QuestionDetails" runat="server" ...
0
votes
0answers
22 views
DataGrid inside a ComboBox in WPF
I want to place a DataGrid inside a ComboBox. And that ComboBox again inside a DataGrid. The reason behind placing DataGrid is to allow user to Sort records and to display multiple column with header. ...
0
votes
2answers
48 views
Using Eval to Set AutoPostBack Property in ItemTemplate
I am using a RadGrid from Telerik and trying to toggle a RadioButtonList's AutoPostBack property based on a CheckBox elsewhere on the page.
<telerik:RadGrid ID="rg" runat="server" ...
0
votes
2answers
48 views
Binding an action in an itemtemplate to an event
I have listboxitems in a list-box that are being populated dynamically from an observable collection and I'm trying to use a Interaction trigger for the 'Selected' event of the listbox item to launch ...
1
vote
2answers
123 views
What's the difference between ItemTemplate and ItemContainerStyle in a WPF ListBox?
In WPF Listbox, I'm confused with these 2 notions:
ItemTemplate and ItemContainerStyle
Can someone explain me more?
0
votes
1answer
209 views
Metro app: ListView ItemTemplate DataTemplate for selected item
I created a SplitPage view from canned templates that has the following ListView definition:
<!-- Vertical scrolling item list -->
<ListView
x:Name="itemListView"
...
0
votes
0answers
48 views
“Create template failed” error when trying to create an item template for Telerik list box in Windows Phone 7 app?
I have a Telerik RadDataBoundListbox in my Windows Phone 7 app in C#. I want to add an item template for the list items. I do the following in Visual Studio 2012 to do this:
Right-click the list ...
0
votes
2answers
175 views
WPF - Selector - Custom Control - SelectionChanged Event Not Firing
I am new to custom control creation. I have laid some groundwork for a new custom control based on the Selector class. My understanding was that I should use this class since I needed the control to ...
2
votes
1answer
65 views
How to bind to the DataContext of a HierarchicalDataTemplate from its ItemTemplate XAML?
In my WPF TreeView, I have defined a HierarchicalDataTemplate. In its ItemTemplate, there is a button whose Command I need to bind to the parent ViewModel, this is the DataContext of the parent ...
0
votes
0answers
55 views
Disable specific Item in Listbox by data Silverlight (V4)
I want to disable an Item in a Listbox-Control, which has a radio-button in template, by loaded data:
IN XAML:
<Grid>
<StackPanel Orientation="Vertical" ...
0
votes
2answers
120 views
WinJS flipview control and item template
trying to use the FlipView control in WinJS and having some issues. I am able to bind it to a datasource and get the URL/picture property show up in the flipview control content pane but it fails to ...
0
votes
0answers
191 views
Jquery Toggle div show/hide issue in asp.net Item template
I applied following code in HTML and it is working fine. After first click on the (H3) tag heading, description appears and when I click again on (H3) tag heading, description gets disappeared. But ...
0
votes
1answer
329 views
access dropdown selected item inside of gridview
i have a Gridview having a dropdownlit and button. now I want to get selected value of that dropdown list on button click.here is my sample code
<asp:TemplateField>
...
0
votes
0answers
166 views
Manipulating Dynamically created CheckBox TemplateField in ASP.NET
I am trying to create multiple asp gridViews dynamically based on a dynamic data set. Each row of this data set contains a string of values "Foo1, Foo2, Foo3, Foo4". An XML representation of the data ...
0
votes
2answers
138 views
OnSelectedIndexChanged on a GridView's ItemTemplate not firing
I have a GridView with some ItemTemplate and I need to work with the SelectedIndexChanged event... I manually wrote the codes but it's not working... Check it out:
HTML code:
...
0
votes
2answers
86 views
Combine/Concat multiple Evals inside DataList
I am using DataList and in one column I need to display two fields combined, I need the column display as Name1(Name2)
Here is my code:
<asp:DataList ID="dlistDetails" runat="server" ...
0
votes
1answer
191 views
WPF ListBox - using ItemTemplate in GroupStyle
I'm trying to makeaA grouped listbox. Firstly I did a ItemTemplate. Now I'm trying to group the data but I don't have any idea how to use that ItemTemplate. Could anybody help me a little?
My ...
0
votes
2answers
74 views
How can I bind to a parent UIElement within an ItemTemplate?
Im trying to bind to a property of MainWindow, but from a ContextMenu within a datatemplate. How can I achieve this?
I can't use ElementName, as the contextMenu isn't part of the visual tree
I can't ...
0
votes
1answer
37 views
Error when trying to get the value of a itemteplate on a gridview
I have a gridview with only ItemTemplate fields. I have ( DropDownLists, Labels and TextBoxes). I'm getting the values of DropDownLists and TextBoxes perfect... But my Labels are always returning me ...
2
votes
6answers
430 views
Conditional html rendering with ASP.NET
Consider the following code snippet:
<asp:TemplateField HeaderText="Item Data">
<ItemTemplate>
<%# DataBinder.Eval(Container.DataItem, "ItemData1") %>
<br ...
1
vote
1answer
188 views
How to change the item template of list box depending upon the Current Orientation in metro app?
Hi I am developing an metro app , my app works perfectly fine in landscape mode but now i want to make it compatible to Portrait mode also.
This is how i have defined students listbox :-
...
0
votes
0answers
224 views
Set focus to last button clicked in Gridview after Response.Redirect(Request.RawUrl)
I have a button in my gridview
the grid can sometimes have many rows
<asp:TemplateField HeaderText="DDT">
<ItemTemplate>
<asp:Button ID="DdtUnit" ...
0
votes
1answer
160 views
Bind String to CheckBox Checked
I have a gridview which is bound to a dataset loaded at page_load. The data consists of seven fields, three of which are hidden on the grid, the other four visible. The last three columns come from ...
0
votes
0answers
73 views
WPF ItemTemplate=“{DynamicResource Template}” failing
So this is the visual tree of a wpf screen I have created.Now I create a DynamicResourcetemplate and apply it to the 2 highlighted listboxes using : ItemTemplate="{DynamicResource TagDataTemplate}"
...
0
votes
2answers
316 views
Windows Phone 8 more Items in row as template
I'm new in Windows Phone 8 development and I want to create a page with any number of items sorted in two columns as this great image shows.
I was trying to use LongListSelector, but i was able to ...
1
vote
3answers
332 views
Hide button in gridview when field is Null
I have a grid view where some of the rows have attached pictures. when I press Button2 I pull information from the sql record, about which folder on the server that has the pictures.
This works ...
0
votes
1answer
76 views
How to switch back to EditTemplate after an Update to ItemTemplate in a ListView
It have a ListView with LayoutTemplate, ItemTemplate and EditTemplate. The List view only ever shows one item.
The ItemTemplate as an EditButton with CommandName = 'Edit' which when clicked ...
0
votes
1answer
152 views
How do i Style my ComboBox as well as its items in WPF?
I have a ComboBox which i want to style with some custom style. I was successful in providing the required style. In the style i have the following elements :
Template for a toggle button
A pop-up ...
2
votes
1answer
161 views
Is it possible to automatically set “Copy to Output Directory” when creating files in Visual Studio 2010?
I recently started playing around with LuaInterface to get Lua scripting working in my C# programs. In order to easily create Lua scripts from within Visual Studio, I installed a Lua syntax ...
0
votes
2answers
251 views
WPF TreeView ItemTemplate not applied to TreeViewItem
I have a TreeView and manually add two items (TreeViewItem) to it.
And I want to apply ItemTemplate to those two items but it seems like the ItemTemplate is not applied to them. Actually I have deeper ...
0
votes
3answers
110 views
How do I make an image inside a WP7 Pivot TitleTemplate invisible?
I'm working on a WP7 app and when the user rotates to landscape, i'd like to hide an image within the header of the app so the user can see more information.
At the moment, I have the image inside ...
0
votes
2answers
143 views
Load ItemTemplate when add items manually to a TreeView?
I'm creating my nodes (TreeViewItems) manually, I mean in code behind. I'm doing this because I'm loding subitems on demand when is expand and I have to add a dummy node. That's the reason why I'm ...
0
votes
0answers
80 views
Add non-gac assemblies to visual studio project and item template
I have seen the examples of adding references to assemblies from GAC to visual studio 2010 project or item templates. Is it possible to add references to non-GAC assemblies in my custom project or ...
1
vote
1answer
83 views
The Designer throws NullReference Exception
What I need is to set the item frame margin to 10.
The Designer View keep throwing the Exception so I cant proceed.
<phone:Pivot.ItemTemplate>
<DataTemplate>
...
0
votes
1answer
40 views
how to prevent using global DataTemplate without specifiying new one
<DataTemplate DataType="{x:Type MyType}">
...
</DataTemplate>
I have a default DataTemplate for MyType.
want to prevent using it below without having to specify a real DataTemplate
...
2
votes
4answers
512 views
Remove checked items from a listbox in WPF?
I have been working on a checklist application, and I am using a ListBox to display the data.
I am using arrays to populate the ListBox based on what button the user presses.
(I don't know if that's ...
0
votes
1answer
66 views
How to switch out ItemTemplate for a particular TreeViewItem in WPF
In my scenario, I'd like to be able to have a user double-click on an TreeViewItem to 'edit it'. In which case I would like to have that item expand in place (sliding the TreeViewItems below it down, ...
0
votes
0answers
133 views
Display Item Template on Gridview Mouse click
Is it possible (through jQuery or anything else) to display all the sub categories (from database) under the category (when a category is clicked?)
Here is my code up to now which displays all the ...
0
votes
1answer
47 views
Using * sizing in a data template WPF
I am trying to set a * height property in an item template but I keep getting the error
'50*' string cannot be converted to Length.
Im not sure if what Im wanting to do is possible.
Please let ...


