We have upgraded to version 25.7. Could you please share the JavaScript code snippets required to implement the following tickets in our code?
- CELLSGRIDJS-1714
- CELLSGRIDJS-1715
Additionally, we have a query regarding Aspose error popups. These errors are triggered when clicking on read-only cells, but we would prefer not to show such alerts to users.
Is there a way to suppress or hide all Aspose-related error popups using JavaScript?
Looking forward to your guidance
@parthiveera
If the cells are read-only and no error popups, users will be confused too. They would be puzzled why they cannot edit.
I think we can provide a property to hide all error if you insist.
yes. can you provide a property to hide all error?. and Could you please share the JavaScript code snippets required to implement the following tickets in our code?
- CELLSGRIDJS-1714
- CELLSGRIDJS-1715
@parthiveera
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.
Issue ID(s): CELLSGRIDJS-1793
You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.
@parthiveera
please refer to the below doc guide :
to set readonly/editable range
you can use :
xs.sheet.setEditableRange(range,isenable)
// the parameters are:
range:the cell range ,etc. {sri:0,sci:0,eri:2:eci:2} reprensents range start from cell A1 to C3
isenable:when set to true,the range is editable.other wise,the range is readonly.
to disable the display of statics :
you can set the showBottombarStats in loadoptions to be false.