Hi Yoab
Greetings from Syncfusion support.
Based on your query you need to increase the width of the edit dialog popup in the grid with default grid properties.
By default in EJ2 Grid edit dialog mode we render the EJ2 Dialog in the source level, so it is not possible to increase the size of the dialog popup with default grid properties. To achieve your requirement, we suggest to use the EJ2 grid actionComplete event.
The actionComplete event is triggered you can able to acquire the EJ2 Dialog instance in the arguments. Using dialog instance you can able to modify the width of the edit dialog popup. Please refer the below code example and sample
Code example:
|
<script>
function actionComplete(args) {
if (args.requestType === "beginEdit") {
args.dialog.width = "700px";
}
}
</script> |
Regards
Vignesh Sivagnanam