Advanced Forum Search Results
-
Well, I did move a lot of the logic to the selection changed event, and that helped some - but it's still not exactly what they were after. Now, you have to click the grid to select it, which in turn closes the autocomplete's dropdown - then click again to select the row you wanted. Not an ideal solution, but from here on ...
-
Several companies like infragistics, component one, and telerik have components with masked edit controls, I think. Other than that, how you check for improper input depends a lot on the requirements - whether you need to check the input as it happens, or all validations at once prior to submitting. I'd do some research into ...
-
[quote user="133794m3r"]
If (Lvl*5) > (Vit+Str+Int+Dex)
Simulator.Content = "woops"
else
Simulator.Content = "not working"
end if[/quote]
Should be:If (Lvl*5) > (Vit+Str+Int+Dex) Then Simulator.Content = "woops"
else
Simulator.Content = "not ...
-
LOL - okay, that's a new one on me. That's exactly the behavior I need - but without having to hold down the CTRL key.
-
I get what you're saying with the complexity when dealing with a datagrid that is used as it is designed - but unfortunately, I'm working on a project for a state government agency, and their requirements often don't make sense. (Which is one reason why I have a new contract starting Monday). Basically, they have had ...
-
How could a person go about making the row details on a Silverlight 3 Datagrid 'toggle'?
Basically, clicking on the row would show the details, clicking on it again would close the details.
I have to use the built-in controls also, so a 3rd party datagrid won't do.
-
You might be able to get some info from the guys who put together this app:
http://channel9.msdn.com/posts/AdamKinney/US-Army-using-Silverlight-for-Resourcing-Troops/
-
Well, when we started this app over a year ago, Silverlight 3 wasn't out yet, and the DataGrid was a bit buggy - if I remember correctly, what we wanted to do did not function properly, whether that was the fault of the control, our misunderstanding of a new technology, or problems integrating with the devart oracle plug-in to get our ...
-
Sure - the event procedure is the autocomplete's selection changed :
Private Sub TradeNameACB_SelectionChanged(ByVal sender As Object, ByVal e As System.Windows.Controls.SelectionChangedEventArgs) Handles TradeNameACB.SelectionChanged
If Not TradeNameACB.SelectedItem Is ...
-
I'm having an odd problem when using a datagrid in conjunction with an autocomplete box in Silverlight 3. The two form a master-detail relationship, but it seems that depending on how the autocomplete is manipulated, it can interfere with the datagrid's selected item property. Here's an example of what is going on:
Now ...