Skip to content

Settings and activity

117 results found

  1. 2 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    Please start a topic in our official Community to get assistance: https://community.onlyoffice.com/

  2. 1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    Please start a discussion of faced issue in our Community: https://community.onlyoffice.com/

  3. 1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    Please start a topic in our Community to get assistance: https://community.onlyoffice.com/

  4. 3 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    Please specify where exactly do you use relative paths in the app. Additionally, please elaborate on the suggestion to implement folder support - do you refer to the possibility to attach folders in a document?

  5. 1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    Do I understand correctly that you suggest adding an option to share a file via email?

  6. 1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    You suggestion corresponds to implementing the future that allows inserting copied cells and shifting others. We will consider this feature over suggested approach. Thank you for understanding.

  7. 1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    This standard comes from the fact the the table expands to the right and to the bottom, this inserting rows and columns to the left and above allows adding them above topmost available cell A1. Have you encountered a processor that allows inserting in other directions?

  8. 1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    Interesting concept for a function. I must mention that you can create and use custom functions in the spreadsheet editor. For you particular case, you can use, for instance, something like that:
    (function () {
    /**
    * Function that calculates only numbers in specified range
    * @customfunction
    * @param {string[][]} range Range of cells
    * @returns {number} total Total of numbers in range
    */
    function SUMELM(range) {
    let total = 0;
    range.forEach(cell => {
    cell.forEach(value => {
    var thenum = value.match(/\d/g);
    thenum = thenum.join("");
    thenum = Number(thenum);
    total += thenum;
    })
    })
    return total;
    }
    Api.AddCustomFunction(SUMELM);
    })();

    Adding =SUMELM(@A1:B1) for the cells that contain mixed values, e.g. "V25", "25 Kg", etc., will calculate only numbers, the result will be 50.
    Please note that using this function without @ in range will produce a spilled array, use @ to keep the result in a single cell.

    You can find more information on how to add or create custom functions in this article: https://www.onlyoffice.com/blog/2024/07/introducing-custom-functions-for-onlyoffice-macros

    We will keep the suggestion open for any users that might be interested in such feature too.

  9. 1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    As far as I'm concerned, Page Borders are printable and usually do not provide an option to set them as non-printing borders. Have you encountered a processor that allows setting up a page border that way? If so, please name any.

  10. 1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    Have you encountered a processor that provides the option "This point forward" specifically? If so, please name any.

  11. 1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    Please clarify your suggestion. Do you suggest adding named cloud storages as cloud options for Desktop Editors or you are looking for a connector to integrate Docs with them?

  12. 2 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    Please note that the official language of this resource is English.

    Do you use an external keyboard connected via Bluetooth?

    If you do, then this behavior is most certainly a bug. You should report it in our official Community: https://community.onlyoffice.com/

  13. 3 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    Is it possible to share any references of the interface? Since your suggestion implies revamping printing preview interface, we are interested to see your vision of it.

  14. 3 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    You cannot change an array, thus it is not clear what is meant by "add a new row". If a row is added right after the array it does not count as a part of it, just like in other processors.

    As a workaround, you can simply select previous array with new cells and use CTRL+SHIFT+Enter two times again to "expand" the array.

    If I'm mistaken, please share any references for better understanding.

  15. 3 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    You can add necessary language by yourself. I will leave this idea open for the users who come across the same requirement.

    You need to locate the AI plugin folder on your device: from the root directory installation of Desktop Editors go to editors\sdkjs-plugins\{9DC93CDB-B576-4F0C-B55E-FCC9C48DD007} and open summarization.js file with any text editor.

    Find the array that defines the list of languages for summarization: https://github.com/ONLYOFFICE/onlyoffice.github.io/blob/master/sdkjs-plugins/content/ai/scripts/summarization.js#L61

    For instance, for Thai language you can add a line like that:
    { nameEn: 'Thai', nameLocale: 'Thai', value: 'th-Th'}

    Save the change and restart Desktop Editors. After that your language will appear in the summarization window of the plugin and will return results in this language too (unless content is incorrect).

    I hope it helps.

  16. 2 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    Your suggestion seems to be referring to Page Layout option suggested here: https://feedback.onlyoffice.com/forums/966080/suggestions/50910617

    Check it out and let me know if this is what you are looking for.

  17. 2 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    To make ideas trackable, please submit the second idea separately. I have changed the title of this idea according to the description of first suggestion.

    Thank you for the understanding.

  18. 1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    Please elaborate on your suggestion. Do you suggest adding an option to set document background as an image? If it is not the case, please provide any additional details.

  19. 1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    When grabbing any of the named items a guideline appears. Do you suggest adding specific setting or visual markers? If so, please share any references for better understanding of your idea.

    Thank you.

  20. 1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    An error occurred while saving the comment
    AdminConstantine (Admin, ONLYOFFICE) commented  · 

    There is no such setting, because many apps are opened directly from a folder with the file by clicking on a file itself. Do you know any apps that allow customizing open window?

← Previous 1 3 4 5 6