Grid textbox input text not selected with mouse
Thanks for contacting Syncfusion support.
We created a sample in Angular JS with MVC. After adding new data, we inserted a record in the Textbox of Grid’s first record. We can select an input text of Textbox using mouse.
Please find the following screenshot,
Please confirm the following details,
Please find the sample from the following link:
Link: https://www.syncfusion.com/downloads/support/forum/120207/ze/ServerOperations-489100821
Please try the above sample, If you face the same issue still, please get back to us with the code example.
Regards,
Prasanna Kumar N.S.V
Attachment: Essential_Studio_for_JavaScript__Inline_on_Local_data_d58dc364.zip
Hi Greg,
We have checked the provided sample and suggest you to set the enableTouchScroll property as false to select text in textbox using Mouse in Grid scrollSettings.
Please refer to the modified JS playground link and code example as follows,
https://jsplayground.syncfusion.com/gzyihqkk
|
$("#Grid").ejGrid({ // the datasource "window.gridData" is referred from jsondata.min.js dataSource: window.gridData, scrollSettings: { width: 886, height: 300, enableTouchScroll: false }, allowScrolling: true, editSettings: { allowEditing: true, allowAdding: true, allowDeleting: true },
. . . .
}); |
Please try using the above code example and get back to us if you need any further assistance.
Regards,
Balaji Marimuthu
Attachment: SelectionIssues_e449e0a8.zip
We have tried with JSPlayground sample in Chrome browser but we are unable to reproduce the mentioned issue at our end.
We have recorded a video to select text from an input textbox and find the video from the following link,
Video Link: http://www.syncfusion.com/downloads/support/forum/120207/ze/Video1539855728
Please share the following details.
Regards,
Prasanna Kumar N.S.V
In the provided sample, you have not disabled the enableTouchScroll property in the scrollSettings. So, set the enableTouchScroll property as false in scrollSettings.
Please find the code example and modified sample:
|
$(function () { $("#Grid").ejGrid({ // the datasource "window.gridData" is referred from jsondata.min.js dataSource: window.gridData, scrollSettings: { width: 886, height: 300, enableTouchScroll: false }, allowScrolling: true, editSettings: { allowEditing: true, allowAdding: true, allowDeleting: true }, toolbarSettings: { showToolbar: true, toolbarItems: [ej.Grid.ToolBarItems.Add, ej.Grid.ToolBarItems.Edit, ej.Grid.ToolBarItems.Delete, ej.Grid.ToolBarItems.Update, ej.Grid.ToolBarItems.Cancel] }, columns: [ { field: "OrderID", isPrimaryKey: true, headerText: "Order ID", textAlign: ej.TextAlign.Right, validationRules: { required: true, number: true }, width: 90 }, { field: "CustomerID", headerText: 'Customer ID', validationRules: { required: true, minlength: 3 }, width: 90 }, ---------------------------------------------------------------------------------------------------------------------------------------------- ] }); $("#selection").ejDropDownList({ width: "120px", change: "onSelectionTypeChange", selectedItemIndex: 0 }); }); |
Sample: http://jsplayground.syncfusion.com/gbv4zugs
Regards,
Prasanna Kumar N.S.V
Attachment: NotSelecting_ad2cc4f2.zip
Hi Greg,
We have tried with the mentioned version by disabling the enableTouchScroll property, we are able to select the input text with the mouse. Also, we tried with the older versions but we unable to reproduce the issue at our end. So, we request you to setup a web meeting to look into it and provide the resolution.
A support incident has been created under your account to resolve the issue. Please log on to our support website to check for further updates.
https://www.syncfusion.com/account/login?ReturnUrl=/support/directtrac/incidents
Regards,
Prasanna Kumar N.S.V
- 10 Replies
- 4 Participants
-
BB Bharat Buddhadev
- Sep 10, 2015 01:30 PM UTC
- Oct 26, 2015 11:25 AM UTC