| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: MJS@mjs.us
09-11-2026, 09:49 PM
» Replies: 1
» Views: 189
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 155
|
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 172
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 476
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 242
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 642
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 225
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,243
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 359
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 985
|
|
|
| Datatables with Ajax |
|
Posted by: matija - 08-16-2022, 06:00 AM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
I have rawtext (IWLabel.Caption) for my json data.
'{ "data": [ .... ] }'
I want this rawtext include in define of datatables (HTML template).
WebApplication.CallBackResponse.AddJavaScriptToExecuteAsCDATA('$(''#examples'').DataTable( { "ajax": ' + rawtext + ',} );');
How? Recipe?
|
|
|
| TIdHTTP error details |
|
Posted by: Boba TC - 08-16-2022, 01:23 AM - Forum: Indy
- Replies (4)
|
 |
Dear All; when TIdHTTP::Get method throws out an EIdHTTPProtocolException, where do I find details of the error?
For instance:
Code: TIdHTTP *IdHTTP;
AnsiString strURL="https://....";
//...
try{
TMemoryStream *m = new TMemoryStream;
IdHTTP->Get(strURL,m);
m->SaveToFile("tst.txt");
delete m;
}catch(EIdHTTPProtocolException &e){
ShowMessage(e.Message);//shows "HTTP/1.1 400 Bad Request"
}
Thanks in advance. Boba.
|
|
|
| need HTML editor component |
|
Posted by: iwuser - 08-16-2022, 12:35 AM - Forum: IntraWeb General Discussion
- Replies (3)
|
 |
Is there anything built-in into IW, or any external compatible components that can offer rich text HTML editing functionality on IW served pages?
Or has anyone been using any external JS libraries in IW apps with any success, like "editor.js"?
I basically need to serve HTML documents to users from an IW application, in some kind of editor, allowing the users to edit them free-hand and then get the edited HTML back, so it can be saved on the server.
|
|
|
| gSession.Lookup vs gSession.Execute |
|
Posted by: tasnim - 08-15-2022, 07:22 AM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
hi everyone
After checking SessionList, SessionLookup151 in demo some question arises
what is the difference between gSession.Lookup and gSession.Execute
it appear that both achieve the same result
are they different in session lock mechanism?
when should we use each of them?
thanks.
|
|
|
| Issue with TIWBSTabControl since 15.2.61 |
|
Posted by: oystein.jakobsen@sas.no - 08-11-2022, 07:53 PM - Forum: IntraWeb General Discussion
- Replies (3)
|
 |
Since 15.2.61 I get an EReadError exception when executing apps containing TIWBSTabControl components. Rolling back to 15.2.60 fixes the issue.
Happens in D10.4.2. Not in D11.
Error details:
Exception message : Error reading IWBSTabControl1.ActiveTabFont.PxSize: Property PxSize does not exist
Depending on the error condition, it might be possible to restart the application.
Exception class : EReadError
|
|
|
| ISAPI dll with StarDocs hangs on SignUP |
|
Posted by: alex.trejo@tttnet.com.mx - 08-10-2022, 09:56 PM - Forum: IntraWeb General Discussion
- Replies (11)
|
 |
Intraweb 14.2.6 Delphi 10.2.3
Using Stardocs platform to let user navigate through multiformat documents, standalone version works perfect.
When deployed as dll, application hangs starting up.
StarDocs connection details are defined on ServerController.OnCreate:
StarDocs := TgtStarDocsSDK.Create(nil);
StarDocs.ConnectionSettings.ApiServerUri:= 'http://api.gnostice.com/stardocs/v1';
StarDocs.ConnectionSettings.ApiKey:=API_key
StarDocs.ConnectionSettings.ApiSecret:=API_secret;
StarDocs.Preferences.DocPassword.ForceFullPermission:= True;
// Authenticate
StarDocs.Auth.loginApp;
Here is where the dll hangs. No errors, no messages, just hangs. Application pool also stays up and needs to be stopped manually.
Any clues?
Best regards,
Alex
|
|
|
|