| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
Intraweb components missi...
Forum: IntraWeb General Discussion
Last Post: valmeras
07-20-2026, 08:29 PM
» Replies: 0
» Views: 23
|
Image question on tiwjqdb...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
07-17-2026, 05:18 PM
» Replies: 6
» Views: 4,469
|
IW 16.1.9 Invalid propert...
Forum: IntraWeb General Discussion
Last Post: Blanca80
07-17-2026, 08:06 AM
» Replies: 7
» Views: 2,095
|
Bootstrap5
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-17-2026, 03:38 AM
» Replies: 2
» Views: 554
|
CSS file not reloading af...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-17-2026, 03:14 AM
» Replies: 1
» Views: 194
|
Need Help Integrating Mic...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-17-2026, 02:38 AM
» Replies: 1
» Views: 179
|
Projeto Intraweb
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-17-2026, 02:12 AM
» Replies: 1
» Views: 253
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-17-2026, 02:11 AM
» Replies: 7
» Views: 931
|
OpenSSL and concurrent re...
Forum: Indy
Last Post: kbriggs
07-05-2026, 02:41 PM
» Replies: 5
» Views: 549
|
Intraweb + Lazarus
Forum: IntraWeb Dúvidas Gerais
Last Post: vonirpereira
07-03-2026, 06:35 PM
» Replies: 0
» Views: 123
|
|
|
| IW chart JS How to manage rosponsiveness |
|
Posted by: David1 - 04-10-2024, 03:11 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
Hello,
in a bootstrap page template I replaced an IW tag with a script that represent a Google chart object with data.
with the following script:
<script type=''text/javascript''>$(window).resize(function() {'
i can redraw the chart to make it responsive when the window resize.
Is there a way to do the same with TIWChartJS making it responsiveness?
Thank you,
Davide
|
|
|
| Resize problems with IW 15.5.10/15.5.11 |
|
Posted by: JuergenS - 04-06-2024, 12:04 PM - Forum: IntraWeb General Discussion
- Replies (9)
|
 |
Hello,
I have some problems with the latest INTRAWEB versions.
Edition: IntraWeb Ultimate Edition
IntraWeb Version: 15.5.9
32-bit Server on 64-bit Windows
HTTP Server is active on port: 80
HTTPS Server is active on port: 543 (OpenSSL v1.1.1)
In versions 15.5.10/15.5.11, a number of containers (TIWRegion, TIWListbox, TIWMemo etc.) are not displayed in their full size when a form is opened,
even though Align = alClient is set. The objects are only displayed in the correct size after the browser window is resized.
The RAD IDE displays gray sketchy layout information that appears to be generated by the INTRAWEB runtime and not by the RAD IDE.
The layout information largely covers the layout information of the RAD IDE and is therefore perceived as annoying.
How can this be turned off ?
This layout information continues to be displayed even when i return to IW15.5.9.
Best Regards
Juergen
|
|
|
| Cookies with the SameSite=None in Chrome |
|
Posted by: valmeras - 03-27-2024, 06:59 PM - Forum: IntraWeb General Discussion
- Replies (3)
|
 |
I am using C++ Builder 10.2.3 with Intraweb 15.5.9
I am getting the warning message below in Google Chrome:
"Cookies with the SameSite=None; Secure and not Partitioned attributes that operate in cross-site contexts are third-party cookies. In future Chrome versions, reading third-party cookies will be blocked. This behavior protects user data from cross-site tracking."
The problem is that in IWServercontroller->CookieOptions
Secure= true
But even if I set SameSite=ssoStrict or SameSite=ssoLax
I am always getting the same warning!
I can try to set it in the code in IWServercontroller. But I think it needs to be checked
|
|
|
| smmFunctions.pas |
|
Posted by: Mikael Nilsson - 03-26-2024, 10:33 AM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
bug?
Just installed 15.5.10.
Got this error in BitScanLast: [dcc32 Error] smmFunctions.pas(337): E2107 Operand size mismatch
function BitScanLast(aValue: NativeInt): NativeUInt;
asm
{$IFDEF CPU386}
BSR AX, aValue;
{$ELSE} .NOFRAME
BSR RAX, aValue;
{$ENDIF}
end;
|
|
|
| TIWjQDBGrid paging |
|
Posted by: troberts - 03-26-2024, 04:06 AM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
I have a TIWjQDBGrid connected to a dataset with a couple of hundred records in it. It displays fine and the paging works nicely.
I have goMultiSelect on, and I can select multiple records by clicking in their checkboxes.
I can move the active record up and down with the arrow keys. However Page Up and Page Down have no effect.
If I select some records on the first page, move to the second page and then back to the first page, the selections are gone.
I have some questions.
1. How can I make the grid toggle the selection of the current record when the spacebar is pressed?
2. Is it possible to get Page Up/Down to move through the pages?
3. Can the selected records persist across page changes?
Thank you.
One other thing:
In OnAsyncSelectRow I call UpdateSelectedIDs, but even after doing that the SelectedIDs property lags one step behind. After selecting one row, it is blank. After selecting two rows it contains the ID of the first row and so on. Is this intentional?
|
|
|
| Problem with cache and 404 error |
|
Posted by: troberts - 03-25-2024, 01:54 AM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
Hi,
I have an IW application which is sometimes called with a parameter in the URL.
https://mycompany.com/$/start/myparam
The first time I call this it works fine. In the ServerController the BeforeDispatch event is called, then AfterDispatch, then UserSessionBaseCreate,
then ServerControllerBaseNewSession, then the main form is displayed.
But, the second time I call it only the ServerController BeforeDispatch and AfterDispatch events are fired. Nothing else. Then the browser displays a 404 error. If I open a second tab in the browser and clear the cache I can return to the first tab, refresh it and everything is normal.
In the ServerControllerBeforeDispatch event, I am setting aReply.AllowCaching to false. I've also experimented with including the following lines:
// aReply.Headers.Add('Cache-control: no-cache');
// aReply.Headers.Add('Cache-control: no-store');
// aReply.Headers.Add('Pragma: no-cache');
// aReply.Headers.Add('Expires: 0');
None of them make any difference. Subsequent calls to https://mycompany.com/$/start/myparam result in a 404 error. This lasts until either the browser cache is cleared or the IW server is restarted.
Any ideas?
Thanks,
Tim
|
|
|
| IWModalWindow from different Sessions |
|
Posted by: bjoernb - 03-24-2024, 10:52 PM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
Hey everybody,
i need your help.
Problem:
MainForm can load multiple Frames and on opening another one, the old one got deleted. This way it worked Pretty well.
Customer now said they sometimes need to check some Information on Frame B while editing on Frame A, so deleting the Frame is not an Option anymore.
Setting Frames to Invisible didn't do anything at all, so i set the Parent to NULL instead.
The Edit Menu is opened in a ModalWindow.
Problem is, when i opened A first, then B (means A is in background), and then try to open the Edit Menu on Frame B, the ModalWindow is locked behind Frame A, means i can't see it.
i tried to fix it (and failed) by copying the ModalWindow to MainForm.
But when i try to open it from here, it just loads a blank window, no data, no Close button, nothing. This always occurs once there's any Frame loaded and i try to open a ModalWindow in MainForm.
Do you guys have any Idea how to fix this?
Greetings,
Bjoern
|
|
|
|