Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
296 views

Web controls lifecycle problems: A page, a grid and a dialog (containing a dynamic control whose type depends on the selected row in the grid)

I have a web page with a GridView. The GridView contains a list of Question objects. Each Question has a QuestionType. When the user clicks on the Question control, an Ajax modal popup appears ...
0
votes
1answer
11 views

Nested controls in LinkButton not clickable

I am working on a Composite custom control. In said control, I am inheriting from LinkButton. In this LinkButton, I am nesting a Label Control and 5 Image controls. I am able to render everything ...
0
votes
2answers
56 views

How to handle WPF event in MVVM for nested controls in a Window

FINAL NOTE Final solution found in another post Although I appreciated the clarification that was provided, the ultimate solution was in-fact provided by another solution as linked above. No matter ...
0
votes
0answers
36 views

outer buttons's CanExecute Property set to false disables the inner button also

As everybody knows when you bind a command (relay command) to a button the "CanExecute" Property of the command -if set to false- makes the button unclickable and changes its face to a grey button ...
0
votes
1answer
664 views

Getting textbox value inside a Detailsview control

I have a DetailsView control with a template field as follows: <asp:TemplateField SortExpression="Title"> <ItemTemplate> <asp:TextBox ID="txtMessageTitle" Text='<%# ...
0
votes
1answer
618 views

How do I: Implement a n-level nested gridview?

I am not the gratest when it comes to implementing UX. I looked around on the internet for an implementation of a nested gridview or nested reapeater control. Most of the demos used an sql datasource ...
0
votes
1answer
230 views

How can I access the parent datasource in data expression syntax in Asp.net?

I have a Repeater inside the TemplateField for a GridView. GridView is bound to datasource1 and the repeater to datasource2. How can i access datasource1 from the ItemTemplate of repeater in data ...