Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
connect css file to IWImage
#1
how can i connect the css file to the IWImage

how the IW will generate the connection between the css file and the image - by name? by id?
Reply
#2
Check our demos, there are several examples of linking to an external CSS file.
Reply
#3
(07-13-2020, 06:27 PM)kudzu Wrote: Check our demos, there are several examples of linking to an external CSS file.
can yo direct me please to the one you mean. i didn't find any.
all with stylesheet

al i want is the image will have :

css style with :

CompCover {
  opacity: 0.5;
}

when the CompCover  is the name of the image,


Attached Files Thumbnail(s)
   
Reply
#4
Download the demos, search for *.css and see which folder its in. That will find it quickly.
Reply
#5
(07-13-2020, 08:59 AM)mazluta Wrote: how can i connect the css file to the IWImage

how the IW will generate the connection between the css file and the image - by name? by id?


Each IntraWeb control has a property named CSS. CSS receives the class name used in any external style, if applicable.

You can create a style for your class in your CSS file and use it in your IWImage control. Example:

< style.css file >
.myimageclass {

}


< in your pascal file >

IWImage.Css := 'myimageclass';


Add the css file to your form using ExtraHeader property of your form:

<link href="/style.css" rel="stylesheet">

and then copy the style.css file to the application's wwwroot folder. That's all.
Reply
#6
thanks. that better.
where can i find full up-to-date documentation?
Reply
#7
https://www.atozed.com/intraweb/docs/
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)