Click here to Skip to main content
15,883,959 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Get specific text inside a web table (webbrowser control) Pin
Richard MacCutchan10-Dec-14 1:00
mveRichard MacCutchan10-Dec-14 1:00 
Questionfinding all instances of exchange server on LAN Pin
JSingh_Freelancer8-Dec-14 7:48
JSingh_Freelancer8-Dec-14 7:48 
GeneralRe: finding all instances of exchange server on LAN Pin
PIEBALDconsult8-Dec-14 7:56
mvePIEBALDconsult8-Dec-14 7:56 
GeneralRe: finding all instances of exchange server on LAN Pin
JSingh_Freelancer9-Dec-14 8:57
JSingh_Freelancer9-Dec-14 8:57 
AnswerRe: finding all instances of exchange server on LAN Pin
Eddy Vluggen8-Dec-14 8:11
professionalEddy Vluggen8-Dec-14 8:11 
QuestionAsp.Net Pin
Hems0017-Dec-14 23:33
Hems0017-Dec-14 23:33 
GeneralRe: Asp.Net Pin
Kornfeld Eliyahu Peter7-Dec-14 23:47
professionalKornfeld Eliyahu Peter7-Dec-14 23:47 
Questionvalidate combobox does not work Pin
Paolo Mazzon7-Dec-14 19:40
Paolo Mazzon7-Dec-14 19:40 
XML
Hello I have a combobox binding to a ObservableCollection of a table, where I fetch the ID field that deposit in another table, so everything is right, the problem arises when I want my ValidatesOnNotifyDataErrors doing its job, but it does the property in question is set to [Required] will post the code I hope you can help out:

Combobox:

<pre lang="xml"><ComboBox HorizontalAlignment="Left" Margin="327,116,0,0" VerticalAlignment="Top" Width="120" ItemsSource="{Binding NegozioObser}" SelectedItem="{Binding NegozioSelezionato, ValidatesOnNotifyDataErrors=True}">
                <ComboBox.ItemTemplate>
				<DataTemplate>
					<Grid>
						<TextBlock Text="{Binding RagioneSociale}"/>
					</Grid>
				</DataTemplate>
			</ComboBox.ItemTemplate>
		</ComboBox>


property destination in the table Envelope:

[Required]
        
        public int NegozioID 
        {
            get { return _NegozioID; }
            set { _NegozioID = value; RaisePropertyChanged("NegozioID"); }
        }



withdrawal from the property NegozioID table Shop through this ObservableCollections:

C#
ObservableCollection<Negozio> _Negozios;

        public ObservableCollection<Negozio> NegozioObser
        {
            get { return _Negozios; }
            set
            {
                _Negozios = value;
                RaisePropertyChanged("NegozioObser");
            }
        }

AnswerRe: validate combobox does not work Pin
Richard Deeming9-Dec-14 1:41
mveRichard Deeming9-Dec-14 1:41 
GeneralRe: validate combobox does not work Pin
Paolo Mazzon9-Dec-14 6:07
Paolo Mazzon9-Dec-14 6:07 
GeneralRe: validate combobox does not work Pin
Richard Deeming9-Dec-14 6:46
mveRichard Deeming9-Dec-14 6:46 
Answer.NET Framework Pin
Member 1130322611-Dec-14 22:52
Member 1130322611-Dec-14 22:52 
QuestionManipulate data Pin
Member 111616257-Dec-14 3:57
Member 111616257-Dec-14 3:57 
AnswerRe: Manipulate data Pin
Peter Leow7-Dec-14 4:07
professionalPeter Leow7-Dec-14 4:07 
Questiongenerate code automatically Pin
Paolo Mazzon5-Dec-14 18:52
Paolo Mazzon5-Dec-14 18:52 
AnswerRe: generate code automatically Pin
PIEBALDconsult5-Dec-14 19:06
mvePIEBALDconsult5-Dec-14 19:06 
GeneralRe: generate code automatically Pin
Paolo Mazzon5-Dec-14 20:03
Paolo Mazzon5-Dec-14 20:03 
AnswerRe: generate code automatically Pin
Alan Balkany10-Dec-14 7:03
Alan Balkany10-Dec-14 7:03 
GeneralRe: generate code automatically Pin
Paolo Mazzon10-Dec-14 7:33
Paolo Mazzon10-Dec-14 7:33 
QuestionAdo.net Question Pin
Member 111616252-Dec-14 17:07
Member 111616252-Dec-14 17:07 
AnswerRe: Ado.net Question Pin
Kornfeld Eliyahu Peter2-Dec-14 20:18
professionalKornfeld Eliyahu Peter2-Dec-14 20:18 
AnswerRe: Ado.net Question Pin
Richard MacCutchan2-Dec-14 21:45
mveRichard MacCutchan2-Dec-14 21:45 
GeneralRe: Ado.net Question Pin
Member 111616253-Dec-14 19:20
Member 111616253-Dec-14 19:20 
AnswerRe: Ado.net Question Pin
Pete O'Hanlon2-Dec-14 22:00
mvePete O'Hanlon2-Dec-14 22:00 
QuestionAdo.net Pin
Member 111616252-Dec-14 3:21
Member 111616252-Dec-14 3:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.