Results 1 to 3 of 3

Thread: ios ActionCreator submit not selecting (ios only)

Threaded View

  1. #1

    ios ActionCreator submit not selecting (ios only)

    edit: i had said below this was ios only, now since the update of the blackberry app (from v5.9 to v6) it has the same bug.

    Hi,
    I have a table single column with text.
    I am not using imagetiles.
    I add a selection action (limit = 1, autosubmit=true) and apply this to each cell.

    so selecting the cell just submits back the coordinates that were clicked. no swapping of images.

    this works great on blackberry, android and windows (evo).

    on iOS I cannot select a cell. why is this? Selections work if I use tiled images, but for my app i dont want that.

    sample code below
    Note: this works so nicely on other platforms, only ios fails

    ITable board = MessageBuilder.Elements.CreateTable(messageToSend. ToDevice, "Board", 4, 1);

    board.Style.Align = AlignmentType.Left;
    board.Mode = TableSendModeType.Replace;

    board[0, 0].Content.Body = "this is block 1";
    board[1, 0].Content.Body = "this is block 2";
    board[2, 0].Content.Body = "this is block 3";
    board[3, 0].Content.Body = "this is block 4";

    BoxStyle bs = new BoxStyle();
    bs.Align = AlignmentType.Left;
    bs.Background = Color.Azure;
    bs.BorderColor = Color.Black;
    bs.Border.Set(1);
    bs.Padding.Set(2);
    board.Col(0).Style = bs;


    ISelectAction correctselectAction = board.ActionCreator.Select(1, true);

    board.SelectionMode = SelectionRectType.Fill;

    board[0, 0].Action = correctselectAction;
    board[1, 0].Action = correctselectAction;
    board[2, 0].Action = correctselectAction;
    board[3, 0].Action = correctselectAction;

    return board;
    EDIT: seems this is a documented bug.
    http://code.mxit.com/forum/showthread.php?t=214

    mxit gurus, any progress on this bug?
    Thanks!
    Last edited by crudler; 25-05-2012 at 08:59 AM. Reason: updated info

Similar Threads

  1. Selecting cells
    By robottoman in forum Markup and Commands
    Replies: 4
    Last Post: 03-02-2011, 03:13 PM
  2. iOS and table auto submit selection
    By DeepFreez in forum Bugs
    Replies: 4
    Last Post: 19-01-2011, 06:14 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts