Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 82,458
» Latest member: indochinatravel
» Forum threads: 2,408
» Forum posts: 11,315

Full Statistics

Online Users
There are currently 723 online users.
» 4 Member(s) | 715 Guest(s)
Applebot, Bing, DuckDuckGo, Google, indochinatravel, mj77pkco, socolivein3, tr88betvip

Latest Threads
IW 16.2.0 Missing librari...
Forum: IntraWeb General Discussion
Last Post: Gregory_Twedt
06-24-2026, 04:40 AM
» Replies: 5
» Views: 639
VCL conversion
Forum: Delphi General Discussion
Last Post: tobenschain
06-20-2026, 05:00 AM
» Replies: 0
» Views: 81
TIWjQDBGrid changing UI
Forum: IntraWeb General Discussion
Last Post: BoostedCruiser
06-08-2026, 02:02 AM
» Replies: 36
» Views: 70,390
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: Fabrizio Conti
06-04-2026, 09:14 AM
» Replies: 3
» Views: 477
Access Violation When Val...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
06-03-2026, 08:47 AM
» Replies: 2
» Views: 519
Bootstrap5
Forum: IntraWeb General Discussion
Last Post: geraldtatum
06-02-2026, 06:24 AM
» Replies: 1
» Views: 420
weakpackageunit contains ...
Forum: IntraWeb General Discussion
Last Post: rlebeau
05-26-2026, 04:56 PM
» Replies: 4
» Views: 546
Custom 404 handler
Forum: IntraWeb General Discussion
Last Post: CfawesDwale
05-21-2026, 08:02 AM
» Replies: 0
» Views: 258
PopUp Menu
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
05-13-2026, 04:35 AM
» Replies: 4
» Views: 8,211
Image question on tiwjqdb...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
05-13-2026, 03:32 AM
» Replies: 3
» Views: 4,128

 
  Span in IW Bootstrap
Posted by: LorenSzendre - 09-23-2018, 11:42 PM - Forum: IntraWeb General Discussion - Replies (3)

Does anyone know how to get a span in IW Bootstrap?

I added a TIWBSRegion and thought I could set the TagType to span, but it only gave me the options for div, headers and p.

So I tried TIWBSText -- and it started out well -- I could set the Tag to span. But then I found that this component cannot act as a container.

There is no TIWBSSpan component.

What is the solution? How do I put a container component on my page that has the tag of span?

Print this item

  CSS Grid
Posted by: LorenSzendre - 09-23-2018, 09:28 AM - Forum: IntraWeb 17 - Replies (5)

Will IW 17 have built-in support for CSS Grid?

Print this item

  IntraWeb 15.0.13 is available
Posted by: Alexandre Machado - 09-23-2018, 03:32 AM - Forum: IntraWeb General Discussion - No Replies

This version fixes a zlib error ("Content Encoding Error") which affects Delphi/RAD Studio XE8 and 10 Seattle only

If you are using one of these versions, please update.

https://www.atozed.com/2018/09/15-0-13/

Enjoy!

Print this item

  how to call js function from my customAjaxEvent
Posted by: morhous - 09-21-2018, 06:37 AM - Forum: IntraWeb General Discussion - Replies (2)

Code:
// this is my custom ajax event
procedure TdashboardForm.alertChecker(EventParams: TStringList);
var par:Variant;
   today:TDate;
begin
par:=VarArrayOf([
EventParams.Values['noticeID'],
UserSession.UserID,
UserSession.UserName
]);

with UserSession do
begin
//p_reg_sel_NewNotice '201805170000001','9/21/2018'
//p_reg_upd_NoticeRead 201809210000005,201805170000001,'munkhdelger'
 if AdoTool.RunProcedure('p_reg_upd_NoticeRead',par) = fmResult then
 begin
   today:=now;
   par := VarArrayOf([
   UserSession.UserID,
   DateToStr(today)
   ]);
   AdoTool.RunProcedure('p_reg_sel_NewNotice',par);
   AlertHolder.Text := ExportDataSetToJson(AdoTool.DataResult,0);
//How to call my callme(); in js from here tjhi


   WebApplication.ShowNotification('Амжилттай');
 end
 else
 begin
   WebApplication.ShowNotification('Амжилтгүй');
 end;
end;

Print this item

  Ajax Example Guide
Posted by: morhous - 09-21-2018, 03:33 AM - Forum: IntraWeb General Discussion - Replies (1)

how to use ajax on intraweb can anyone show me example 

thank you for your attention

Print this item

  Splitter problem
Posted by: JuergenS - 09-20-2018, 04:58 PM - Forum: IntraWeb General Discussion - Replies (1)

Hi,

I have a simple form with two panels.
One panel is empty and aligned left with the splitter enabled.
The other panel contains a TIWURLWindow component and is aligned to the entire client;
As soon as i align the TIWURLWindow component to the entire client (panel), the splitter doesn't work as expected anymore.

The DELPHI project is included.
I would need a solution for this problem please.

Best Regards
JuergenS



Attached Files
.zip   Splitter.zip (Size: 5.04 KB / Downloads: 3)
Print this item

  Splitter
Posted by: JuergenS - 09-20-2018, 02:05 PM - Forum: IntraWeb General Discussion - No Replies

Hi,

i would like to modify the color and the width of the splitter,
which can be activated in the TIWRegion class, but i don't know how to do that.
Any help would be appreciated.

Thanks
JuergenS

Print this item

  CustomLockerAnimationFile - SVG animated file.
Posted by: rogeriopett - 09-19-2018, 06:19 PM - Forum: IntraWeb General Discussion - No Replies

Hi,

Is it possible to use an animated SVG file as a CustomLockerAnimationFile?
In my tests, it doesn't work... only with .GIF.

Print this item

  Buttons Will Not Click in Bootstrap
Posted by: LorenSzendre - 09-19-2018, 06:02 PM - Forum: IntraWeb General Discussion - Replies (6)

In my big app that I recently converted from IW 14 to 15, the Login button on my main page (using templates) stopped working altogether.

Now when I create a new page based on the new bootstrap (looks amazingly beautiful, btw) -- the TIWBSButtons on the form will not hook up to my click event. For TIWBSButton, there is no OnClick, just an AsyncClick (which I can't debug to and which does not work).

I tried putting on a regular TIWButton on the outer div that is set to be my body Bootstrap container -- and it won't click either.

In short -- all my clicks are not clicking.

Here is what I pull out of the Page Source:

<button class="btn btn-lg btn-success btn-block" id="BL" type="button">Login</button>

I tried setting it to various button types. I put it on forms and not on forms. No matter what I do -- clicking is not connecting to my Delphi events.

What am I missing?

Loren

PS: Here is the Page Source from a simple test app where it works:

<button class="btn btn-primary" id="BK" type="button">Klicken Sie mich!</button>

It's the same, so it must be in the jQuery suppression needed by the IW Bootstrap components...

Print this item

  Intraweb Tab order problem
Posted by: msgopala - 09-19-2018, 02:04 PM - Forum: IntraWeb General Discussion - Replies (1)

Seattle10
Intraweb 14.2.5
FastReports 5.0
TMS Intraweb PRO Components
Raize 6.2.1

I have several Regions, subregions, edits and buttons on a single form. The tab order messes up everytime. I tried using Gexperts but that did not work as 

Main Region
-Reg 1
 --edit 1 
 --edit2
 -- subregion1
     --- edit3
     --- edit4   
-Reg2
 - edit5
 - edit6
-Reg3
 - subreg2
   -- edit7
so on......

Thank you for your help in advance.

Print this item