xBrowse mod harbour

Post Reply
User avatar
Otto
Posts: 6413
Joined: Fri Oct 07, 2005 7:07 pm
Has thanked: 27 times
Been thanked: 2 times
Contact:

xBrowse mod harbour

Post by Otto »

Hello friends,

For learning, I made a small project with mod harbour and bootstrap table.

I would like to call "xBrowse" in mod harbour as easily as with Fivewin.

Here are the first steps.
Best regards,
Otto

Fivewin
Image

mod harbour
Image

Build in search
Image
toggle
Image


Image



Image
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
https://www.facebook.com/groups/modharbour.club
********************************************************************
User avatar
Otto
Posts: 6413
Joined: Fri Oct 07, 2005 7:07 pm
Has thanked: 27 times
Been thanked: 2 times
Contact:

Re: xBrowse mod harbour

Post by Otto »

I changed the access to DBF and some options in bs-table.

data-search="true"
data-pagination="true"
data-height="600"
data-page-size="25"
data-toggle="table"


Image

Image
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
https://www.facebook.com/groups/modharbour.club
********************************************************************
User avatar
Otto
Posts: 6413
Joined: Fri Oct 07, 2005 7:07 pm
Has thanked: 27 times
Been thanked: 2 times
Contact:

Re: xBrowse mod harbour

Post by Otto »

prevent unnecessary re-rendering


change during first rendering to none

Code: Select all | Expand


cHtml += '<script>'
cHtml += 'document.getElementById("table").style.display = "none";'
cHtml += '</script>'
 



document.ready change to show rendered table

Code: Select all | Expand


$("document").ready(function(){
document.getElementById("table").style.display = "block";
$('#table').bootstrapTable( 'resetView' , {height: 600} );
});

 




Image
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
https://www.facebook.com/groups/modharbour.club
********************************************************************
Post Reply