How to delete Line in the datagrid?

Zam

I need to remove first three lines from the datagrid group "DFP" and remaining lines comes in the place of 1st 2nd and third respectively.

put the dgHilitedLines of group "DFP"  into theLine
   DeleteLine theLine

I used the above code, but its shows the following error

button "Pass": execution error at line 22 (Handler: can't find handler) near "DeleteLine", char 1

MaxV

Daatgrids have more properties than normal controls, see: http://livecode.wikia.com/wiki/Datagrid_API

I suggest you to use the dgText property, like the following code:

put the dgText of group "DFP" into temp
delete line 1 to 2 of temp
set the dgText of group "DFP" to temp

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事

分類Dev

How do I clear/delete the current line in terminal?

分類Dev

How to delete many line (serial) in text file using PHP?

分類Dev

Notepad ++ How to delete new line after a specific character?

分類Dev

How to delete only first ocurrence of line without "}" in Powershell?

分類Dev

How to delete a pattern matching and the rest of the line in a file using Perl

分類Dev

C# WPF: DataGrid, Delete selected row

分類Dev

NotePad++ : How to delete a line ( also the next line) that contains a specific word?

分類Dev

Python; How do we copy a random line in a txt file and delete the same line?

分類Dev

How can I delete the last word in the current line, but only if a pattern occurs on the next line?

分類Dev

Delete line if content is present on the next line too

分類Dev

SIMPLE Delete line from cell?

分類Dev

Cannot delete a datagrid row and save the remaining rows back in database

分類Dev

How to delete non text characters, new line, tab, etc, from params of JSON string

分類Dev

how to delete the last line in a text file with 100M lines without having to rewrite the whole file?

分類Dev

How to match a pattern, delete the pattern and also the next and the previous line on Solaris 10

分類Dev

Getting exception when trying to delete a line from a text file. How can i solve it?

分類Dev

how to add space between edit and delete class in php something line (&nbsp)

分類Dev

QTextEdit delete whole line at given position

分類Dev

delete everything but the pattern and the next line vim

分類Dev

Find a line which starts with a term and delete it

分類Dev

Delete locked file/folder from command line

分類Dev

Delete duplicate word in a line using a regular expression

分類Dev

Bash sed delete line from file not working

分類Dev

Using "sed" to delete a line containing something and the next line

分類Dev

Delete the line prior to the line containing the search pattern using linux command

分類Dev

How to specify GroupDescriptions in XAML for a custom DataGrid control?

分類Dev

How to enable a specific button on a specific row of a datagrid

分類Dev

How to get the DataGridTextColumn sender's datagrid parent

分類Dev

How change font color of Hyperlink in DataGrid

Related 関連記事

  1. 1

    How do I clear/delete the current line in terminal?

  2. 2

    How to delete many line (serial) in text file using PHP?

  3. 3

    Notepad ++ How to delete new line after a specific character?

  4. 4

    How to delete only first ocurrence of line without "}" in Powershell?

  5. 5

    How to delete a pattern matching and the rest of the line in a file using Perl

  6. 6

    C# WPF: DataGrid, Delete selected row

  7. 7

    NotePad++ : How to delete a line ( also the next line) that contains a specific word?

  8. 8

    Python; How do we copy a random line in a txt file and delete the same line?

  9. 9

    How can I delete the last word in the current line, but only if a pattern occurs on the next line?

  10. 10

    Delete line if content is present on the next line too

  11. 11

    SIMPLE Delete line from cell?

  12. 12

    Cannot delete a datagrid row and save the remaining rows back in database

  13. 13

    How to delete non text characters, new line, tab, etc, from params of JSON string

  14. 14

    how to delete the last line in a text file with 100M lines without having to rewrite the whole file?

  15. 15

    How to match a pattern, delete the pattern and also the next and the previous line on Solaris 10

  16. 16

    Getting exception when trying to delete a line from a text file. How can i solve it?

  17. 17

    how to add space between edit and delete class in php something line (&nbsp)

  18. 18

    QTextEdit delete whole line at given position

  19. 19

    delete everything but the pattern and the next line vim

  20. 20

    Find a line which starts with a term and delete it

  21. 21

    Delete locked file/folder from command line

  22. 22

    Delete duplicate word in a line using a regular expression

  23. 23

    Bash sed delete line from file not working

  24. 24

    Using "sed" to delete a line containing something and the next line

  25. 25

    Delete the line prior to the line containing the search pattern using linux command

  26. 26

    How to specify GroupDescriptions in XAML for a custom DataGrid control?

  27. 27

    How to enable a specific button on a specific row of a datagrid

  28. 28

    How to get the DataGridTextColumn sender's datagrid parent

  29. 29

    How change font color of Hyperlink in DataGrid

ホットタグ

アーカイブ