Author | Topic: XbpBrowse in Html page | |
---|---|---|
Zdenko Bielik | XbpBrowse in Html page on Thu, 13 Nov 2014 07:33:23 +0100 Hi, I just installed Xbase++ v.2 and go through web samples and it looks very intersting and promising. Unfortunately I have no web expreriences, but it looks I can successfully mix prg code with html code with help of CXP. But I can’t find any example, how to integrate interactive XbpBrowse object into html page. I just found any web example paging grid on the jquery tabpage, but it uses js... is this only way for browsing and editing data? I want/need any browse object with capabilities of cell editing. Please, can someone give me any tip, solution or simple short ready-to-use example? With best regards & TIA Zdeno | |
Thomas Braun | Re: XbpBrowse in Html page on Thu, 13 Nov 2014 11:03:30 +0100 Zdenko Bielik wrote: > I just found any web example paging grid on the jquery tabpage, but it uses > js... is this only way for browsing and editing data? Basically, the answer is yes. Almost everything that happens in a web page is either 100% client side, which would have to be coded in javascript, or client/server which goes through a "send request" - "receive response" cycle via http protocol. jquery is using the AJAX logic (Asynchronous JavaScript and XML) to combine client-side and client/server techniques: http://www.w3schools.com/ajax/ajax_intro.asp In the end, everything you can see in the browser is HTML/CSS and javascript, no Xbase++ left at all > Please, can someone give me any tip, solution or simple short ready-to-use > example? "Simple and short" and "editable browse" does not fit together very well, i'm afraid Thomas |