ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Kanban functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Moves a card in a Kanban control.
Example
// Moves the first card in the LIST_To_Review Kanban list
// to the end of the list
Card1 is kbCard <- LIST_To_Review.Card[1]
KanbanMoveCard(KANBAN_MyKanban, Card1, LIST_To_Review.Card.Count)
 
// Moves the first card in LIST_To_Review to another list
Card2 is kbCard <- LIST_To_Review.Card[1]
KanbanMoveCard(KANBAN_MyKanban, Card2, LIST_Done)
Syntax

Moving a card to a specific position within the same Kanban list Hide the details

<Result> = KanbanMoveCard(<Kanban control> , <Card> , <Position>)
<Result>: Boolean
  • True if the card is moved,
  • False otherwise.
<Kanban control>: Control name
Name of the Kanban control to be used.
<Card>: kbCard variable
Name of the kbCard variable corresponding to the card to be moved.
<Position>: Integer
New card index in the Kanban list. The card moves up or down in the list.

Moving a card to a specific position in another Kanban list Hide the details

<Result> = KanbanMoveCard(<Kanban control> , <Card> , <Kanban list> [, <Position>])
<Result>: Boolean
  • True if the card is moved,
  • False otherwise.
<Kanban control>: Control name
Name of the Kanban control to be used.
<Card>: kbCard variable
Name of the kbCard variable corresponding to the card to be moved.
<Kanban list>: Control name
Name of the Kanban list to which the card is to be moved.
<Position>: Optional integer
New card index. If this parameter is not specified, the card is positioned at the end of the specified Kanban list.
Business / UI classification: UI Code
Component: wd290obj.dll
Minimum version required
  • Version 28
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/09/2023

Send a report | Local help