| Welcome, Guest |
You have to register before you can post on our site.
|
| 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?
|
|
|
| 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;
|
|
|
| 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
|
|
|
| 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...
|
|
|
| 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.
|
|
|
|