Giter VIP home page Giter VIP logo

Comments (2)

ocornut avatar ocornut commented on July 17, 2024 1

The goal is to save the user's column sorting preference so that the next time the window is opened, the table is already sorted according to their last selection.

If that's the goal, you have nothing to do as this should already be saved in imgui.ini.
If it's not saved, you have another problem and you should investigate this precise problem, maybe by crafting a repro.

To answer the question, the function to call in imgui_internal.h is TableSetColumnSortDirection():

void TableSetColumnSortDirection(int column_n, ImGuiSortDirection sort_direction, bool append_to_sort_specs);

By setting append_to_sort_specs = false you can clear existing specs and replace this with the new one.
HOWEVER, as per your statement, I don't think you should call this. You should instead aim to understand why your data isn't saved, because lack of save will come with other issues
.

from imgui.

k-poppe avatar k-poppe commented on July 17, 2024

Thank you for pointing that out, Omar! The problem was with the ID stack, each time a new table key was being saved in the imgui.ini file, at first I tried various things (e.g. adding ##/### id in BeginTable, adding PushID/PushOverrideID), but nothing worked as the issue was with the incorrect value being used in PushID way before that table code snippet.

from imgui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.