Hi Everyone
As the title, I whan to limit maxLength of TextColumn when it can be input.
How can I achieve this.
Regards,
Hi Tom,
For the mentioned requirement, one of the approach is to..
JS Snippet:
Approach 1:
OutSystems.GridAPI.ColumnManager.GetColumnById($parameters.ColumnId).provider.maxLength = $parameters.ColumnMaxLength;
Approach 2:
OutSystems.GridAPI.GridManager.GetGridById($parameters.GridId).provider.columns.getColumn($parameters.ColumnBinding)._maxLen = $parameters.ColumnMaxLength;
I hope this helps you!
Kind regards,
Benjith Sam
Hi @Benjith Sam
Thanks, It works for me.
Sorry, I have another question. I want to add a row duplicate from the selected row, how can I do this?
Best Regards,