Form field/button order #42
Labels
No Label
Bug
Feature
Maintainability
Security
UX/UI
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: phryk/pdnew#42
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fields and buttons currently aren't easily re-orderable.
We'll want an
order
attribute inElementContainer
that's a list of keys, automatically updated by__setitem__
,__delitem__
and friends.Additionally, one or more functions to easily change the order (
setpos(key, pos)
?).Has to be honored by
__iter__
,.keys
and maybe some other functions.Also, probably want to move logic for
_ordered
and_pending_render
intoElementContainer
and add__contains__
as well.