Hello,
I'm trying to implement the validation on some of my Xamgrid fields, I am using the INotifyDataErrorInfo on the objects that needs to be validated.
When I use a XamMaskedInput as the editor for my data (a simpel string) the Validation Tooltip is correctly shown :
But I do not need a XammaskedInput in this field, so I decided to pu a simple XamtextEditor and the tooltip doesn't show up anymore (but the border of the control remains red) :
How can I manage to get the same bahavior than the XamMaskedInput ??
Thanks
Hello PEO-Stokomani,
While you are correct that the XamTextEditor does not provide the "Uppercase" property or any other character casing related properties, there is still something you can implement on the XamTextEditor to get the values to appear as uppercase. I would recommend that you look into the ValueToDisplayTextConverter property. If you create an IValueConverter class and place the following code in its Convert method, I believe you will be able to convert your value to be uppercase by applying this converter to the XamTextEditor's ValueToDisplayTextConverter property:
if(value is string){ return ((string)value).toUpper();}
Please let me know if you have any other questions or concerns on this matter.
Sincerely,AndrewAssociate DeveloperInfragistics Inc.www.infragistics.com/support
Hi,
In fact, I need special behaviors and/or command bindings in many of my text columns.
So the templateColumn is perfect for that, and with a XamMaskedInput or a XamtextEditor I can do whatever I want.
Is is not a simple string value in edit/display mode.
But I will perhaps put a Simpel TextBox because XamtextEditor doesn't seem to provide and "Upeprcase" property in order to force uppercase.
;-)
I have been looking further into this, and I have reproduced this behavior you are referring to. After a bit more research though, I'm not entirely sure why you are changing the editor of a particular column in the XamGrid to a XamMaskedInput if you are looking to have a text column in the XamGrid. It appears that I was mistaken in my claim in my original response that the XamMaskedInput works as the text editor of the shared inputs family of controls. It actually appears that this is not correct, and the XamGrid uses a simple text box to edit the columns that have a string type. The tooltip that I had directed you to also belongs to the default template of the XamGrid, and so if something goes wrong in your class that is implementing INotifyDataErrorInfo, you should still see this tooltip that you are looking for, without the need to change the editor. I found another forum thread that explains this in further detail as well, and I believe it may help you on this matter: http://es.infragistics.com/community/forums/t/59834.aspx.
Is there any particular reason you were looking to change the editor type on the XamGrid column in this case?
I Have tried to put a XamMaskedInput in a sample project and it appears to be really blocked a 65 characters.
If there is no workaround possible I will fall back to the XamTextEditor with a style for tooltip copied from infragistics default's styles.
Regards
Hi I have put the XamMaskedInput, with the PromptChar set to an empty string I am able to type some text like a simple TextBox.
Thus, the length is still locked to 65 characters in the input, in spite of the configuration that does not declare any restroctions :
<ig:XamMaskedInput Text="{Binding ShortLabel.Value,Mode=TwoWay}" PromptChar=""/>