Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
645
a calendar in column date igGrid
posted

Hi,

I'm working to igGrid. I have a column type date and I have a question.

could make a calendar to edit a column of type date?

Thanks in advance.

Best regards.

Parents
No Data
Reply
  • 23953
    Verified Answer
    Offline posted

    Hi nitaGM,
    You can have date picker for column editor.
    Here is an example code which shows how to enable it:


    {
        name: 'Updating',
        columnSettings: [
            {
                columnKey: "OrderDate",
                editorType: "datepicker"
            }
        ]
    }

    For more details you can look at the Editing Client Validation sample.

    Best regards,
    Martin Pavlov
    Infragistics, Inc.

Children