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
20
UltraGridCell Disable Keyboard Press but accept barcode scanner.
posted

Hi there,

I am using a Infragistics.WebUI.UltraWebGrid.UltraGridRow. I want my WIPDataValue cell to not allow any keyboard press but accept bar code scanner only.

I hope you can give me any idea on how can I do that.

Thank you in advance.

Parents
No Data
Reply
  • 1320
    Offline posted

    Hello Niño,

    After investigating this further, I have determined that Ultimate UI for ASP.NET does not provide QrCodeBarcode component. However, what I could suggest is looking up the IgniteUI component: igQRCodeBarcode. More information regarding the igQRCodeBarcode could be found in the following topic of our documentation.

    Additionally, if the cell’s editor should not accept user interaction, a method could be bound to the editor’s client side KeyDown event and the event could be canceled as follows:

    <EditorProviders>

     <ig:TextEditorProvider ID="FruitEditor" EditorControl-ClientEvents-KeyDown="editorKeyDown"></ig:TextEditorProvider>

    </EditorProviders>

    . . .

    <ig:CellEditing>

      <ColumnSettings>

        <ig:EditingColumnSetting ColumnKey="Fruit" EditorID="FruitEditor" />

      </ColumnSettings>

    </ig:CellEditing>

     

    <script>

    function editorKeyDown (sender, eventArgs)

    {

        eventArgs.set_cancel(true);

    }

    </script>

    Please let me know if you need any further information regarding this matter.

    Regards,
    Monika Kirkova,
    Infragistics

Children
No Data