Textbox value set to null when changing tabs - model-view-controller

I am using the javascript tabular feature. I have hidden textboxes in one tab that I am reading values from. When reading values from the same tab the value works perfectly.
But when change the tab the value of textbox resets to null.
How can I get this value so it wont be lost.
Thanks

Related

Jqgrid - How to create a custom add-button that you can supply of parameters

When you create a jqgrid there is a default button on the bottom of the grid that allows you to create new records.
However, when you open the modal, all input fields are empty.
In my situation I need this button, but I also need the exact same thing but with the possibilty of adding a few parameters so some of the fields are already filled in. The parameters would come from the selected row at that moment.
Like when I click a row where the date is set to 01/01/2099 i need the add-modal to open with the date already set to that date.
You can use beforeShowForm or afterShowForm to make any changes in the Add Form during opening. For example you can read the values from currently selected row and fill some fields of the form with new values. To be open Add form on click or double-click on the row you need just call editGridRow inside of onSelectRow/ondblClickRow callback.

Hide ssrs textbox based on another textbox value

I am trying to hide a textbox based on another textbox value in a table. In my ssrs 2013 report, I have a column in a table called EmpExist that returns nothing or text like Emp does not exist. On top of the table I have a textbox called Go To when clicked it will take you to another report. I am trying to hide this textbox based on EmpExist column in the table.
I tried the following, setting the visibility of "Go To":
=IIF(ReportItems!EmpExist.Value = "" OR ReportItems!EmpExist.Value IS NOTHING, False, True)
or this:
=IIF(First(Fields!EmpExist.Value, "dataset1") IS NOTHING OR First(Fields!EmpExist.Value, "dataset1") = "", False, True)
The problem is that the Go To textbox will be either visible or hidden regardless of the EmpExist value. If the EmpExist has any value, "Go To" should be hidden, but it is visible. If it does not have any value or nothing, it should display it but it is visible as well.
Thanks.
I ended up using a parameter to check the value of EmpExist and used the expression above (using the parameter instead of the column name) and seems to be working fine. Not sure why I was not able to do it based on textbox value in SSRS 2013

Lotus notes drop downlist not displaying values

Lotus notes dropdownlist is created with predefined list items.I have updated the lotus notes document using a VB6 program and populated the field.
However when I tried to view the value it shows empty.(though the values are fetched successfully in the vb6 program)
If I'm reading your question correctly, you have a dropdown field on a form, and you specified the allowable values directly in the field properties. (Since you haven't said that you are using any other technique, such as doing a lookup from a config document, this is my default assumption.)
Now your VB6 code is setting a value in the NotesItem that corresponds to the field on your form. You have not said whether or not the value that this code is setting matches one of the choices defined in the field properties on the form. I suspect it doesn't, and I also suspect that you do not have the "Allow values not in list" option checked in the field properties dialog on that form in Domino Designer. If that's true, I believe that will cause the Notes client to display an empty field even though the VB6 code set a value.
The other possibility is that your VB6 code has misspelled the field name, but without seeing your code, a screenshot of the form, and screenshots of the field properties dialog tabs, I can't know for sure.

How to Hide/Show of UI component in oracle adf

I am new to oracle adf in my application one of the field is id and it is sequence generated value Whenever I entered remaining values and click on save then only it has to display with sequence generated value before saving it has to be in hide mode. Can any one help me how the approach is.
set visible property for seq field. like below
visible="#{binding.filedName.inputValue != null}"
by default seq field value is null so it will not display. once u click save button, this field value to be set to next seq value so it will display
Just remove this value from UI and do your number generation for this field in model.
You can set the visible attribute of the field in your page to be based on an expression language such as #{viewScope.showfield}, then add a setPropertyListener to your save button that sets the #{viewScope.showfield} to true.

Xpages - CompositeData - Repeat Control

I have a repeat control, repeatControls = false, rendered = true, using both indexVar and var. Value is an array from a sessionScope variable, so if 4 values, 4 items are shown.
Printing Computed Fields isn't an issue
I added an Edit Box inside repeat and set it to bind data using compositeData.editField1
no Partial refreshes
Then there is a button which has to set the data of all rows of editable fields to a sessionScope variable,
if I just do
sessionScope.put("editField1", compositeData.editField1), I just get the value of the last row. how to add the values of the other rows of edtitable fields ? There are no bindings to Notes views or documents as they aren't needed. Thanks
If you have input fields, you need to bind them. Binding them to a scope is perfectly fine. In the same question Michael was pointing to is the link to a sample with add/remove row logic (just substract the part where it goes back to the field).
Excercise 23 has all you need.

Resources