Bootstrap-Table | CRUD - create, read, update, and delete
https://mybergland.com/fwforum/crud%20dbf.pdf
Best regards,
Otto
Table | CRUD - create, read, update, and delete
Table | CRUD - create, read, update, and delete
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
Re: Table | CRUD - create, read, update, and delete
Hello friends,
everything works fine and the source code is easy to understand and clear.
I think switching to bootstrap-table was a good step.
I now do the updates for CRUD in 2 steps:
1. I send the request with Ajax and update the DBF file and
2. I use the Bootstrap function to update the table in the browser.
How do you do that or how is it done in TWeb?
Best regards,
Otto
everything works fine and the source code is easy to understand and clear.
I think switching to bootstrap-table was a good step.
I now do the updates for CRUD in 2 steps:
1. I send the request with Ajax and update the DBF file and
Code: Select all
function main()
local hPairs := AP_Body()
local hdata := {=>}
local hPost
local nRecNo := 0
cLog := ValToChar( hPairs ) + CRLF
MEMOWRIT("c:\www\htdocs\ajaxTableCRUD_DBF\log.log" , cLog, .f. )
hb_jsondecode( AP_Body(), @hPost )
cLog += valtype( hPost ) + CRLF
cLog += hPost["id"] + CRLF
cLog += hPost["name"] + CRLF
cLog += hPost["kategorie"] + CRLF
cLog += hPost["request"] + CRLF
MEMOWRIT("c:\www\htdocs\ajaxTableCRUD_DBF\log.log" , cLog, .f. )
USE ( hb_GetEnv( "PRGPATH" ) + "/data/mylinks.dbf" ) ALIAS "data" SHARED
if hPost["request"] = "append"
APPEND BLANK
nRecNo := recno()
else
GOTO VAL( hPost["id"] )
endif
if hPost["request"] = "delete"
dbRLock()
dbDelete()
dbUnlock()
cLog += "delete" + CRLF
cLog += str(recno())
MEMOWRIT("c:\www\htdocs\ajaxTableCRUD_DBF\log.log" , cLog, .f. )
else
dbRLock()
field->descript := ( rtrim( hPost["name"] ) )
field->text := ( rtrim( hPost["kategorie"] ) )
dbUnlock()
endif
hdata['array'] := {}
GO TOP
do while !eof()
hItem := {=>}
hItem['id'] := VAL( hPost["id"] )
hItem['name'] := ( rtrim( hPost["name"] ) )
hItem['kategorie'] := ( rtrim( hPost["kategorie"] ) )
aadd( hData['array'], hItem )
dbskip()
enddo
hData["recno"] := nRecNo
hData['success'] := 'true'
CLOSE
AP_SetContentType( "application/json" )
?? hb_jsonEncode( hdata, .T. ) // T=pretty
return NIL
Code: Select all
$table.bootstrapTable('append', row );
***
$table.bootstrapTable('updateRow', {
index: first,
row: {
name: putData["name"],
kategorie: $("#kategorieEditInput").val()
}
})
***
$table.bootstrapTable('remove', {
field: 'id',
values: cIdx
})
Best regards,
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
Re: Table | CRUD - create, read, update, and delete
Hello friend,
You can test the sample here:
https://www.modharbour.club/ajaxtablecr ... ud_dbf.prg
Here you can download the source code.
https://www.modharbour.club/ajaxtablecr ... UD_DBF.zip
Best regards,
Otto
You can test the sample here:
https://www.modharbour.club/ajaxtablecr ... ud_dbf.prg
Here you can download the source code.
https://www.modharbour.club/ajaxtablecr ... UD_DBF.zip
Best regards,
Otto
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
********************************************************************