search for: currentrow

Displaying 5 results from an estimated 5 matches for "currentrow".

2009 Oct 27
1
Storage admin patches
This set of patches supercedes the previous set, and has been rebased with changes from upstream.
2009 Nov 09
1
Rebased again...
This patch again rebases on upstream and should apply on next as of right now.
2009 Oct 14
0
[PATCH node] Provides a new storage administration system to the managed node.
...self.__source_path = Entry(50, self.__config.get_source_path()) + rows += 1 + if self.__config.needs_build_pool(): + self.__build_pool = Checkbox("Build Pool", self.__config.get_build_pool()) + rows += 1 + grid = Grid(2, rows) + currentrow = 0 + if self.__config.needs_target_path(): + grid.setField(Label("Target Path:"), 0, currentrow, anchorRight = 1) + grid.setField(self.__target_path, 1, currentrow, anchorLeft = 1) + currentrow += 1 + if self.__config.needs_format(): +...
2009 Oct 21
1
Storage administration and refactoring of domain admin
This pair of patches provide a new storage admin interface. Then, on top of that, it refactors the domain administration pieces to now properly use storage pools and volumes when defining a new VM.
2010 Mar 17
0
getting text being entered into an FXTable cell
...FXTable widget, and when the contents of a cell is being edited, I want to anticipate what the user wishes to enter (by matching the text with a previous entry), and present that for completion. (This is similar to how Excel works.) I''ve attempted to do this by using the FXTable getItem(currentRow, currentColumn).text method when a SEL_KEYRELEASE message is received, but this gets the previous text of the cell, rather than the text that is currently being entered. I could of course collect the keys pressed in response to SEL_KEYRELEASE in a private buffer, but this would mean I would have t...