Hi,
I have an UltraWinGrid on my APP that has a cell with a DropDownCalendar Style.
When I pick a date, it shows the date on the cell on the format, p. e., 19/09/2012. I save the value and I open my APP again and it shows "19092012".
I've tried to set the value on the INitializeLayout event with this code:
DateTime dt = Convert.ToDateTime(el.New); row.Cells["Value"].SetValue(dt, false);
DateTime dt = Convert.ToDateTime(el.New);
string date;
date = dt.Day + "/" + dt.Month + "/" + dt.Year;row.Cells["Value"].SetValue(date, false);
But, it doesn't worked.
Can you help me? Thank you.
Best regards,
Maria
I don't find this assembly on my machine.
This is the only way to do this?
Thank you,
Hello Maria,
I am checking about the progress of this issue. Please let me know If you need any further assistance on this.
You should add a reference in your project, pointing this assembly - Infragistics2.Win.UltraWinMaskedEdit.v12.1.
Then you could access the control class by: Infragistics.Win.UltraWinMaskedEdit.
So, creating an object from that should look like this:
Infragistics.Win.UltraWinMaskedEdit maskedEdit = new Infragistics.Win.UltraWinMaskedEdit();
Please feel free to let me know if a question about our toolset comes up on your mind.
I've read the discussion but I have a several doubts. I don't find the component ultraMaskedEdit.
Can you please explain me how to set a Cell InputMask ?
Thank you.
Hello,
Please take a look at the following link: http://es.infragistics.com/community/forums/t/57358.aspx.