Stimulsoft report right-to-left - reporting

I have a website that calculate the cost of something and I use Stimulsoft report to create a simple factor form for my customers and also I use Persian letters, English letters and numbers together in my factor form (for ex: MyProblem) and set the page direction in my website to right-to-left(because of my language is Persian), but when I click on the create report in my website and website pass the parameters to the report and create it, they destroy the arrangement. It seems like that right-to-left doesn't work.
Summery: In the stimulsoft designer we can just design in left-to-light state and when we run it into a website with right-to-left state it destroy the arrangement of elements, numbers, letters and etc.
In my Designer everything is OK
But in the browser with right-to-left attribute, it destroy the arrangement
Thanks.

Right click on the Properties and select Professional item , then in the Text Option -> Right To Left set to true

Please tries to set the direction of your HTML 'div' element as 'ltr' always.

Properties -> text Options -> Right to left set True

Related

Unclear Document regarding AEM form validation

Hi everyone wonder if anyone can provide pictures or the exact steps pertaining to how to locate the "validation expression according to this link https://helpx.adobe.com/experience-manager/6-3/forms/using/adaptive-form-expressions.html#main-pars_header_3
Also while you are here I am wondering if it is possible to use these validation tools to check if the income is greater than the cost. i.e the user have to key in a higher value in the income numeric box as compared to the cost numeric box. If not providing a guide that allows me to do this would be great.
Many thanks in advance!
The validate expression is written using the Code editor of the rule editor. For e.g., I've created an adaptive form with 2 Numeric Boxes (Income and Cost) as shown below.
So, to validate if the value entered in the income is always greater than the cost, then click on the Income field and then click the Edit Rules icon. This will open the rule editor
Once in the rule editor window, click on the Income field on the left rail and then click the Create button.
In the Create Rule window, you can use the Validate event and configure the required condition.
You may also need to write a similar condition on the cost field as well, but in reverse (Cost is less than Income) so that when someone changes the value in the Cost field, it is validated too.
As far as your original question goes, if you switch to the Code Editor, it should give you another editor where you can write Javascript to validate the value. The validation expression from your documentation link goes there (see below).

How do I edit a form in ServiceNow

I've been given an exercise. Add a field to the Tasks table and make sure it is visible on the incident form as a drop down list. So I've added a column to the table. But how do I then get that drop down list on to the incidents form?
Load up an incident record and then right click on the header of the form. Then go to configure and then click form layout. You can also use the form designer. In either situation, just drag the field from the left to the right. In the form designer it's a little bit easier to choose exactly where you want the field to show up.
Pro tip: you can easily get to the incident form by typing "incident.form" into the application navigator filler bar on the left and pressing enter.
If you want to learn more about ServiceNow, I humbly welcome you to check out my best-selling book: "Learning ServiceNow" at http://lsn.sngeek.com/

Adding a blank page to SSRS

I'm creating a report by account that will either print 2 pages duplex (front and back). But sometimes the amount of data will make it overflow to 3 pages. When that happens I need to make sure a 4th page gets generated (blank) so the next account can print on the front of page 1. How can I accomplish this in VS2010? Thanks.
The answer, like most formatting questions, is to use a Rectangle.
Insert a rectangle, place it after your first table and give it a height of 0.125in. In the Rectangle properties, check Add Page Break After.
Now the problem is with your needing to only use the rectangle's page break when it's on page 2.
Since the Page Number built-in field only works in the header or footer, you need some code for the page number. Add code to get the Page Number to the report code (Report Properties -> Code):
Public Function PageNumber() as integer
Return Me.Report.Globals!PageNumber
End Function
Then set the Rectangle's visibility to Show or Hide based on expression and the expression to:
=IIF(Code.PageNumber() = 3, TRUE, FALSE)

Dynamic menu table in inner pages

I want to add dynamic menu table in inner pages based upon the tabs on the home page.
how to do that in joomla,please help me.
It sounds like you are trying to create a split menu where the link you click at the top determines the menu that shows up in a column/below. This is the native behavior for Joomla menus simply by setting the start and end levels in the menu module. Here is a good tutorial -
http://www.theartofjoomla.com/magazine/article/27-more-menu-tricks-the-split-menu-technique.html
Beware:: The split level menu feature in Joomla only works when the split equals TWO levels. If you want to build your site with a single master menu that spans 3 or more levels, this does not work. It looks like the internals of Joomla do not know how to track the parent properly (not really sure) when the menus are generated (probably an overstatement). Level 1:1 works, Level 2:2 works but then when you try to specify a menu starting at level 3, it breaks. In my case, I hacked the menu to check the pathways (breadcrumbs) list and derive what I wanted from it so I could determine the real parent of the items at level 3 (or other). Then I could get the items to generate proper. This was a disappointment in Joomla (v1.7). And then on top of this, you would then have to hack further to ensure that each menu item instance starting at 1 is highlighted proper. Perhaps the menus should be more closely coupled to the breadcrumbs pathway list.

Split page scrolling behaviour in HTML

So I have a page that is split into 2 columns. The left column there are expandable forms that are quite long to ask the user optional product preferences. On the right side of the page there is a much shorter, 'contact details' form.
The contact details form is mandatory while all the left product preferences forms are optional. The behaviour idea is that as the user scrolls down to complete the left column optional forms, the page will only scroll the left column - the contact details forms displayed in the right column stay in place beginning. I'm having trouble implementing this and I haven't found a solution yet or any examples of pages with this split column behaviour online.
Any advice / suggestions?
Thanks!
Depending on how involved your layout is, you can use css fixed positioning so that as the page scrolls down, your right column stays in the same place.
Sample.
You can put the contents of the longer (left) column in a container div, and make that div independently scrollable using the overflow attribute.
Here's a sample.

Resources