How to edit the text field length in sitefinity campaign create issue form - sitefinity

[enter image description here][1]
As in the screenshot I would like to change the length of input box of message subject , how should I approach , this is the default sitefinity text box when the issue is created.

Sitefinity forms, or like the at /Sitefinity/Content/Forms/Forms?
When you edit the textbox widget there's usually a tabstrip or something at the top for options (limitations?) where you can set the size.

Related

Setting Default Values to Drop Down in Orbeon Form Builder

I have a autocomplete field:
I need to set the default value selected for this dropdown using another control value as shown in:
This control is passed to the form load as shown in:
For example if use cost center is 110 as shown in:
Then the default selected value of the Site lookup dropdown needs to be as shown in:
The tricky part is that your Site-Item field isn't a dropdown but an autocomplete. An autocomplete doesn't know all the possible label/values, but can only find some label/values doing a search by label. So you can't tell an autocomplete "set your value to 110", because it doesn't know what the label corresponding to 110 is.
If you knew the label, you could do this programmatically with an fr-set-label, but here you don't have the label but the value. You can read more about this in the section Setting by value. So, my advice is to use a Dynamic Data Dropdown instead of an Autocomplete field.

Google search input text box can be found using name but not id

I am trying to go to the url "https://www.google.co.in" enter the word "Googling" in the input text box and then click on the search button.
The input text box has id "gs_htif0".
So the statement
driver.findElement(By.id("gs_htif0")).sendKeys("Googling");
should work. But it's not. The statement
driver.findElement(By.name("q")).sendKey("Googling");
is working fine. It fills the search box with the word "Googling".
It seems you tried incorrect id. Please check with :
driver.findElement(By.id("lst-ib")).sendKeys("Googling");

.rdlc report: text on page in two columns

How do I split the text on the page in two columns in .rdlc report. For example Such as in the picture
http://i.stack.imgur.com/5mo1x.gif
You can set Columns and ColumnSpacing properties of your rdlc.
To do this you have to:
display Property windows
click on Body or Report (grey area outside your page), depending on what version you are using

Domino designer display field after click

In form I have button, i want display field "Price" after button "Save" click, it's possible ?
Or can be solution to add to field HTML atribute "readonly".
In your form, enable option "Generate HTML for all fields" (check the image below):
It will generate html for all fields, even for hidden ones.
Add field price to the form and hide id by paragraph hide formulas according to your requirements.
When you have saved your form, add a flag to your document, that turns the hide formula for price field to false, and invoke the command:
#Command( [RefreshHideFormulas] );
It will make your price field visible.

Word: remove page from multipage userform

I want, depending of the previous choice from the user just let some tab's being seen.
Once i am new in VBA, i start showing all the tab's and after the choice from the user, i remove the tab's that i don't want. For that i am using this line of code
MultiPage1.Pages.Remove "name of the tab"
The problem is, if i don't have the same CAPTION and the NAME field of the tab the tab is not remove.
If anyone have a diferent solution for this or another away to remove without have to change the caption for the same name of NAME field i would be thankful.
Thanks
You can give a page of a multi-page control a different name from the caption in the Properties Window. You can access it from the View menu.
I've highlighed the name of the control in yellow and the caption in aqua.
If the captions are unique, you could use a Select Case statement to get the name, based on the caption. Are users actually typing in the caption of the tabs they want, or selecting from check boxes? In either case, the captions would have to be unique, so you could do something like:
Select Case True
Case Check1.Value
MultiPage1.Pages.Remove Pages("kp").Index
Case Check2.Value
MultiPage1.Pages.Remove Pages("jp").Index
End Select
That's a bit rough, but is that the general idea?